This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const alignMesh = (mesh, axis = { x: 0.5, y: 0.5, z: 0.5 }) => { | |
axis = axis || {}; | |
const box = new THREE.Box3().setFromObject(mesh); | |
const size = box.getSize(); | |
const { max } = box; | |
const min = { x: -box.min.x, y: -box.min.y, z: -box.min.z }; | |
Object.keys(axis).map(key => { | |
const scale = axis[key]; |
NewerOlder