예제 #1
0
 public static void FillShape(CircleF cir, Graphics g, Brush b)
 {
     using (GraphicsPath path = cir.GetShape(60, PathPointType.Bezier))
         g.FillPath(b, path);
 }
예제 #2
0
 public static void FillShape(CircleF cir, Graphics g, Brush b)
 {
     using (GraphicsPath path = cir.GetShape(60, PathPointType.Bezier))
         g.FillPath(b, path);
 }
예제 #3
0
 public static void DrawShape(CircleF cir, Graphics g, Pen p)
 {
     using (GraphicsPath path = cir.GetShape(30, PathPointType.Line))
         g.DrawPath(p, path);
 }
예제 #4
0
 public static void DrawShape(CircleF cir, Graphics g, Pen p)
 {
     using (GraphicsPath path = cir.GetShape(30, PathPointType.Line))
         g.DrawPath(p, path);
 }