Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/donmccurdy/glTF-Transform
/ ceilMultipleOfFour
Function
ceilMultipleOfFour
packages/cli/src/transforms/toktx.ts:461–464 ·
view source on GitHub ↗
(value: number)
Source
from the content-addressed store, hash-verified
459
}
460
461
function
ceilMultipleOfFour(value: number): number {
462
if
(value <= 4)
return
4;
463
return
value % 4 ? value + 4 - (value % 4) : value;
464
}
Callers
1
toktx
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected