NFrame.NFVector3.Z C# (CSharp) Method

Z() public method

public Z ( ) : float
return float
        public float Z()
        {
            return this.z;
        }
        public void SetX(float x)

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