MCPcopy
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
461function ceilMultipleOfFour(value: number): number {
462 if (value <= 4) return 4;
463 return value % 4 ? value + 4 - (value % 4) : value;
464}

Callers 1

toktxFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected