add LuaCanvas DrawArc missing from last luacanvas PR merge
This commit is contained in:
parent
cfb09b6b5d
commit
4e1decfa21
|
@ -283,6 +283,16 @@ namespace BizHawk.Client.EmuHawk
|
|||
DrawLine(x, y + size, x, y - size, color);
|
||||
}
|
||||
|
||||
[LuaMethodAttributes(
|
||||
"drawArc",
|
||||
"draws a Arc shape at the given coordinates and the given width and height"
|
||||
)]
|
||||
public void DrawArc(int x, int y, int width, int height, int startangle, int sweepangle, Color? line = null)
|
||||
{
|
||||
var pen = new Pen(line.HasValue ? line.Value : Color.Black);
|
||||
_graphics.DrawArc(pen, x, y, width, height, startangle, sweepangle);
|
||||
}
|
||||
|
||||
[LuaMethodAttributes("drawPie", "draws a Pie shape at the given coordinates and the given width and height")]
|
||||
public void DrawPie(
|
||||
int x,
|
||||
|
|
Loading…
Reference in New Issue