@@ -36,13 +36,27 @@ namespace geode
3636{
3737 struct opengeode_inspector_inspector_api SurfaceInspectionResult
3838 {
39- InspectionIssues< PolygonEdge > polygon_edges_with_wrong_adjacency;
40- InspectionIssues< std::vector< index_t > > colocated_points_groups;
41- InspectionIssues< index_t > degenerated_edges;
42- InspectionIssues< index_t > degenerated_polygons;
43- InspectionIssues< std::array< index_t , 2 > > non_manifold_edges;
44- InspectionIssues< index_t > non_manifold_vertices;
45- InspectionIssues< std::pair< index_t , index_t > > intersecting_elements;
39+ InspectionIssues< PolygonEdge > polygon_edges_with_wrong_adjacency{
40+ " Adjacencies between polygon edges not tested"
41+ };
42+ InspectionIssues< std::vector< index_t > > colocated_points_groups{
43+ " Colocation of vertices not tested"
44+ };
45+ InspectionIssues< index_t > degenerated_edges{
46+ " Degeneration of edges not tested"
47+ };
48+ InspectionIssues< index_t > degenerated_polygons{
49+ " Degeneration of polygons not tested"
50+ };
51+ InspectionIssues< std::array< index_t , 2 > > non_manifold_edges{
52+ " Manifold of edges not tested"
53+ };
54+ InspectionIssues< index_t > non_manifold_vertices{
55+ " Manifold of vertices not tested"
56+ };
57+ InspectionIssues< std::pair< index_t , index_t > > intersecting_elements{
58+ " Intersection between mesh elements not tested"
59+ };
4660
4761 std::string string () const ;
4862
0 commit comments