Skip to content

Commit 249fbd8

Browse files
MelchiorSchuhgithub-actions[bot]
authored andcommitted
Apply prepare changes
1 parent e8cc54a commit 249fbd8

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ namespace
5656
== geode::Line< Model::dim >::component_type_static() )
5757
{
5858
return point.inexact_equal( model.line( cmv.component_id.id() )
59-
.mesh()
60-
.point( cmv.vertex ) );
59+
.mesh()
60+
.point( cmv.vertex ) );
6161
}
6262
else if( cmv.component_id.type()
6363
== geode::Surface< Model::dim >::component_type_static() )
6464
{
6565
return point.inexact_equal( model.surface( cmv.component_id.id() )
66-
.mesh()
67-
.point( cmv.vertex ) );
66+
.mesh()
67+
.point( cmv.vertex ) );
6868
}
6969
return point.inexact_equal(
7070
model.corner( cmv.component_id.id() ).mesh().point( cmv.vertex ) );
@@ -85,8 +85,8 @@ namespace
8585
if( cmv.component_id.type() == geode::Block3D::component_type_static() )
8686
{
8787
return point.inexact_equal( model.block( cmv.component_id.id() )
88-
.mesh()
89-
.point( cmv.vertex ) );
88+
.mesh()
89+
.point( cmv.vertex ) );
9090
}
9191
return model_cmv_is_colocated_on_point_base< geode::BRep >(
9292
model, cmv, point );

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ namespace
8686
absl::StrCat( "Vertices with indices", point_group_string,
8787
" are colocated at position [",
8888
mesh_colocation_info
89-
.unique_points[mesh_colocation_info.colocated_mapping
90-
[colocated_points_group[0]]]
89+
.unique_points[mesh_colocation_info
90+
.colocated_mapping[colocated_points_group[0]]]
9191
.string(),
9292
"]." ) );
9393
}

src/geode/inspector/criterion/manifold/solid_edge_manifold.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ namespace
6868
{
6969
const Edge polyhedron_edge{ polyhedron_edge_vertices };
7070
if( !polyhedra_around_edges
71-
.try_emplace( polyhedron_edge, 1, polyhedron_id )
72-
.second )
71+
.try_emplace( polyhedron_edge, 1, polyhedron_id )
72+
.second )
7373
{
7474
polyhedra_around_edges[polyhedron_edge].push_back(
7575
polyhedron_id );

src/geode/inspector/criterion/manifold/solid_facet_manifold.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ namespace
5151
const Facet facet{ mesh.polyhedron_facet_vertices(
5252
{ polyhedron_id, facet_id } ) };
5353
if( !nb_polyhedra_adjacent_to_facets.try_emplace( facet, 1 )
54-
.second )
54+
.second )
5555
{
5656
nb_polyhedra_adjacent_to_facets[facet] += 1;
5757
}

src/geode/inspector/criterion/manifold/surface_edge_manifold.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ namespace
5151
{ polygon_id, polygon_edge_id } )
5252
};
5353
if( !polygons_around_edges
54-
.try_emplace( polygon_edge_vertex_cycle,
55-
std::make_pair( 1, false ) )
56-
.second )
54+
.try_emplace( polygon_edge_vertex_cycle,
55+
std::make_pair( 1, false ) )
56+
.second )
5757
{
5858
polygons_around_edges[polygon_edge_vertex_cycle].first += 1;
5959
}

src/geode/inspector/topology/section_surfaces_topology.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ namespace geode
175175
continue;
176176
}
177177
if( !section_.surface( surface_cmv.component_id.id() )
178-
.mesh()
179-
.is_vertex_on_border( surface_cmv.vertex ) )
178+
.mesh()
179+
.is_vertex_on_border( surface_cmv.vertex ) )
180180
{
181181
return absl::StrCat( "Unique vertex with index ",
182182
unique_vertex_index,

src/geode/inspector/topology/section_topology.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,12 +177,12 @@ namespace geode
177177
Range{ section_.nb_unique_vertices() } )
178178
{
179179
if( !section_topology_inspector
180-
.section_corner_topology_is_valid( unique_vertex_id )
180+
.section_corner_topology_is_valid( unique_vertex_id )
181181
|| !section_topology_inspector
182-
.section_lines_topology_is_valid( unique_vertex_id )
182+
.section_lines_topology_is_valid( unique_vertex_id )
183183
|| !section_topology_inspector
184-
.section_vertex_surfaces_topology_is_valid(
185-
unique_vertex_id ) )
184+
.section_vertex_surfaces_topology_is_valid(
185+
unique_vertex_id ) )
186186
{
187187
return false;
188188
}

0 commit comments

Comments
 (0)