MCPcopy Create free account
hub / github.com/TheForceEngine/TheForceEngine / min3

Function min3

TheForceEngine/TFE_Editor/editorMath.h:15–18  ·  view source on GitHub ↗

min(a, b, c)

Source from the content-addressed store, hash-verified

13{
14 // min(a, b, c)
15 inline f32 min3(f32 a, f32 b, f32 c)
16 {
17 return std::min(a, std::min(b, c));
18 }
19 // max(a, b, c)
20 inline f32 max3(f32 a, f32 b, f32 c)
21 {

Callers 2

drawGuidelineCurve3dFunction · 0.85
drawGuidelineCurve2dFunction · 0.85

Calls 1

minFunction · 0.85

Tested by

no test coverage detected