Skip to content

Commit fec0ac4

Browse files
more refactoring
1 parent c329582 commit fec0ac4

25 files changed

+72
-78
lines changed

include/geode/inspector/criterion/adjacency/brep_meshes_adjacency.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ namespace geode
4545
{
4646
InspectionIssuesMap< PolygonEdge >
4747
surfaces_edges_with_wrong_adjacencies{
48-
"BRep Surface mesh with polygon edges adjacencies issues"
48+
"surface polygon edges adjacencies issues"
4949
};
5050
InspectionIssuesMap< PolyhedronFacet >
5151
blocks_facets_with_wrong_adjacencies{
52-
"BRep Block mesh with polyhedron facets adjacencies issues"
52+
"block polyhedron facets adjacencies issues"
5353
};
5454

5555
[[nodiscard]] index_t nb_issues() const;

include/geode/inspector/criterion/adjacency/section_meshes_adjacency.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace geode
4545
{
4646
InspectionIssuesMap< PolygonEdge >
4747
surfaces_edges_with_wrong_adjacencies{
48-
"Section Surface mesh polygon edges adjacencies issues"
48+
"surface polygon edges adjacencies issues"
4949
};
5050

5151
[[nodiscard]] index_t nb_issues() const;

include/geode/inspector/criterion/colocation/component_meshes_colocation.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ namespace geode
4141
struct opengeode_inspector_inspector_api MeshesColocationInspectionResult
4242
{
4343
InspectionIssuesMap< std::vector< index_t > > colocated_points_groups{
44-
"Model component meshes with colocated points"
44+
"meshes with colocated points"
4545
};
4646

4747
[[nodiscard]] index_t nb_issues() const;

include/geode/inspector/criterion/colocation/unique_vertices_colocation.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ namespace geode
3939
struct opengeode_inspector_inspector_api UniqueVerticesInspectionResult
4040
{
4141
InspectionIssues< std::vector< index_t > >
42-
colocated_unique_vertices_groups{ "colocated unique vertices." };
42+
colocated_unique_vertices_groups{ "colocated unique vertices" };
4343
InspectionIssues< index_t > unique_vertices_linked_to_different_points{
44-
"unique vertices linked to mesh vertices at differing positions."
44+
"unique vertices linked to several positions"
4545
};
4646

4747
[[nodiscard]] index_t nb_issues() const;

include/geode/inspector/criterion/degeneration/brep_meshes_degeneration.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ namespace geode
4242
opengeode_inspector_inspector_api BRepMeshesDegenerationInspectionResult
4343
{
4444
InspectionIssuesMap< index_t > degenerated_edges{
45-
"BRep component meshes with degenerated edges"
45+
"meshes with degenerated edges"
4646
};
4747
InspectionIssuesMap< index_t > degenerated_polygons{
48-
"BRep component meshes with degenerated polygons"
48+
"meshes with degenerated polygons"
4949
};
5050
InspectionIssuesMap< index_t > degenerated_polyhedra{
51-
"BRep component meshes with degenerated polyhedra"
51+
"meshes with degenerated polyhedra"
5252
};
5353

5454
[[nodiscard]] index_t nb_issues() const;

include/geode/inspector/criterion/degeneration/section_meshes_degeneration.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ namespace geode
4242
opengeode_inspector_inspector_api SectionMeshesDegenerationInspectionResult
4343
{
4444
InspectionIssuesMap< index_t > degenerated_edges{
45-
"Section component meshes with degenerated edges"
45+
"meshes with degenerated edges"
4646
};
4747
InspectionIssuesMap< index_t > degenerated_polygons{
48-
"Section component meshes with degenerated polygons"
48+
"meshes with degenerated polygons"
4949
};
5050

5151
[[nodiscard]] index_t nb_issues() const;

include/geode/inspector/criterion/intersections/model_intersections.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ namespace geode
4343
{
4444
InspectionIssues<
4545
std::pair< ComponentMeshElement, ComponentMeshElement > >
46-
elements_intersections{ "Surface intersections." };
46+
elements_intersections{ "surface intersections" };
4747

4848
[[nodiscard]] index_t nb_issues() const;
4949

include/geode/inspector/criterion/manifold/brep_meshes_manifold.hpp

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -58,22 +58,18 @@ namespace geode
5858
struct opengeode_inspector_inspector_api BRepMeshesManifoldInspectionResult
5959
{
6060
InspectionIssuesMap< index_t > meshes_non_manifold_vertices{
61-
"BRep component meshes with non manifold vertices"
61+
"meshes with non manifold vertices"
6262
};
6363
InspectionIssuesMap< std::array< index_t, 2 > >
64-
meshes_non_manifold_edges{
65-
"BRep component meshes with non manifold edges"
66-
};
64+
meshes_non_manifold_edges{ "meshes with non manifold edges" };
6765
InspectionIssuesMap< PolyhedronFacetVertices >
68-
meshes_non_manifold_facets{
69-
"BRep component meshes with non manifold facets"
70-
};
66+
meshes_non_manifold_facets{ "meshes with non manifold facets" };
7167
InspectionIssues< BRepNonManifoldEdge > brep_non_manifold_edges{
72-
"BRep non manifold edges"
68+
"non manifold edges"
7369
};
7470

7571
InspectionIssues< BRepNonManifoldFacet > brep_non_manifold_facets{
76-
"BRep non manifold facets"
72+
"non manifold facets"
7773
};
7874

7975
[[nodiscard]] index_t nb_issues() const;

include/geode/inspector/criterion/manifold/section_meshes_manifold.hpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,10 @@ namespace geode
3939
opengeode_inspector_inspector_api SectionMeshesManifoldInspectionResult
4040
{
4141
InspectionIssuesMap< index_t > meshes_non_manifold_vertices{
42-
"Section component meshes with non manifold vertices"
42+
"meshes with non manifold vertices"
4343
};
4444
InspectionIssuesMap< std::array< index_t, 2 > >
45-
meshes_non_manifold_edges{
46-
"Section component meshes with non manifold edges"
47-
};
45+
meshes_non_manifold_edges{ "meshes with non manifold edges" };
4846

4947
[[nodiscard]] index_t nb_issues() const;
5048

include/geode/inspector/criterion/negative_elements/brep_meshes_negative_elements.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ namespace geode
4242
opengeode_inspector_inspector_api BRepMeshesNegativeElementsInspectionResult
4343
{
4444
InspectionIssuesMap< index_t > negative_polyhedra{
45-
"BRep block meshes with negative polyhedra"
45+
"block with negative polyhedra"
4646
};
4747

4848
[[nodiscard]] index_t nb_issues() const;

0 commit comments

Comments
 (0)