Vector3D.Vector3D C# (CSharp) Method

Vector3D() public method

public Vector3D ( double x, double y ) : System
x double
y double
return System
    public Vector3D(double x, double y)
    {
        this.x = x;
        this.y = y;
        this.z = 0f;
    }

Same methods

Vector3D::Vector3D ( Vector3 v ) : System
Vector3D::Vector3D ( double x, double y, double z ) : System