dilevin / computer-graphics-bounding-volume-hierarchy

Computer Graphics Assignment about Bounding Volume Hierarchies
6 stars 5 forks source link

Coplanar Triangles #76

Open AlekseyPanas opened 8 months ago

AlekseyPanas commented 8 months ago

Can I count coplanar triangles as a non-collision? This would save a ton of work having to project to a 2D triangle collision case. I believe it is very unlikely that two triangles are truly coplanar due to float inaccuracies and whatnot.

Zhecheng-Wang commented 8 months ago

Can I count coplanar triangles as a non-collision?

No, I wouldn't recommend that.