* Add degrees annotations to examples Signed-off-by: Nick Cameron <nrc@ncameron.org> * Fix a units bug with the modulo operation Signed-off-by: Nick Cameron <nrc@ncameron.org> --------- Signed-off-by: Nick Cameron <nrc@ncameron.org>
43 lines
47 KiB
Markdown
43 lines
47 KiB
Markdown
---
|
|
title: "min"
|
|
subtitle: "Function in std::math"
|
|
excerpt: "Compute the minimum of the given arguments."
|
|
layout: manual
|
|
---
|
|
|
|
Compute the minimum of the given arguments.
|
|
|
|
```kcl
|
|
min(@input: [number; 1+]): number
|
|
```
|
|
|
|
|
|
|
|
### Arguments
|
|
|
|
| Name | Type | Description | Required |
|
|
|----------|------|-------------|----------|
|
|
| `input` | [`[number; 1+]`](/docs/kcl-std/types/std-types-number) | An array of numbers to compute the minimum of. | Yes |
|
|
|
|
### Returns
|
|
|
|
[`number`](/docs/kcl-std/types/std-types-number) - A number.
|
|
|
|
|
|
### Examples
|
|
|
|
```kcl
|
|
exampleSketch = startSketchOn(XZ)
|
|
|> startProfile(at = [0, 0])
|
|
|> angledLine(angle = 70deg, length = min([15, 31, 4, 13, 22]))
|
|
|> line(end = [20, 0])
|
|
|> close()
|
|
|
|
example = extrude(exampleSketch, length = 5)
|
|
|
|
```
|
|
|
|

|
|
|
|
|