Calculate position of object based on center

Thank you so much, it worked

For reference here is the code I used:
const box3 = new Box3().setFromObject(model);
const vector = new Vector3();
box3.getCenter(vector);
model.position.set(-vector.x, -vector.y, -vector.z);

3 Likes