gg: vfmt gg.v
parent
26785668c0
commit
ad1510afa0
10
vlib/gg/gg.v
10
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)
|
||||
|
|
Loading…
Reference in New Issue