public void AddEllipse(int x, int y, int width, int height) { Changed(); GdiPath.AddEllipse(x, y, width, height); }
public void AddEllipse(float x, float y, float width, float height) { Changed(); GdiPath.AddEllipse(x, y, width, height); }
public void AddEllipse(RectangleF rectF) { Changed(); GdiPath.AddEllipse(rectF); }