Skip to content

Commit

Permalink
define inside python module
Browse files Browse the repository at this point in the history
  • Loading branch information
BenPinet committed Jun 4, 2024
1 parent 34abf60 commit 1402655
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bindings/python/src/mesh/mesh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ namespace geode
void define_geometrical_operations_on_mesh( pybind11::module& );
void define_gradient_computation( pybind11::module& module );
void define_mesh_crs_helper( pybind11::module& );
void define_rasterize( pybind11::module& );

void define_vertex_set_io( pybind11::module& );
void define_graph_io( pybind11::module& );
Expand Down Expand Up @@ -162,6 +163,7 @@ PYBIND11_MODULE( opengeode_py_mesh, module )
geode::define_geometrical_operations_on_mesh( module );
geode::define_gradient_computation( module );
geode::define_mesh_crs_helper( module );
geode::define_rasterize( module );

geode::define_vertex_set_io( module );
geode::define_graph_io( module );
Expand Down

0 comments on commit 1402655

Please sign in to comment.