Ejemplo n.º 1
0
 public static void FillShape(Polygon ply, Graphics g, Brush b)
 {
     using (GraphicsPath path = ply.GetShape())
         g.FillPath(b, path);
 }
Ejemplo n.º 2
0
 public static void FillShape(Polygon ply, Graphics g, Brush b)
 {
     using (GraphicsPath path = ply.GetShape())
         g.FillPath(b, path);
 }
Ejemplo n.º 3
0
 public static void DrawShape(Polygon ply, Graphics g, Pen p)
 {
     using (GraphicsPath path = ply.GetShape())
         g.DrawPath(p, path);
 }
Ejemplo n.º 4
0
 public static void DrawShape(Polygon ply, Graphics g, Pen p)
 {
     using (GraphicsPath path = ply.GetShape())
         g.DrawPath(p, path);
 }