✏️
ICN
  • Basics
    • What is icn?
    • How can i use icn?
  • Commands
    • Weight
    • Colour
    • Lines
    • Dot
    • Square
    • Cutcircle
    • Ellipse
Powered by GitBook
On this page
Edit on GitHub
  1. Commands

Cutcircle

PreviousSquareNextEllipse

Last updated 2 months ago

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).

Screenshot 2024-07-04 at 19 51 46
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.

Screenshot 2024-07-04 at 19 52 21
Screenshot 2024-07-04 at 19 52 37
Screenshot 2024-07-04 at 19 52 50
Screenshot 2024-07-04 at 19 53 58