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