Skip to content

Commit 9547219

Browse files
committed
Review changes
1 parent 29fe285 commit 9547219

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/geode/inspector/topology/brep_blocks_topology.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ namespace
5656
return block_boundary_uuids;
5757
}
5858

59-
bool is_line_incident_to_other_block_boundary_surf(
59+
bool is_line_incident_to_other_block_boundary_surface(
6060
const geode::Line3D& line,
6161
const geode::BRep& brep,
6262
absl::Span< const geode::uuid > block_boundary_uuids,
63-
const geode::uuid& bsurf_uuid )
63+
const geode::uuid& boundary_surface_id )
6464
{
6565
for( const auto& incident_surface : brep.incidences( line ) )
6666
{
67-
if( incident_surface.id() == bsurf_uuid )
67+
if( incident_surface.id() == boundary_surface_id )
6868
{
6969
continue;
7070
}
@@ -90,7 +90,7 @@ namespace
9090
const auto& surface = brep.surface( bsurf_uuid );
9191
for( const auto& line : brep.boundaries( surface ) )
9292
{
93-
if( is_line_incident_to_other_block_boundary_surf(
93+
if( is_line_incident_to_other_block_boundary_surface(
9494
line, brep, block_boundary_uuids, bsurf_uuid ) )
9595
{
9696
continue;

0 commit comments

Comments
 (0)