first commit
This commit is contained in:
13
node_modules/lottie-web/player/js/utils/pooling/point_pool.js
generated
vendored
Normal file
13
node_modules/lottie-web/player/js/utils/pooling/point_pool.js
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
Reference in New Issue
Block a user