lines on render cube issue illustrated

I got this while trying to render a cube on Three.js, using THREE.MeshBasicMaterial() and a loaded texture.

Is this normal? How can I fix it?

link|improve this question

64% accept rate
feedback

2 Answers

Set the option overdraw:true.

var material = new THREE.MeshBasicMaterial( { map: texture, overdraw: true } );
link|improve this answer
feedback

I have seen this artifact sometimes when using the canvas renderer. Is it an option for you to use the WebGLRenderer? If so, I suggest doing so.

I suspect this occurs because of "gaps" between the triangles. Hardware rasterizers guarantee that neighboring triangles will not have gaps. In practice, this may be hard to guarantee for the canvas renderer. If this is in fact the issue, I can elaborate if you like.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.