UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

20 lines (19 loc) 416 B
"use strict"; import { TypedContainer } from "./_Base"; export class GeometryContainer extends TypedContainer { coreContentCloned() { if (this._content) { return this._content.clone(); } } set_content(content) { super.set_content(content); } // pointsCount(): number { // if (this._content) { // return this._content.pointsCount(); // } else { // return 0; // } // } }