* 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>
64 KiB
64 KiB
title, excerpt, layout
| title | excerpt | layout |
|---|---|---|
| segEndY | Compute the ending point of the provided line segment along the 'y' axis. | manual |
Compute the ending point of the provided line segment along the 'y' axis.
segEndY(tag: TagIdentifier) -> number
Arguments
| Name | Type | Description | Required |
|---|---|---|---|
tag |
TagIdentifier |
Yes |
Returns
number
Examples
const exampleSketch = startSketchOn('XZ')
|> startProfileAt([0, 0], %)
|> line([20, 0], %)
|> line([0, 3], %, $thing)
|> line([-10, 0], %)
|> line([0, segEndY(thing)], %)
|> line([-10, 0], %)
|> close(%)
const example = extrude(5, exampleSketch)