Create a circular Sketch on a given plane.
Radius of the circle.
Plane name / origin to sketch on (defaults to XY at origin).
A closed circular Sketch.
const circle = sketchCircle(10, { plane: "XZ", origin: 5 });const cylinder = circle.extrude(20); Copy
const circle = sketchCircle(10, { plane: "XZ", origin: 5 });const cylinder = circle.extrude(20);
Create a circular Sketch on a given plane.