From 4e1decfa213abba312cd8933eb112dc4d92305ec Mon Sep 17 00:00:00 2001 From: zeromus Date: Thu, 15 Jun 2017 15:01:50 -0500 Subject: [PATCH] add LuaCanvas DrawArc missing from last luacanvas PR merge --- BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs index 8319f7b25b..6336b17a9d 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs @@ -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,