IrrlichtNETCP.Quaternion.From C# (CSharp) Method

From() public static method

public static From ( float x, float y, float z, float w ) : Quaternion
x float
y float
z float
w float
return Quaternion
        public static Quaternion From(float x, float y, float z, float w)
        {
            return new Quaternion(x, y, z, w);
        }