diff --git a/PostProcessing/Lidar/PointFilter/ConvexHull/3d-quickhull/quickhull.h b/PostProcessing/Lidar/PointFilter/ConvexHull/3d-quickhull/quickhull.h index 7d9617e..f7a8682 100644 --- a/PostProcessing/Lidar/PointFilter/ConvexHull/3d-quickhull/quickhull.h +++ b/PostProcessing/Lidar/PointFilter/ConvexHull/3d-quickhull/quickhull.h @@ -544,7 +544,7 @@ int qh__face_can_see_vertex_epsilon(qh_context_t* context, qh_face_t* face, qh_v } else { dot = fabsf(dot); - if (dot <= epsilon && dot >= 0) { + if (dot <= epsilon && dot > 0) { qh_vec3_t n = face->normal; // allow epsilon degeneration along the face normal