NFrame.NFVector3.Y C# (CSharp) Method

Y() public method

public Y ( ) : float
return float
        public float Y()
        {
            return this.y;

        }
        public float Z()

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::Y