As someone new to three.js and 3D graphics in general, I am struggling with loading a high-definition OBJ file onto the screen. While I have been able to load the file, it is not as well-defined as I would like.
The OBJ file in question is a ring with pearls, but when rendered, there are visible lines and the object lacks clarity. Currently, I am using the following script to load the object:
app.loadObj( {
path: 'obj/',
fileObj: 'prova.obj',
pivot: pivotA,
overdraw: true,
instanceNo: 0
} );
The first picture shows the ring with the problematic lines mentioned above, while the second image depicts how the ring should ideally be rendered. You can view the images here.
You can also view the correct rendering of the ring in this link. (Apologies for any errors in my English)