C++ Mesh Edge Count

Hi,

This property gives vertex count of a mesh:
RhinoMesh->m_V.Count ()

This property gives face count of a mesh:
RhinoMesh->m_F.Count ()

And which one gives mesh edge count?

not sure if i can help: but via topology of the mesh ?

https://developer.rhino3d.com/api/cpp/class_o_n___mesh.html#af24a886d37eb19d3525530480e1f18e7

ā†’ Topology ā†’ TopEdgeCount
(Top = Topology )
https://developer.rhino3d.com/api/cpp/class_o_n___mesh_topology.html#a28d6dcdef86b790c72d8e060d5aef982

Thank you