/* Incremental slicing of an {salamic_mesh_t}. */ /* Last edited on 2015-10-09 19:50:31 by stolfilocal */ #ifndef salamic_slicer_Minetto_H #define salamic_slicer_Minetto_H #define _GNU_SOURCE #include #include #include #include #include #include void salamic_slicer_Minetto_slice ( stmesh_t mesh, bool_t preSorted, int_vec_t *planeZ, bool_t uniform, char *closer, char *outPrefix, salamic_stats_t *st ); /* Slices the mesh {mesh} by a list of horizontal planes, defined by their Z-coordinates {planeZ.e[0..np-1]} where {np = planeZ.ne}. Uses Minetto's active list algorithm, described in Minetto, Volpatto, Stolfi (2015). See {salamic_slicer.h} for additional requirements and for the meaning of other parameters. */ #endif