Ejemplo n.º 1
0
 internal CoordPoint GetRotated(float angle) {
     CoordPoint res = new CoordPoint(X, Y);
     res.Rotate(angle);
     return res;
 }