I use THREE.OBJLoader for import model obj I use code from https://github.com/mrdoob/three.js/blob/master/examples/webgl_loader_obj.html#L75 But I have problem when i need to rotate model that not rotate around itscenter. if i need it rotate around its center. How can I do?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can call
This will translate the geometry so that it's bounding box is centered at the origin in the object's local coordinate system. Now, when you rotate it, it will rotate around it's "center". |
|||
|
|