Find segments (lines) of a face.
Arguments
- vertices
A
m x parray of vertices of the convex hull, as used bygeometry::convhulln().- hull
Tessellation (or triangulation) generated by
geometry::convhulln()If hull is left empty or not supplied, then it will be generated.- tol
Tolerance on the tests for inclusion in the convex hull. You can think of
tolas the distance a point may possibly lie outside the hull, and still be perceived as on the surface of the hull. Because of numerical slop nothing can ever be done exactly here. I might guess a semi-intelligent value oftolto betol = 1.e-13*mean(abs(vertices(:)))In higher dimensions, the numerical issues of floating point arithmetic will probably suggest a larger value of
tol.
Author
Lars Relund lars@relund.dk