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

Rotate90CCW() public method

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