module Magick::RVG::ShapeConstructors

def circle(r, cx = 0, cy = 0)

Draws a circle whose center is [cx, cy] and radius is +r+.
def circle(r, cx = 0, cy = 0)
  circle = Circle.new(r, cx, cy)
  @content << circle
  circle
end