Files
modeling-app/docs/kcl/polar.md
Jess Frazelle 8fe91259fa add polar function (#3158)
* add polarCoords fn

Signed-off-by: Jess Frazelle <github@jessfraz.com>

* updates;

Signed-off-by: Jess Frazelle <github@jessfraz.com>

* updates

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>
2024-07-28 22:45:40 -07:00

172 KiB

title, excerpt, layout
title excerpt layout
polar Convert from polar/sphere coordinates to cartesian coordinates. manual

Convert from polar/sphere coordinates to cartesian coordinates.

polar(data: PolarCoordsData) -> [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

Arguments

  • data: PolarCoordsData - Data for polar coordinates. (REQUIRED)
{
	// The angle of the line (in degrees).
	angle: number,
	// The length of the line.
	length: number,
}

Returns

[number]