예제 #1
0
파일: GraphicsFP.cs 프로젝트: nakijun/adasg
        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);
        }
예제 #2
0
파일: GraphicsFP.cs 프로젝트: nakijun/adasg
 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));
 }