mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-03 23:15:23 +00:00
27 lines
714 B
Markdown
27 lines
714 B
Markdown
## Min
|
|
Return the lesser of two values
|
|
|
|
### Declaration
|
|
```glsl
|
|
float min(float x, float y)
|
|
vec2 min(vec2 x, vec2 y)
|
|
vec3 min(vec3 x, vec3 y)
|
|
vec4 min(vec4 x, vec4 y)
|
|
|
|
vec2 min(vec2 x, float y)
|
|
vec3 min(vec3 x, float y)
|
|
vec4 min(vec4 x, float y)
|
|
```
|
|
|
|
### Parameters
|
|
```x``` specify the first value to compare.
|
|
|
|
```y``` pecify the second value to compare.
|
|
|
|
### Description
|
|
```min()``` returns the minimum of the two parameters. It returns ```y``` if ```y``` is less than ```x```, otherwise it returns ```x```.
|
|
|
|
<div class="simpleFunction" data="y = min(x,0.5); "></div>
|
|
|
|
### See Also
|
|
[max](index.html#max.md), [abs](index.html#abs.md), [clamp](index.html#clamp.md), [Chapter 05: Shaping Functions](../05/) |