* Add documentation to modules, and some constants and types Signed-off-by: Nick Cameron <nrc@ncameron.org> * Improve the language reference Signed-off-by: Nick Cameron <nrc@ncameron.org> --------- Signed-off-by: Nick Cameron <nrc@ncameron.org>
39 lines
733 B
Markdown
39 lines
733 B
Markdown
---
|
|
title: "legAngX"
|
|
subtitle: "Function in std::math"
|
|
excerpt: "Compute the angle of the given leg for x."
|
|
layout: manual
|
|
---
|
|
|
|
Compute the angle of the given leg for x.
|
|
|
|
```kcl
|
|
legAngX(
|
|
hypotenuse: number,
|
|
leg: number,
|
|
): number
|
|
```
|
|
|
|
|
|
|
|
### Arguments
|
|
|
|
| Name | Type | Description | Required |
|
|
|----------|------|-------------|----------|
|
|
| `hypotenuse` | [`number`](/docs/kcl-std/types/std-types-number) | The length of the triangle's hypotenuse | Yes |
|
|
| `leg` | [`number`](/docs/kcl-std/types/std-types-number) | The length of one of the triangle's legs (i.e. non-hypotenuse side) | Yes |
|
|
|
|
### Returns
|
|
|
|
[`number`](/docs/kcl-std/types/std-types-number) - A number.
|
|
|
|
|
|
### Examples
|
|
|
|
```kcl
|
|
legAngX(hypotenuse = 5, leg = 3)
|
|
```
|
|
|
|
|
|
|