We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74b9fac commit 57a3185Copy full SHA for 57a3185
bindings/python/requirements.txt
@@ -2,7 +2,7 @@
2
# This file is autogenerated by pip-compile with Python 3.10
3
# by the following command:
4
#
5
-# pip-compile bindings/python/requirements.in
+# pip-compile --pre bindings/python/requirements.in
6
7
-opengeode-core==15.*,>=15.0.1
+opengeode-core==15.*,>=15.4.0
8
# via -r bindings/python/requirements.in
src/geode/inspector/criterion/colocation/edgedcurve_colocation.cpp
@@ -38,7 +38,7 @@ namespace geode
38
public:
39
Impl( const EdgedCurve< dimension >& mesh )
40
: internal::ColocationImpl< dimension, EdgedCurve< dimension > >(
41
- mesh )
+ mesh )
42
{
43
}
44
};
src/geode/inspector/criterion/colocation/pointset_colocation.cpp
Impl( const PointSet< dimension >& mesh )
: internal::ColocationImpl< dimension, PointSet< dimension > >(
src/geode/inspector/criterion/colocation/solid_colocation.cpp
Impl( const SolidMesh< dimension >& mesh )
: internal::ColocationImpl< dimension, SolidMesh< dimension > >(
src/geode/inspector/criterion/colocation/surface_colocation.cpp
Impl( const SurfaceMesh< dimension >& mesh )
: internal::ColocationImpl< dimension, SurfaceMesh< dimension > >(
src/geode/inspector/criterion/intersections/model_intersections.cpp
@@ -92,7 +92,7 @@ namespace
92
mesh2_( same_surface_
93
? mesh1_
94
: surface2_.template mesh<
95
- geode::TriangulatedSurface< Model::dim > >() )
+ geode::TriangulatedSurface< Model::dim > >() )
96
97
98
@@ -170,7 +170,7 @@ namespace
170
const geode::uuid& surface_id1,
171
const geode::uuid& surface_id2 )
172
: ModelSurfacesIntersectionBase< Model >(
173
- model, surface_id1, surface_id2 ),
+ model, surface_id1, surface_id2 ),
174
same_surface_{ surface_id1 == surface_id2 }
175
176
@@ -208,7 +208,7 @@ namespace
208
209
210
211
212
213
214
src/geode/inspector/edgedcurve_inspector.cpp
@@ -42,8 +42,8 @@ namespace geode
EdgedCurveInspector< dimension >::EdgedCurveInspector(
const EdgedCurve< dimension >& mesh )
: AddInspectors< EdgedCurve< dimension >,
45
- EdgedCurveColocation< dimension >,
46
- EdgedCurveDegeneration< dimension > >{ mesh }
+ EdgedCurveColocation< dimension >,
+ EdgedCurveDegeneration< dimension > >{ mesh }
47
48
49
src/geode/inspector/pointset_inspector.cpp
@@ -41,7 +41,7 @@ namespace geode
PointSetInspector< dimension >::PointSetInspector(
const PointSet< dimension >& mesh )
: AddInspectors< PointSet< dimension >,
- PointSetColocation< dimension > >{ mesh }
+ PointSetColocation< dimension > >{ mesh }
src/geode/inspector/section_inspector.cpp
@@ -40,8 +40,8 @@ namespace geode
SectionInspector::SectionInspector( const Section& section )
: AddInspectors< Section,
- SectionMeshesInspector,
- SectionTopologyInspector >{ section }
+ SectionMeshesInspector,
+ SectionTopologyInspector >{ section }
src/geode/inspector/solid_inspector.cpp
@@ -46,12 +46,12 @@ namespace geode
SolidMeshInspector< dimension >::SolidMeshInspector(
const SolidMesh< dimension >& mesh )
: AddInspectors< SolidMesh< dimension >,
- SolidMeshAdjacency< dimension >,
50
- SolidMeshColocation< dimension >,
51
- SolidMeshDegeneration< dimension >,
52
- SolidMeshVertexManifold< dimension >,
53
- SolidMeshEdgeManifold< dimension >,
54
- SolidMeshFacetManifold< dimension > >{ mesh }
+ SolidMeshAdjacency< dimension >,
+ SolidMeshColocation< dimension >,
+ SolidMeshDegeneration< dimension >,
+ SolidMeshVertexManifold< dimension >,
+ SolidMeshEdgeManifold< dimension >,
+ SolidMeshFacetManifold< dimension > >{ mesh }
55
56
57
template < index_t dimension >
0 commit comments