UNPKG

lottie-web

Version:

After Effects plugin for exporting animations to SVG + JavaScript or canvas + JavaScript

14 lines (11 loc) 268 B
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;