예제 #1
0
파일: MapBitmap.cs 프로젝트: jbirkel/MapRL
 public Point[] FillEllipse(Selection sel)
 {
     return drawShape(sel, (g, s) => {
     g.FillEllipse(new SolidBrush(CR_FORE), sel.GetTrimRect());
     g.DrawEllipse(new Pen       (CR_FORE), sel.GetTrimRect());
      });
 }
예제 #2
0
파일: MapBitmap.cs 프로젝트: jbirkel/MapRL
 public Point[] DrawRect(Selection sel)
 {
     return drawShape(sel, (g, s) => g.DrawRectangle(new Pen(CR_FORE), sel.GetTrimRect()));
 }