From: Pedro T. <pt...@te...> - 2003-12-19 09:22:18
|
El Jueves, 18 de Diciembre de 2003 11:43, a Rafael Laboissiere se le ocurr= i=F3=20 decir lo siguiente: > I also noticed that Qt is not working and I have no clue about where the > problem is. I will try to investigate further when I will have some time. It works adding the Q0 option. According to QHull manual Q0: "do not pre-me= rge=20 facets with 'C-0' and Qx". C-0 and Qx options are by default used by qhull = to=20 avoid precission errors. This errors can be avoided pre-merging coplanar=20 facets (C-0 & Qx) or using QJ option.=20 Again reading qhull manual: "Use option 'Qt' to triangulate all non-simplic= ial=20 facets before generating results". So... Qt uses C-0 and Qx and only later = it=20 "breaks" non-simplicial facets. Maybe this is why, since we read the qh=20 struct on memory rather than the final result of qhull this isn't working..= =2E=20 It looks like there's a missing step. This is as far as I've got... Regards, Pedro |