Reference
Circle
The circle
function creates a circle.
c = circle()
show(c)
By default, the circle is centered around (0, 0)
and the radius is 100
.
You can customize the center by specifying the parameters x
and y
and the radius is customized by specifying the parameter r
.
c = circle(x=100, y=50, r=50)
show(c)