Skip to content

Commit 574e90d

Browse files
PA review
1 parent 1ff7178 commit 574e90d

14 files changed

+18
-18
lines changed

include/geode/inspector/topology/brep_blocks_topology.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ namespace geode
4646
struct opengeode_inspector_inspector_api BRepBlocksTopologyInspectionResult
4747
{
4848
InspectionIssues< uuid > some_blocks_not_meshed{
49-
"blocks without mesh (UUIDs listed)"
49+
"blocks without mesh (uuid listed)"
5050
};
5151
InspectionIssues< uuid > wrong_block_boundary_surface{
52-
"surfaces incorrectly bounding blocks (UUIDs listed)"
52+
"surfaces incorrectly bounding blocks (uuids listed)"
5353
};
5454
InspectionIssuesMap< index_t > blocks_not_linked_to_a_unique_vertex{
5555
"blocks containing mesh vertices not linked to unique vertices"
@@ -77,7 +77,7 @@ namespace geode
7777
"blocks with non-closed boundary surfaces"
7878
};
7979
InspectionIssues< index_t > model_boundaries_dont_form_a_closed_surface{
80-
"model boundaries don't form a closed surface (UUIDs listed)"
80+
"model boundaries don't form a closed surface (uuids listed)"
8181
};
8282
InspectionIssues< index_t >
8383
unique_vertex_linked_to_multiple_invalid_surfaces{

include/geode/inspector/topology/brep_corners_topology.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ namespace geode
4343
struct opengeode_inspector_inspector_api BRepCornersTopologyInspectionResult
4444
{
4545
InspectionIssues< uuid > corners_not_meshed{
46-
"corners without mesh (UUIDs listed)"
46+
"corners without mesh (uuids listed)"
4747
};
4848
InspectionIssuesMap< index_t > corners_not_linked_to_a_unique_vertex{
4949
"corners containing mesh vertices not linked to unique vertices"

include/geode/inspector/topology/brep_lines_topology.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ namespace geode
4343
struct opengeode_inspector_inspector_api BRepLinesTopologyInspectionResult
4444
{
4545
InspectionIssues< uuid > lines_not_meshed{
46-
"lines without mesh (UUIDs listed)"
46+
"lines without mesh (uuids listed)"
4747
};
4848
InspectionIssues< index_t >
4949
unique_vertices_linked_to_line_with_wrong_relationship_to_surface{

include/geode/inspector/topology/brep_surfaces_topology.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 BRepSurfacesTopologyInspectionResult
4343
{
4444
InspectionIssues< uuid > surfaces_not_meshed{
45-
"surface without mesh (UUIDs listed)"
45+
"surface without mesh (uuids listed)"
4646
};
4747
InspectionIssuesMap< index_t > surfaces_not_linked_to_a_unique_vertex{
4848
"surfaces containing mesh vertices not linked to unique vertices"

include/geode/inspector/topology/section_corners_topology.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ namespace geode
4343
opengeode_inspector_inspector_api SectionCornersTopologyInspectionResult
4444
{
4545
InspectionIssues< uuid > corners_not_meshed{
46-
"corners without mesh (UUIDs listed)"
46+
"corners without mesh (uuids listed)"
4747
};
4848
InspectionIssuesMap< index_t > corners_not_linked_to_a_unique_vertex{
4949
"corners containing mesh vertices not linked to unique vertices"

include/geode/inspector/topology/section_lines_topology.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ namespace geode
4141
opengeode_inspector_inspector_api SectionLinesTopologyInspectionResult
4242
{
4343
InspectionIssues< uuid > lines_not_meshed{
44-
"lines without mesh (UUIDs listed)"
44+
"lines without mesh (uuids listed)"
4545
};
4646
InspectionIssuesMap< index_t > lines_not_linked_to_a_unique_vertex{
4747
"lines with mesh vertices not linked to a unique vertex"

include/geode/inspector/topology/section_surfaces_topology.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 SectionSurfacesTopologyInspectionResult
4343
{
4444
InspectionIssues< uuid > surfaces_not_meshed{
45-
"surface without mesh (UUIDs listed)"
45+
"surface without mesh (uuids listed)"
4646
};
4747
InspectionIssuesMap< index_t > surfaces_not_linked_to_a_unique_vertex{
4848
"surfaces containing mesh vertices not linked to unique vertices"

src/geode/inspector/criterion/colocation/component_meshes_colocation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ namespace
146146
if( !colocated_pts.empty() )
147147
{
148148
geode::InspectionIssues< std::vector< geode::index_t > >
149-
surface_issues{ absl::StrCat( "Surface ", surface.name(),
149+
surface_issues{ absl::StrCat( "surface ", surface.name(),
150150
" colocated vertices - uuid ",
151151
surface.id().string() ) };
152152
const auto& surface_mesh = surface.mesh();
@@ -196,7 +196,7 @@ namespace
196196
if( !colocated_pts.empty() )
197197
{
198198
geode::InspectionIssues< std::vector< geode::index_t > >
199-
block_issues{ absl::StrCat( "Block ", block.name(),
199+
block_issues{ absl::StrCat( "block ", block.name(),
200200
" colocated vertices - uuid ", block.id().string() ) };
201201
const auto& block_mesh = block.mesh();
202202
for( const auto& colocated_points_group : colocated_pts )

src/geode/inspector/criterion/degeneration/edgedcurve_degeneration.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ namespace geode
6161
if( mesh_.edge_length( edge_id ) <= threshold )
6262
{
6363
degenerated_edges_index.add_issue( edge_id,
64-
absl::StrCat( "Edge ", edge_id, ", at position [",
64+
absl::StrCat( "edge ", edge_id, ", at position [",
6565
mesh_.edge_barycenter( edge_id ).string(), "]" ) );
6666
}
6767
}

src/geode/inspector/criterion/internal/component_meshes_degeneration.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ namespace geode
102102
const geode::SurfaceMeshDegeneration< Model::dim >
103103
inspector{ surface.mesh() };
104104
auto issues = inspector.small_edges( threshold );
105-
issues.set_description( absl::StrCat( "Surface ",
105+
issues.set_description( absl::StrCat( "surface ",
106106
surface.name(), " small facet edges - uuid ",
107107
surface.id().string() ) );
108108
return std::make_pair(
@@ -141,7 +141,7 @@ namespace geode
141141
const geode::SurfaceMeshDegeneration< Model::dim >
142142
inspector{ surface.mesh() };
143143
auto issues = inspector.small_height_polygons( threshold );
144-
issues.set_description( absl::StrCat( "Surface ",
144+
issues.set_description( absl::StrCat( "surface ",
145145
surface.name(), " small height polygons - uuid ",
146146
surface.id().string() ) );
147147
return std::make_pair( surface.id(), std::move( issues ) );

0 commit comments

Comments
 (0)