kcl

arcTo

Draw a 3 point arc.

The arc is constructed such that the start point is the current position of the sketch and two more points defined as the end and interior point. The interior point is placed between the start point and end point. The radius of the arc will be controlled by how far the interior point is placed from the start and end.

arcTo(data: ArcToData, sketch: Sketch, tag?: TagDeclarator) -> Sketch

Arguments

NameTypeDescriptionRequired
dataArcToDataData to draw a three point arc (arcTo).Yes
sketchSketchA sketch is a collection of paths.Yes
tagTagDeclaratorNo

Returns

Sketch - A sketch is a collection of paths.

Examples

exampleSketch = startSketchOn('XZ')
  |> startProfileAt([0, 0], %)
  |> arcTo({ end = [10, 0], interior = [5, 5] }, %)
  |> close(%)
example = extrude(10, exampleSketch)

Rendered example of arcTo 0