FC3Editor.Nomad.Vec2.Rotate90CW C# (CSharp) Method

Rotate90CW() public method

public Rotate90CW ( ) : void
return void
        public void Rotate90CW()
        {
            float x = this.X;
            this.X = this.Y;
            this.Y = -x;
        }