-
-
Notifications
You must be signed in to change notification settings - Fork 190
Open
Description
This code will break on numbers with small fraction:
glTF-Transform/packages/cli/src/transforms/toktx.ts
Lines 467 to 470 in 8bbdd5e
| function ceilMultipleOfFour(value: number): number { | |
| if (value <= 4) return 4; | |
| return value % 4 ? value + 4 - (value % 4) : value; | |
| } |
I found this solution working for this case:

Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels