FC3Editor.Nomad.Vec2.Rotate90CW C# (CSharp) Méthode

Rotate90CW() public méthode

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