| 15 | |
| 16 | export let GLMAT_ARRAY_TYPE = Array; |
| 17 | export let isMatrixArray = x => Array.isArray(x); |
| 18 | if (typeof Float32Array !== 'undefined') { |
| 19 | GLMAT_ARRAY_TYPE = Float32Array; |
| 20 | isMatrixArray = x => Array.isArray(x) || x instanceof Float32Array; |
no outgoing calls
no test coverage detected