IrrlichtNETCP.Quaternion.From C# (CSharp) Метод

From() публичный статический Метод

public static From ( float x, float y, float z, float w ) : Quaternion
x float
y float
z float
w float
Результат Quaternion
        public static Quaternion From(float x, float y, float z, float w)
        {
            return new Quaternion(x, y, z, w);
        }