Vector3D.Vector3D C# (CSharp) Method

Vector3D() public method

public Vector3D ( Vector3 v ) : System
v Vector3
return System
    public Vector3D(Vector3 v)
    {
        this.x = v.x;
        this.y = v.y;
        this.z = v.z;
    }

Same methods

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