Seeking some guidance on three.js
.
How can I apply an offset to a mesh?
You can find the basic code here:
I am looking to set a position offset and have that point serve as the rotation reference.
I attempted:
mesh.applyMatrix( new THREE.Matrix4().makeTranslation( -2, 0, 0 ) );
but it only moves the mesh in the scene without rotating around that point.