CSG.Vector4D.Vector4D C# (CSharp) Method

Vector4D() public method

public Vector4D ( float x, float y, float z, float w ) : System.Collections
x float
y float
z float
w float
return System.Collections
        public Vector4D(float x, float y, float z, float w)
        {
            X = x;
            Y = y;
            Z = z;
            W = w;
        }

Same methods

Vector4D::Vector4D ( Vector4D src ) : System.Collections
Vector4D::Vector4D ( float elements ) : System.Collections