kcl

arcTo

Draw a three 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
sketchSketchYes
tagTagDeclaratorNo

Returns

Sketch

Examples

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

Rendered example of arcTo 0