SarahWeiii / CoACD

[SIGGRAPH2022] Approximate Convex Decomposition for 3D Meshes with Collision-Aware Concavity and Tree Search

Home Page:https://colin97.github.io/CoACD/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Three point form of Plane, most likely mistake

Scapior opened this issue · comments

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