// Ellipse draws an ellipse at (x,y) with dimensions (w,h) func Ellipse(x, y, w, h float64, style ...string) { C.Ellipse(C.VGfloat(x), C.VGfloat(y), C.VGfloat(w), C.VGfloat(h)) }
// Ellipse draws an ellipse at (x,y) with dimensions (w,h) func Ellipse(x, y, w, h VGfloat) { C.Ellipse(C.VGfloat(x), C.VGfloat(y), C.VGfloat(w), C.VGfloat(h)) }