Previous: ``` startProfileAt([x, y], %) startProfileAt([x, y], sketch001) ``` New: ``` startProfile(%, at = [x, y]) startProfile(sketch001, at = [x, y]) ```
13 lines
319 B
Plaintext
13 lines
319 B
Plaintext
sketch001 = startSketchOn(XZ)
|
|
profile001 = startProfile(sketch001, at = [100.0, 0.0])
|
|
|> line(end = [0.0, 120.0])
|
|
|> arc(
|
|
interiorAbsolute = [300.0, 100.0],
|
|
endAbsolute = [200.00, -100.00],
|
|
tag = $seg01,
|
|
)
|
|
|> angledLine(
|
|
angle = tangentToEnd(seg01),
|
|
length = 100.00
|
|
)
|