NFrame.NFVector3.SetX C# (CSharp) Method

SetX() public method

public SetX ( float x ) : void
x float
return void
        public void SetX(float x)
        {
            this.x = x;
        }
        public void SetY(float y)

Usage Example

Example #1
0
        public static NFVector3 sub(NFVector3 va, NFVector3 vb)
        {
            NFVector3 vector = new NFVector3();

            vector.SetX(va.X() - vb.X());
            vector.SetY(va.Y() - vb.Y());
            vector.SetZ(va.Z() - vb.Z());
            return(vector);
        }
All Usage Examples Of NFrame.NFVector3::SetX