Hello, I opened my STL file via MeshVS_Mesh and with certain display modes I can see nodes and triangles but is there way to select that triangles/surfaces and vertices one by one or multi select in certain area.
Kirill Gavrilov Mon, 11/29/2021 - 12:19
Default selection mode 0 would make MeshVS_Mesh selectable as a whole object. To selection mesh elements you need activating other selection modes like MeshVS_SMF_Element from MeshVS_SelectionModeFlags enumeration with help of AIS_InteractiveContext::SetSelectionModeActive() or using extended AIS_InteractiveContext::Display().
Check description of AIS_InteractiveContext::InitSelected() - it has nothing to do with activating selection. It is a legacy interface to iterate over selected objects.
Hello, I have a question on this topic:
I need to select verteices of the mesh.
I tried this :
m_viewer->getContext()->SetSelectionModeActive(mesh->m_mesh, MeshVS_SMF_Node, Standard_True);
but I am not able click a vertex.
(the same with "MeshVS_SMF_Face" runs fine)
Any suggestion for mesh verteices selection?
Thanks
Mon, 11/29/2021 - 12:19
Default selection mode 0 would make MeshVS_Mesh selectable as a whole object. To selection mesh elements you need activating other selection modes like MeshVS_SMF_Element from MeshVS_SelectionModeFlags enumeration with help of AIS_InteractiveContext::SetSelectionModeActive() or using extended AIS_InteractiveContext::Display().
Mon, 11/29/2021 - 16:07
Hello and thanks for tip but ,I tried this way;
and I tried this
but I couldn't able to click on "face(s)"
Mon, 11/29/2021 - 16:53
That's strange. vselmode command should basically do the same thing and it works in Draw Harness:
Mon, 11/29/2021 - 17:29
I tested with my file as well and yes it is working. Do I need to "init selection" before or after, I'm kind of confused by selection.
Mon, 11/29/2021 - 17:55
Check description of AIS_InteractiveContext::InitSelected() - it has nothing to do with activating selection. It is a legacy interface to iterate over selected objects.
Mon, 11/29/2021 - 18:06
Yeah, I figured that out and also I was able to selected as well, after display object I did SetSelectionModeActive
m_viewer->getContext()->Display(mesh->m_mesh,true);
m_viewer->getContext()->SetSelectionModeActive(mesh->m_mesh, MeshVS_SMF_Face, Standard_True);
Thank you.
Fri, 10/21/2022 - 14:26
Hello, I have a question on this topic:
I need to select verteices of the mesh.
I tried this :
m_viewer->getContext()->SetSelectionModeActive(mesh->m_mesh, MeshVS_SMF_Node, Standard_True);
but I am not able click a vertex.
(the same with "MeshVS_SMF_Face" runs fine)
Any suggestion for mesh verteices selection?
Thanks
Fri, 01/06/2023 - 14:28
occHandle(TColStd_HPackedMapOfInteger) nodes = new TColStd_HPackedMapOfInteger(aMesh->GetDataSource()->GetAllNodes());
aMesh->SetSelectableNodes(nodes);
Fri, 01/06/2023 - 14:28
occHandle(TColStd_HPackedMapOfInteger) nodes = new TColStd_HPackedMapOfInteger(aMesh->GetDataSource()->GetAllNodes());
aMesh->SetSelectableNodes(nodes);
Thu, 08/15/2024 - 10:53
How to get the selected mesh nodes?