| 4 | import * as utils from "./utils"; |
| 5 | |
| 6 | interface IArrayValues { |
| 7 | vertices?: []; |
| 8 | color?: []; |
| 9 | color_selected?: []; |
| 10 | size?: []; |
| 11 | size_selected?: []; |
| 12 | u?: []; |
| 13 | v?: []; |
| 14 | x?: []; |
| 15 | y?: []; |
| 16 | z?: []; |
| 17 | } |
| 18 | |
| 19 | /* Manages a list of scalar and arrays for use with WebGL instanced rendering |
| 20 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected