The center of boxMesh has default value(0,0,0).
I think when I use boxMesh.position.set(1,0,0), the center of boxMesh would be (1,0,0).
but it doesn't looks like (1,0,0), it looks like (2,0,0)
Doesn't one grid cell represent a size of 1? I don't have idea...Please explain how this feature works
// Mesh
const box_geo = new THREE.BoxGeometry(1, 1, 1); // set box size
const box_mat = new THREE.MeshStandardMaterial({ color: 'red' });
const boxMesh = new THREE.Mesh(box_geo, box_mat);
boxMesh.position.set(1, 0, 0);
scene.add(boxMesh);
// axesHelper
const axesHelper = new THREE.AxesHelper(50);
scene.add(axesHelper);
// GridHelper
const gridHelper = new THREE.GridHelper(5);
scene.add(gridHelper);