Length() 공개 메소드

public Length ( ) : float
리턴 float
예제 #1
0
        public static float Distance(NFVector3 va, NFVector3 vb)
        {
            NFVector3 vector = NFVector3.sub(va, vb);

            return(vector.Length());
        }