(typedArray)
| 97 | toBase64_1; |
| 98 | |
| 99 | function toBase64(typedArray) { |
| 100 | const a = []; |
| 101 | for (let i = 0; i < typedArray.length; i++) { |
| 102 | a[i] = (typedArray[i]); |
| 103 | } |
| 104 | return a; |
| 105 | } |
| 106 | function makeFacesIndexes(solid, jsonSolidMesh) { |
| 107 | |
| 108 | const mesh = solid.mesh; |
no outgoing calls
no test coverage detected