问题
I am facing problem where bounding box doesn't include children of the mesh. I have tried all the solutions like calling update() of the BoxHelper but didn't got any success. Please help me with the solution
Code for the bounding box:-
var boxHelper = new THREE.BoxHelper(Object); // to remove the diagonals
this.scene.add(boxHelper);
boxHelper.material.color.set(0x00ff00);
boxHelper.update();
来源:https://stackoverflow.com/questions/43915580/bounding-box-doesnt-include-children-threejsr85