AriDEVParser.Util.Vector3.Vector3 C# (CSharp) Method

Vector3() public method

public Vector3 ( float x, float y, float z ) : System.Runtime.InteropServices
x float
y float
z float
return System.Runtime.InteropServices
        public Vector3(float x, float y, float z)
        {
            X = x;
            Y = y;
            Z = z;
        }