class GD2::Canvas::FilledEllipse
Public Instance Methods
draw(image, mode)
click to toggle source
# File lib/gd2/canvas.rb, line 160 def draw(image, mode) ::GD2::GD2FFI.send(:gdImageFilledEllipse, image.image_ptr, @center.x.to_i, @center.y.to_i, @width.to_i, @height.to_i, mode.to_i) end