FC3Editor.Nomad.Vec2.Rotate90CCW C# (CSharp) 메소드

Rotate90CCW() 공개 메소드

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