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.
2 parents f4ceb1a + 804acc0 commit 3a22677Copy full SHA for 3a22677
bindings/python/src/model/mixin/core/vertex_identifier.cpp
@@ -49,6 +49,7 @@ namespace geode
49
pybind11::class_< ComponentMeshVertex >( module, "ComponentMeshVertex" )
50
.def( pybind11::init< ComponentID, index_t >() )
51
.def( pybind11::self == pybind11::self )
52
+ .def( "string", &ComponentMeshVertex::string )
53
.def_readwrite( "component_id", &ComponentMeshVertex::component_id )
54
.def_readwrite( "vertex", &ComponentMeshVertex::vertex );
55
}
0 commit comments