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);
        }