NFrame.NFVector3.SetY C# (CSharp) Method

SetY() public method

public SetY ( float y ) : void
y float
return void
        public void SetY(float y)
        {
            this.y = y;
        }
        public void SetZ(float z)

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