Draws a circle outline with optional stroke thickness.
circle(cx, cy, radius, color, thickness: 1)
cx, cy: Center coordinatesradius: Circle radiuscolor: Color allocated via image.colorthickness: Optional stroke thicknessimg = GD::Image.new(300,300)
red = img.color(255,0,0)
img.circle(150,150,60,red, thickness: 3)
img.save("circle.png")
Implemented natively in ruby-libgd using gdImageArc for stroke thickness support.