Files
modeling-app/docs/kcl/getNextAdjacentEdge.md
Nick Cameron 66f6b741c4 Support = in record initialisation (#4519)
Signed-off-by: Nick Cameron <nrc@ncameron.org>
2024-11-24 20:21:55 +00:00

84 KiB

title, excerpt, layout
title excerpt layout
getNextAdjacentEdge Get the next adjacent edge to the edge given. manual

Get the next adjacent edge to the edge given.

getNextAdjacentEdge(tag: TagIdentifier) -> Uuid

Arguments

Name Type Description Required
tag TagIdentifier Yes

Returns

Uuid

Examples

exampleSketch = startSketchOn('XZ')
  |> startProfileAt([0, 0], %)
  |> line([10, 0], %)
  |> angledLine({ angle = 60, length = 10 }, %)
  |> angledLine({ angle = 120, length = 10 }, %)
  |> line([-10, 0], %)
  |> angledLine({ angle = 240, length = 10 }, %, $referenceEdge)
  |> close(%)

example = extrude(5, exampleSketch)
  |> fillet({
       radius = 3,
       tags = [getNextAdjacentEdge(referenceEdge)]
     }, %)

Rendered example of getNextAdjacentEdge 0