SarahWeiii / CoACD

[SIGGRAPH2022] Approximate Convex Decomposition for 3D Meshes with Collision-Aware Concavity and Tree Search
https://colin97.github.io/CoACD/
MIT License
457 stars 59 forks source link

Three point form of Plane, most likely mistake #2

Closed Scapior closed 1 year ago

Scapior commented 2 years ago
class Plane
{
    bool pFlag;       // whether three point form exists
    vec3d p0, p1, p2; // three point form

The code has a value modification of these fields (in clip.cpp) but they are never used. image