Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
drawGuidelineCurve3d
Function · 0.85
drawGuidelineCurve2d
Function · 0.85
Calls
1
min
Function · 0.85
Tested by
no test coverage detected