computeBoundingBox method
dynamic
computeBoundingBox()
Implementation
computeBoundingBox() {
if (this.boundingBox == null) {
this.boundingBox = new THREE.Box3(null, null);
}
this.boundingBox!.setFromPoints(this.vertices);
}