예제 #1
0
        public Vector2d Rotated(long cos, long sin)
        {
            Vector2d vec = this;

            vec.Rotate(cos, sin);
            return(vec);
        }
예제 #2
0
 public void Rotate(long cos, long sin)
 {
     _rotation.Rotate(cos, sin);
     RotationChanged = true;
 }