示例#1
0
 public void DrawArc(
     int x,
     int y,
     int width,
     int height,
     int startAngle,
     int sweepAngle,
     [LuaColorParam] object line = null)
 {
     luaPictureBox.DrawArc(x, y, width, height, startAngle, sweepAngle, _th.SafeParseColor(line));
 }
 public void DrawArc(int x, int y, int width, int height, int startAngle, int sweepAngle, Color?line = null)
 {
     luaPictureBox.DrawArc(x, y, width, height, startAngle, sweepAngle, line);
 }