Skip to content

Commit db81d27

Browse files
committed
test
1 parent c0f6e9f commit db81d27

4 files changed

Lines changed: 5 additions & 11 deletions

File tree

bindings/python/src/mesh/helpers/convert_edged_curve.cpp

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,7 @@ namespace geode
3131
{
3232
void define_convert_edged_curve( pybind11::module& module )
3333
{
34-
module
35-
.def( "convert_edged_curve3d_into_2d",
36-
&convert_edged_curve3d_into_2d )
37-
.def( "merge_edged_curves2D", &merge_edged_curves< 2 > )
38-
.def( "merge_edged_curves3D", &merge_edged_curves< 3 > );
34+
module.def(
35+
"convert_edged_curve3d_into_2d", &convert_edged_curve3d_into_2d );
3936
}
4037
} // namespace geode

bindings/python/src/mesh/helpers/convert_solid_mesh.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ namespace geode
3636
.def( "convert_solid_mesh_into_tetrahedral_solid",
3737
&convert_solid_mesh_into_tetrahedral_solid )
3838
.def( "convert_grid_into_tetrahedral_solid",
39-
&convert_grid_into_tetrahedral_solid )
40-
.def( "merge_solid_meshes", &merge_solid_meshes );
39+
&convert_grid_into_tetrahedral_solid );
4140
}
4241
} // namespace geode

bindings/python/src/mesh/helpers/convert_surface_mesh.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ namespace geode
5757
.def( "convert_triangulated_surface2d_into_3d",
5858
&convert_triangulated_surface2d_into_3d )
5959
.def( "convert_triangulated_surface3d_into_2d",
60-
&convert_triangulated_surface3d_into_2d )
61-
.def( "merge_surface_meshes2D", &merge_surface_meshes< 2 > )
62-
.def( "merge_surface_meshes3D", &merge_surface_meshes< 3 > );
60+
&convert_triangulated_surface3d_into_2d );
6361
}
6462
} // namespace geode

cmake/ConfigureGDAL.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ExternalProject_Add(gdal
2727
BINARY_DIR ${GDAL_PATH}/build
2828
STAMP_DIR ${GDAL_PATH}/stamp
2929
GIT_REPOSITORY https://github.com/Geode-solutions/gdal
30-
GIT_TAG b98359e91c94cfc7486b419da3ba828c98fb31c6
30+
GIT_TAG 18102025
3131
GIT_SHALLOW ON
3232
GIT_PROGRESS ON
3333
GIT_CONFIG core.longpaths=true

0 commit comments

Comments
 (0)