fCraft.Vector3i.Vector3i C# (CSharp) Method

Vector3i() public method

public Vector3i ( Vector3f other ) : System
other Vector3f
return System
        public Vector3i(Vector3f other)
        {
            x = (int)other.x;
            z = (int)other.y;
            y = (int)other.h;
        }

Same methods

Vector3i::Vector3i ( Vector3i other ) : System
Vector3i::Vector3i ( int _x, int _y, int _h ) : System