Exemplo n.º 1
0
        // ******************************************
        // CIRCLE

        public static void DrawCircle(this IGUIContext ctx, Pen pen, float cx, float cy, float radius, float scale = 1)
        {
            ctx.DrawEllipse(pen, cx, cy, radius, radius, scale);
        }