Files
nothoughts/node_modules/pixi.js/lib/scene/container/bounds/utils/matrixAndBoundsPool.mjs
2025-08-04 18:57:35 +02:00

11 lines
332 B
JavaScript

import { Matrix } from '../../../../maths/matrix/Matrix.mjs';
import { Pool } from '../../../../utils/pool/Pool.mjs';
import { Bounds } from '../Bounds.mjs';
"use strict";
const matrixPool = new Pool(Matrix);
const boundsPool = new Pool(Bounds);
export { boundsPool, matrixPool };
//# sourceMappingURL=matrixAndBoundsPool.mjs.map