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

Function max3

TheForceEngine/TFE_Editor/editorMath.h:20–23  ·  view source on GitHub ↗

max(a, b, c)

Source from the content-addressed store, hash-verified

18 }
19 // max(a, b, c)
20 inline f32 max3(f32 a, f32 b, f32 c)
21 {
22 return std::max(a, std::max(b, c));
23 }
24 // Return true if the 1D intervals [a0, a1] and [b0, b1] overlap.
25 inline bool intervalOverlap(f32 a0, f32 a1, f32 b0, f32 b1)
26 {

Callers 2

drawGuidelineCurve3dFunction · 0.85
drawGuidelineCurve2dFunction · 0.85

Calls 1

maxFunction · 0.85

Tested by

no test coverage detected