You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/manual/en/introduction/FAQ.html
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,5 +51,10 @@ <h2>Why is part of my object invisible?</h2>
51
51
This could be because of face culling. Faces have an orientation that decides which side is which. And the culling removes the backside in normal circumstances. To see if this is your problem, change the material side to THREE.DoubleSide.
52
52
<code>material.side = THREE.DoubleSide</code>
53
53
</p>
54
+
55
+
<h2>Why does three.js sometimes return strange results for invalid inputs?</h2>
56
+
<p>
57
+
For performance reasons, three.js doesn't validate inputs in most cases. It's your app's responsibility to make sure that all inputs are valid.
0 commit comments