Cutcircle
Creates a circle at the specified (x, y)
position, sets the radius of the circle to "size," rotates the circle to the specified "angle" in degrees, and fills the outline of the circle with "filled" degrees of the line.
cutcircle x y size angle filled
Parameters:
x
: The x-coordinate of the circle's center.y
: The y-coordinate of the circle's center.size
: The radius of the circle.angle
: The rotation angle of the circle (0 to 36).filled
: The degree of the outline to be filled (0 to 360).
Examples:
cutcircle 0 0 10 0 180
Creates an outline of a full circle with a radius of 10 at position (0, 0)
.
cutcircle 0 0 10 0 90
Creates an outline of a half circle with a radius of 10 at position (0, 0)
, facing upwards.
cutcircle 0 0 10 9 90
Creates an outline of a half circle with a radius of 10 at position (0, 0)
, facing right.
cutcircle 0 0 10 18 90
Creates an outline of a half circle with a radius of 10 at position (0, 0)
, facing downwards.
cutcircle 0 0 5 4.5 90
Creates a half circle facing north east with a radius of 5.
Last updated