// Circle draws a circle centered at (x,y), with radius r func Circle(x, y, r float64, style ...string) { C.Circle(C.VGfloat(x), C.VGfloat(y), C.VGfloat(r)) }
// Circle draws a circle centered at (x,y), with radius r func Circle(x, y, r VGfloat) { C.Circle(C.VGfloat(x), C.VGfloat(y), C.VGfloat(r)) }