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()); }); }
public Point[] DrawRect(Selection sel) { return drawShape(sel, (g, s) => g.DrawRectangle(new Pen(CR_FORE), sel.GetTrimRect())); }