blob: 79eeacb3f6d04ebb63022f0c68691f5c4e0f1708 [file] [log] [blame]
import {
createTypedArray,
} from '../helpers/arrays';
import poolFactory from './pool_factory';
const pointPool = (function () {
function create() {
return createTypedArray('float32', 2);
}
return poolFactory(8, create);
}());
export default pointPool;