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