After upgrading from r59
to r62
, I couldn't help but notice that the wireframe CubeGeometry
now displays an extra diagonal line on each face. Is there a solution to this issue?
volumeGeometry = new THREE.CubeGeometry(w, h, depth);
volumeMaterial = new THREE.MeshBasicMaterial({
color : 0x0099ff,
wireframe : true
});
volumeMesh = new THREE.Mesh(volumeGeometry, volumeMaterial);
scene.add(volumeMesh);