NFrame.NFVector3.X C# (CSharp) Method

X() public method

public X ( ) : float
return float
        public float X()
        {
            return this.x;
        }
        public float Y()

Usage Example

Example #1
0
        static public NFMsg.Vector3 NFToPB(NFVector3 value)
        {
            NFMsg.Vector3 vector = new NFMsg.Vector3();
            vector.x = value.X();
            vector.y = value.Y();
            vector.z = value.Z();

            return(vector);
        }
All Usage Examples Of NFrame.NFVector3::X