* 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>
43 lines
78 KiB
Markdown
43 lines
78 KiB
Markdown
---
|
|
title: "ceil"
|
|
subtitle: "Function in std::math"
|
|
excerpt: "Compute the smallest integer greater than or equal to a number."
|
|
layout: manual
|
|
---
|
|
|
|
Compute the smallest integer greater than or equal to a number.
|
|
|
|
```kcl
|
|
ceil(@input: number): number
|
|
```
|
|
|
|
|
|
|
|
### Arguments
|
|
|
|
| Name | Type | Description | Required |
|
|
|----------|------|-------------|----------|
|
|
| `input` | [`number`](/docs/kcl-std/types/std-types-number) | A number. | Yes |
|
|
|
|
### Returns
|
|
|
|
[`number`](/docs/kcl-std/types/std-types-number) - A number.
|
|
|
|
|
|
### Examples
|
|
|
|
```kcl
|
|
sketch001 = startSketchOn(XZ)
|
|
|> startProfile(at = [0, 0])
|
|
|> line(endAbsolute = [12, 10])
|
|
|> line(end = [ceil(7.02986), 0])
|
|
|> yLine(endAbsolute = 0)
|
|
|> close()
|
|
|
|
extrude001 = extrude(sketch001, length = 5)
|
|
```
|
|
|
|

|
|
|
|
|