Currently, I am in the process of designing the wire frame styles for human body OBJs and my goal is to achieve a wire frame similar to the image below. In the following lines, you will find the code snippets that illustrate how I create the wire frame along with images depicting its current appearance and the expected final look.
// Using 'child' as the type THREE.Mesh representing the human body's OBJ.
const geo = new THREE.WireframeGeometry(child.geometry)
const mat = new THREE.LineBasicMaterial({color: 0xffffff})
const wireframe = new THREE.LineSegments(geo, mat)
child.add(wireframe)
https://codesandbox.io/s/adoring-shtern-20vhl?fontsize=14
Current Appearance
Expected Final Appearance