Ejemplo n.º 1
0
 public void SetClip(Rectangle2 rectangle)
 {
     g.SetClip(rectangle.Scale(s));
 }
Ejemplo n.º 2
0
 public void DrawArc(Pen2 pen, Rectangle2 rectangle, float startAngle, float sweepAngle)
 {
     g.DrawArc(pen.Scale(s), rectangle.Scale(s), startAngle, sweepAngle);
 }
Ejemplo n.º 3
0
 public void DrawString(string str, Font2 font, Brush2 brush, Rectangle2 rectangle)
 {
     g.DrawString(str, font.Scale(s), brush, rectangle.Scale(s));
 }