示例#1
0
double Point3D::Norm() const
{
	return sqrt(SquareNorm());
}
示例#2
0
float Vector3::Norm() const {
	return sqrt(SquareNorm());
}