From 1e5e6ca9d9e7bb81c66c11b322e33a2a484933ed Mon Sep 17 00:00:00 2001 From: Guilhem Lavaux Date: Thu, 21 Mar 2013 12:47:42 +0100 Subject: [PATCH] Use triangulated instead of joggled input to correct for the degenerated facets (fix problems with seemingly large volumes) --- zobov/vozutil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zobov/vozutil.c b/zobov/vozutil.c index aba81e2..c56da6f 100644 --- a/zobov/vozutil.c +++ b/zobov/vozutil.c @@ -46,7 +46,7 @@ int delaunadj (coordT *points, int nvp, int nvpbuf, int nvpall, PARTADJ **adjs) } /* Delaunay triangulation*/ - sprintf (flags, "qhull s d QJ"); + sprintf (flags, "qhull s d Qt"); exitcode= qh_new_qhull (dim, nvpall, points, ismalloc, flags, outfile, errfile);