* fix docs paths for website Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix docs paths for website Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> --------- Signed-off-by: Jess Frazelle <github@jessfraz.com>
67 KiB
67 KiB
title, excerpt, layout
title | excerpt | layout |
---|---|---|
segEndX | Compute the ending point of the provided line segment along the 'x' axis. | manual |
Compute the ending point of the provided line segment along the 'x' axis.
segEndX(tag: TagIdentifier) -> number
Arguments
Name | Type | Description | Required |
---|---|---|---|
tag |
TagIdentifier |
Yes |
Returns
number
Examples
const exampleSketch = startSketchOn('XZ')
|> startProfileAt([0, 0], %)
|> line([20, 0], %, $thing)
|> line([0, 5], %)
|> line([segEndX(thing), 0], %)
|> line([-20, 10], %)
|> close(%)
const example = extrude(5, exampleSketch)