mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-08 01:10:27 +00:00
22 lines
569 B
Markdown
22 lines
569 B
Markdown
## Ceil
|
|
Find the nearest integer that is greater than or equal to the parameter
|
|
|
|
### Declaration
|
|
```glsl
|
|
float ceil(float x)
|
|
vec2 ceil(vec2 x)
|
|
vec3 ceil(vec3 x)
|
|
vec4 ceil(vec4 x)
|
|
```
|
|
|
|
### Parameters
|
|
```x``` specify the value to evaluate.
|
|
|
|
### Description
|
|
```ceil()``` returns a value equal to the nearest integer that is greater than or equal to ```x```.
|
|
|
|
<div class="simpleFunction" data="y = ceil(x); "></div>
|
|
|
|
### See Also
|
|
[floor](/glossary/?search=floor), [fract](/glossary/?search=fract), [mod](/glossary/?search=mod), [Chapter 05: Shaping Functions](/05/)
|