Ejemplo n.º 1
0
        public void  FillOval(int ff_xmin, int ff_ymin, int ff_xmax, int ff_ymax)
        {
            GraphicsPathFP path = GraphicsPathFP.CreateOval(ff_xmin, ff_ymin, ff_xmax, ff_ymax);

            path.AddClose();
            FillPath(path);
        }
Ejemplo n.º 2
0
 public void  DrawOval(int ff_xmin, int ff_ymin, int ff_xmax, int ff_ymax)
 {
     DrawPath(GraphicsPathFP.CreateOval(ff_xmin, ff_ymin, ff_xmax, ff_ymax));
 }