BEPUutilities.Quaternion.Transform C# (CSharp) 메소드

Transform() 공개 정적인 메소드

Transforms the vector using a quaternion.
public static Transform ( Vector3 v, rotation ) : Vector3
v Vector3 Vector to transform.
rotation Rotation to apply to the vector.
리턴 Vector3
        public static Vector3 Transform(Vector3 v, Quaternion rotation)
        {
            Vector3 toReturn;
            Transform(ref v, ref rotation, out toReturn);
            return toReturn;
        }

Same methods

Quaternion::Transform ( Vector3 &v, &rotation, Vector3 &result ) : void