# File lib/gd2/canvas.rb, line 368 def ellipse(cx, cy, width, height, filled = false) (filled ? FilledEllipse : Ellipse).new(point(cx, cy), width, height). draw(@image, filled ? fill_pixel : line_pixel) end