I’m interested in using the mesh_select_face()
https://compas-dev.github.io/main/api/generated/compas_rhino.helpers.mesh_select_face.html?highlight=select_face#compas_rhino.helpers.mesh_select_face
The mesh whose face I need to select has joined faces created by setting MeshArtist Join value to True
In this case the option to hold down Ctrl+Shift+Click to sub select the face of the joined mesh is not possible. The selection seems to works only when the mesh is split.
Currently I am using a RhinoCommon method to select the face, from which I get the guid.
But I primarily want to retrieve the face Id of the selected mesh face as the mesh_select_face() command would return
I have also referred the source script of Face_selector
https://compas-dev.github.io/main/_modules/compas_rhino/selectors/faceselector.html#FaceSelector.select_face
Wondering if its possible to select a face of a mesh with joined faces through compas.
Thanks in advance