Skip to content

Commit 02c275e

Browse files
BotellaAgithub-actions[bot]
authored andcommitted
Apply prepare changes
1 parent 314631f commit 02c275e

File tree

10 files changed

+23
-23
lines changed

10 files changed

+23
-23
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace geode
3838
public:
3939
Impl( const EdgedCurve< dimension >& mesh )
4040
: internal::ColocationImpl< dimension, EdgedCurve< dimension > >(
41-
mesh )
41+
mesh )
4242
{
4343
}
4444
};

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace geode
3838
public:
3939
Impl( const PointSet< dimension >& mesh )
4040
: internal::ColocationImpl< dimension, PointSet< dimension > >(
41-
mesh )
41+
mesh )
4242
{
4343
}
4444
};

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace geode
3838
public:
3939
Impl( const SolidMesh< dimension >& mesh )
4040
: internal::ColocationImpl< dimension, SolidMesh< dimension > >(
41-
mesh )
41+
mesh )
4242
{
4343
}
4444
};

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace geode
3838
public:
3939
Impl( const SurfaceMesh< dimension >& mesh )
4040
: internal::ColocationImpl< dimension, SurfaceMesh< dimension > >(
41-
mesh )
41+
mesh )
4242
{
4343
}
4444
};

src/geode/inspector/criterion/intersections/model_intersections.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ namespace
9292
mesh2_( same_surface_
9393
? mesh1_
9494
: surface2_.template mesh<
95-
geode::TriangulatedSurface< Model::dim > >() )
95+
geode::TriangulatedSurface< Model::dim > >() )
9696
{
9797
}
9898

@@ -170,7 +170,7 @@ namespace
170170
const geode::uuid& surface_id1,
171171
const geode::uuid& surface_id2 )
172172
: ModelSurfacesIntersectionBase< Model >(
173-
model, surface_id1, surface_id2 ),
173+
model, surface_id1, surface_id2 ),
174174
same_surface_{ surface_id1 == surface_id2 }
175175
{
176176
}
@@ -208,7 +208,7 @@ namespace
208208
const geode::uuid& surface_id1,
209209
const geode::uuid& surface_id2 )
210210
: ModelSurfacesIntersectionBase< Model >(
211-
model, surface_id1, surface_id2 ),
211+
model, surface_id1, surface_id2 ),
212212
same_surface_{ surface_id1 == surface_id2 }
213213
{
214214
}

src/geode/inspector/edgedcurve_inspector.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ namespace geode
4242
EdgedCurveInspector< dimension >::EdgedCurveInspector(
4343
const EdgedCurve< dimension >& mesh )
4444
: AddInspectors< EdgedCurve< dimension >,
45-
EdgedCurveColocation< dimension >,
46-
EdgedCurveDegeneration< dimension > >{ mesh }
45+
EdgedCurveColocation< dimension >,
46+
EdgedCurveDegeneration< dimension > >{ mesh }
4747
{
4848
}
4949

src/geode/inspector/pointset_inspector.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ namespace geode
4141
PointSetInspector< dimension >::PointSetInspector(
4242
const PointSet< dimension >& mesh )
4343
: AddInspectors< PointSet< dimension >,
44-
PointSetColocation< dimension > >{ mesh }
44+
PointSetColocation< dimension > >{ mesh }
4545
{
4646
}
4747

src/geode/inspector/section_inspector.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ namespace geode
4040

4141
SectionInspector::SectionInspector( const Section& section )
4242
: AddInspectors< Section,
43-
SectionMeshesInspector,
44-
SectionTopologyInspector >{ section }
43+
SectionMeshesInspector,
44+
SectionTopologyInspector >{ section }
4545
{
4646
}
4747

src/geode/inspector/solid_inspector.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ namespace geode
4646
SolidMeshInspector< dimension >::SolidMeshInspector(
4747
const SolidMesh< dimension >& mesh )
4848
: AddInspectors< SolidMesh< dimension >,
49-
SolidMeshAdjacency< dimension >,
50-
SolidMeshColocation< dimension >,
51-
SolidMeshDegeneration< dimension >,
52-
SolidMeshVertexManifold< dimension >,
53-
SolidMeshEdgeManifold< dimension >,
54-
SolidMeshFacetManifold< dimension > >{ mesh }
49+
SolidMeshAdjacency< dimension >,
50+
SolidMeshColocation< dimension >,
51+
SolidMeshDegeneration< dimension >,
52+
SolidMeshVertexManifold< dimension >,
53+
SolidMeshEdgeManifold< dimension >,
54+
SolidMeshFacetManifold< dimension > >{ mesh }
5555
{
5656
}
5757
template < index_t dimension >

src/geode/inspector/surface_inspector.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ namespace geode
4545
SurfaceMeshInspector< dimension >::SurfaceMeshInspector(
4646
const SurfaceMesh< dimension >& mesh )
4747
: AddInspectors< SurfaceMesh< dimension >,
48-
SurfaceMeshAdjacency< dimension >,
49-
SurfaceMeshColocation< dimension >,
50-
SurfaceMeshDegeneration< dimension >,
51-
SurfaceMeshEdgeManifold< dimension >,
52-
SurfaceMeshVertexManifold< dimension > >{ mesh }
48+
SurfaceMeshAdjacency< dimension >,
49+
SurfaceMeshColocation< dimension >,
50+
SurfaceMeshDegeneration< dimension >,
51+
SurfaceMeshEdgeManifold< dimension >,
52+
SurfaceMeshVertexManifold< dimension > >{ mesh }
5353
{
5454
}
5555

0 commit comments

Comments
 (0)