Ejemplo n.º 1
0
 public static void Rotate(this IDrawingTransform _, double radians, Point?center = null)
 {
     _.Rotate(radians, center != null ? center.Value.X : (double?)null, center != null ? center.Value.Y : (double?)null);
 }
Ejemplo n.º 2
0
 public void Rotate(double radians, double?centerX = null, double?centerY = null)
 {
     _transform.Rotate(radians, centerX, centerY);
 }