DEBSOURCES
Skip Quicknav
sources / ruby-cairo / 1.17.13-1 / lib / cairo / context / circle.rb
123456789
module Cairo class Context module Circle def circle(center_x, center_y, radius) arc(center_x, center_y, radius, 0, 2 * Math::PI) end end end end