Using ConvexHull(coordinates, qhull_options="QJ")
every once in a while I get a large number of the message Killing degenerate triangle
in stdout
. There are no errors or suspicious results. So it looks like qhull successfully removed some degenerate triangles. As the message tends to clutter up my output I would like to mute it.
I already looked at different qhull_options
but no success. I even googled that message with - in a verbal sense - no results. So I have no idea where it comes from beside the call to ConvexHull
. Trying to catch the message as python warning was also not successful. It is also no QhullError
.
Any help is appreciated.