Files
modeling-app/docs/kcl/getOppositeEdge.md
Adam Chalmers 0c478680cb KCL: No 'let' or 'const' required when declaring vars (#4063)
Previously variable declaration required a keyword, e.g.

```kcl
let x = 4
const x = 4
var x = 4
```

These were all valid, and did the exact same thing. As of this PR, they're all still valid, but the KCL formatter will change them all to just:

```kcl
x = 4
```

which is the new preferred way to declare a constant. 

But the formatter will remove the var/let/const keywords.

Closes https://github.com/KittyCAD/modeling-app/issues/3985
2024-10-02 14:19:40 -05:00

94 KiB

title, excerpt, layout
title excerpt layout
getOppositeEdge Get the opposite edge to the edge given. manual

Get the opposite edge to the edge given.

getOppositeEdge(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: [getOppositeEdge(referenceEdge)]
     }, %)

Rendered example of getOppositeEdge 0