Files
modeling-app/docs/kcl/polar.md
Jess Frazelle 790af3842c Recusive docs (#4023)
updates



updates



updates



updates



updates



updates



better



updates



array of



updates



updates



updates



updates

Signed-off-by: Jess Frazelle <github@jessfraz.com>
2024-09-27 19:50:44 -07:00

77 KiB

title, excerpt, layout
title excerpt layout
polar Convert polar/sphere (azimuth, elevation, distance) coordinates to manual

Convert polar/sphere (azimuth, elevation, distance) coordinates to

cartesian (x/y/z grid) coordinates.

polar(data: PolarCoordsData) -> [number]

Arguments

Name Type Description Required
data PolarCoordsData Data for polar coordinates. Yes

Returns

[number]

Examples

const exampleSketch = startSketchOn('XZ')
  |> startProfileAt([0, 0], %)
  |> line(polar({ angle: 30, length: 5 }), %, $thing)
  |> line([0, 5], %)
  |> line([segEndX(thing), 0], %)
  |> line([-20, 10], %)
  |> close(%)

const example = extrude(5, exampleSketch)

Rendered example of polar 0