File tree Expand file tree Collapse file tree 10 files changed +0
-19
lines changed
bindings/python/src/mesh/io Expand file tree Collapse file tree 10 files changed +0
-19
lines changed Original file line number Diff line number Diff line change 4747 " is_edged_curve_loadable" + std::to_string( dimension ) + " D" ; \
4848 module .def( \
4949 loadable##dimension.c_str(), &is_edged_curve_loadable< dimension > ); \
50- PYTHON_INPUT_MESH_CLASS ( std::unique_ptr< EdgedCurve< dimension > >, \
51- " EdgedCurve" + std::to_string( dimension ) + "D" ); \
5250 const auto check##dimension = \
5351 " edged_curve_additional_files" + std::to_string( dimension ) + " D" ; \
5452 module .def( check##dimension.c_str(), \
Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ namespace geode
3939 module .def ( " graph_object_priority" , &graph_object_priority );
4040 module .def ( " is_graph_loadable" , &is_graph_loadable );
4141 module .def ( " is_graph_saveable" , &is_graph_saveable );
42- PYTHON_INPUT_MESH_CLASS ( std::unique_ptr< Graph >, " Graph" );
4342 module .def ( " graph_additional_files" , &graph_additional_files );
4443 PYTHON_FACTORY_CLASS ( GraphInputFactory );
4544 PYTHON_FACTORY_CLASS ( GraphOutputFactory );
Original file line number Diff line number Diff line change 4747 " is_hybrid_solid_loadable" + std::to_string( dimension ) + " D" ; \
4848 module .def( \
4949 loadable##dimension.c_str(), &is_hybrid_solid_loadable< dimension > ); \
50- PYTHON_INPUT_MESH_CLASS ( std::unique_ptr< HybridSolid< dimension > >, \
51- " HybridSolid" + std::to_string( dimension ) + "D" ); \
5250 const auto check##dimension = \
5351 " hybrid_solid_additional_files" + std::to_string( dimension ) + " D" ; \
5452 module .def( check##dimension.c_str(), \
Original file line number Diff line number Diff line change 4747 " is_point_set_loadable" + std::to_string( dimension ) + " D" ; \
4848 module .def( \
4949 loadable##dimension.c_str(), &is_point_set_loadable< dimension > ); \
50- PYTHON_INPUT_MESH_CLASS ( std::unique_ptr< PointSet< dimension > >, \
51- " PointSet" + std::to_string( dimension ) + "D" ); \
5250 const auto check##dimension = \
5351 " point_set_additional_files" + std::to_string( dimension ) + " D" ; \
5452 module .def( \
Original file line number Diff line number Diff line change 4848 " is_polygonal_surface_loadable" + std::to_string( dimension ) + " D" ; \
4949 module .def( loadable##dimension.c_str(), \
5050 &is_polygonal_surface_loadable< dimension > ); \
51- PYTHON_INPUT_MESH_CLASS ( std::unique_ptr< PolygonalSurface< dimension > >, \
52- " PolygonalSurface" + std::to_string( dimension ) + "D" ); \
5351 const auto check##dimension = " polygonal_surface_additional_files" \
5452 + std::to_string( dimension ) + " D" ; \
5553 module .def( check##dimension.c_str(), \
Original file line number Diff line number Diff line change 4848 " is_polyhedral_solid_loadable" + std::to_string( dimension ) + " D" ; \
4949 module .def( loadable##dimension.c_str(), \
5050 &is_polyhedral_solid_loadable< dimension > ); \
51- PYTHON_INPUT_MESH_CLASS ( std::unique_ptr< PolyhedralSolid< dimension > >, \
52- " PolyhedralSolid" + std::to_string( dimension ) + "D" ); \
5351 const auto check##dimension = " polyhedral_solid_additional_files" \
5452 + std::to_string( dimension ) + " D" ; \
5553 module .def( check##dimension.c_str(), \
Original file line number Diff line number Diff line change 4848 " is_regular_grid_loadable" + std::to_string( dimension ) + " D" ; \
4949 module .def( \
5050 loadable##dimension.c_str(), &is_regular_grid_loadable< dimension > ); \
51- PYTHON_INPUT_MESH_CLASS ( std::unique_ptr< RegularGrid< dimension > >, \
52- " RegularGrid" + std::to_string( dimension ) + "D" ); \
5351 const auto check##dimension = \
5452 " regular_grid_additional_files" + std::to_string( dimension ) + " D" ; \
5553 module .def( check##dimension.c_str(), \
Original file line number Diff line number Diff line change 4848 " is_tetrahedral_solid_loadable" + std::to_string( dimension ) + " D" ; \
4949 module .def( loadable##dimension.c_str(), \
5050 &is_tetrahedral_solid_loadable< dimension > ); \
51- PYTHON_INPUT_MESH_CLASS ( std::unique_ptr< TetrahedralSolid< dimension > >, \
52- " TetrahedralSolid" + std::to_string( dimension ) + "D" ); \
5351 const auto check##dimension = " tetrahedral_solid_additional_files" \
5452 + std::to_string( dimension ) + " D" ; \
5553 module .def( check##dimension.c_str(), \
Original file line number Diff line number Diff line change 4949 + std::to_string( dimension ) + " D" ; \
5050 module .def( loadable##dimension.c_str(), \
5151 &is_triangulated_surface_loadable< dimension > ); \
52- PYTHON_INPUT_MESH_CLASS ( \
53- std::unique_ptr< TriangulatedSurface< dimension > >, \
54- " TriangulatedSurface" + std::to_string( dimension ) + "D" ); \
5552 const auto check##dimension = " triangulated_surface_additional_files" \
5653 + std::to_string( dimension ) + " D" ; \
5754 module .def( check##dimension.c_str(), \
Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ namespace geode
3939 module .def ( " vertex_set_object_priority" , &vertex_set_object_priority );
4040 module .def ( " is_vertex_set_loadable" , &is_vertex_set_loadable );
4141 module .def ( " is_vertex_set_saveable" , &is_vertex_set_saveable );
42- PYTHON_INPUT_MESH_CLASS ( std::unique_ptr< VertexSet >, " VertexSet" );
4342 module .def (
4443 " vertex_set_additional_files" , &vertex_set_additional_files );
4544 PYTHON_FACTORY_CLASS ( VertexSetInputFactory );
You can’t perform that action at this time.
0 commit comments