KCL: Helper functions to get a plane's X and Y axis

This commit is contained in:
Adam Chalmers
2025-07-01 13:56:16 -05:00
parent 7f9851ae28
commit 89d54d24d6
13 changed files with 185 additions and 0 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -46,6 +46,9 @@ layout: manual
* [`sin`](/docs/kcl-std/functions/std-math-sin)
* [`sqrt`](/docs/kcl-std/functions/std-math-sqrt)
* [`tan`](/docs/kcl-std/functions/std-math-tan)
* [**std::planes**](/docs/kcl-std/modules/std-planes)
* [`planes::xAxis`](/docs/kcl-std/functions/std-planes-xAxis)
* [`planes::yAxis`](/docs/kcl-std/functions/std-planes-yAxis)
* [**std::sketch**](/docs/kcl-std/modules/std-sketch)
* [`angledLine`](/docs/kcl-std/functions/std-sketch-angledLine)
* [`angledLineThatIntersects`](/docs/kcl-std/functions/std-sketch-angledLineThatIntersects)

View File

@ -0,0 +1,17 @@
---
title: "planes"
subtitle: "Module in std"
excerpt: ""
layout: manual
---
## Functions and constants
* [`planes::xAxis`](/docs/kcl-std/functions/std-planes-xAxis)
* [`planes::yAxis`](/docs/kcl-std/functions/std-planes-yAxis)

View File

@ -18,6 +18,7 @@ You might also want the [KCL language reference](/docs/kcl-lang) or the [KCL gui
* [`appearance::appearance`](/docs/kcl-std/modules/std-appearance)
* [`array`](/docs/kcl-std/modules/std-array)
* [`math`](/docs/kcl-std/modules/std-math)
* [`planes::planes`](/docs/kcl-std/modules/std-planes)
* [`sketch`](/docs/kcl-std/modules/std-sketch)
* [`solid`](/docs/kcl-std/modules/std-solid)
* [`sweep::sweep`](/docs/kcl-std/modules/std-sweep)