kcl

segLen

Compute the length of the provided line segment.

segLen(tag: TagIdentifier): number

Arguments

NameTypeDescriptionRequired
tagTagIdentifierThe line segment being queried by its tagYes

Returns

number

Examples

exampleSketch = startSketchOn("XZ")
  |> startProfileAt([0, 0], %)
  |> angledLine({ angle = 60, length = 10 }, %, $thing)
  |> tangentialArc({ offset = -120, radius = 5 }, %)
  |> angledLine({ angle = -60, length = segLen(thing) }, %)
  |> close()

example = extrude(exampleSketch, length = 5)

Rendered example of segLen 0