Is there a way to display both the box and object inside the box using three.js? I attempted to achieve this by creating a cubeGeometry:
var cubeMaterials = new THREE.LineBasicMaterial({wireframe:true,wireframeLinewidth:8,} );
var cubeGeometry = new THREE.CubeGeometry( 100, 100, 100, 1, 1, 1 );
cube = new THREE.Mesh( cubeGeometry, cubeMaterials );
However, I am still seeing lines of triangles which I wish to avoid. My goal is to design a rack and position objects within that rack.