Vector4.magnitude 长度
var magnitude : float
Description描述
Returns the length of this vector (Read Only).
返回这个向量的长度(只读)。
The length of the vector is square root of (x*x+y*y+z*z+w*w).
向量的长度是(x*x+y*y+z*z+w*w)的平方根。
If you only need to compare magnitudes of some vectors, you can compare squared magnitudes of them using sqrMagnitude (computing squared magnitudes is faster).
如果你只是需要比较一些向量的长度,你可以比较它们长度的平方,使用sqrMagnitude(计算平方更快)。
参考:sqrMagnitude。
最后修改:2011年1月9日 Sunday 15:53