Skip to content

Commit 3a22677

Browse files
authored
Merge pull request #913 from Geode-solutions/fix/missing-cmv-string-python
fix(Python): missing print function for ComponentMeshVertex
2 parents f4ceb1a + 804acc0 commit 3a22677

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

bindings/python/src/model/mixin/core/vertex_identifier.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ namespace geode
4949
pybind11::class_< ComponentMeshVertex >( module, "ComponentMeshVertex" )
5050
.def( pybind11::init< ComponentID, index_t >() )
5151
.def( pybind11::self == pybind11::self )
52+
.def( "string", &ComponentMeshVertex::string )
5253
.def_readwrite( "component_id", &ComponentMeshVertex::component_id )
5354
.def_readwrite( "vertex", &ComponentMeshVertex::vertex );
5455
}

0 commit comments

Comments
 (0)