CoACD icon indicating copy to clipboard operation
CoACD copied to clipboard

Three point form of Plane, most likely mistake

Open Scapior opened this issue 2 years ago • 0 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

Scapior avatar Aug 01 '22 09:08 Scapior