UNPKG

@spearwolf/twopoint5d

Version:

a library to create 2.5d realtime graphics and pixelart with three.js

10 lines 494 B
import { VOBufferGeometry } from './VOBufferGeometry.js'; import { VertexObjectDescriptor } from './VertexObjectDescriptor.js'; import { VertexObjectPool } from './VertexObjectPool.js'; export class VertexObjectGeometry extends VOBufferGeometry { constructor(source, capacity) { super(source instanceof VertexObjectPool ? source : new VertexObjectPool(source, capacity), capacity); this.name = 'VertexObjectGeometry'; } } //# sourceMappingURL=VertexObjectGeometry.js.map