diff --git a/vlib/gg/gg.v b/vlib/gg/gg.v index 37cbedade3..77fa57559c 100644 --- a/vlib/gg/gg.v +++ b/vlib/gg/gg.v @@ -310,13 +310,13 @@ pub fn (ctx &Context) draw_circle_line(x f32, y f32, r int, segments int, c gx.C pub fn (ctx &Context) draw_circle(x f32, y f32, r f32, c gx.Color) { if ctx.scale == 1 { - ctx.draw_circle_with_segments(x,y,r,10, c) - } - else { - ctx.draw_circle_with_segments(x*f32(ctx.scale),y*f32(ctx.scale),r*ctx.scale,10, c) - + ctx.draw_circle_with_segments(x, y, r, 10, c) + } else { + ctx.draw_circle_with_segments(x * f32(ctx.scale), y * f32(ctx.scale), r * ctx.scale, + 10, c) } } + pub fn (ctx &Context) draw_circle_with_segments(x f32, y f32, r f32, segments int, c gx.Color) { if c.a != 255 { sgl.load_pipeline(ctx.timage_pip)