AriDEVParser.Util.Vector4.Vector4 C# (CSharp) 메소드

Vector4() 공개 메소드

public Vector4 ( float x, float y, float z, float o ) : System.Runtime.InteropServices
x float
y float
z float
o float
리턴 System.Runtime.InteropServices
        public Vector4(float x, float y, float z, float o)
        {
            X = x;
            Y = y;
            Z = z;
            O = o;
        }