Search results

  1. W

    Twin TopoDS_Edge

    Hi Guys, Is there any way to detect and select an Edge which is someway connected to another Edge? The edges can not be connected via makeWire methods. When one of the edges is higlighted via mouse move, the other will be higlighted. It is like quantum entanglement :)). I thought reediting...
  2. W

    AIS_PointCloud Point Selection and get the information

    Hi again natalia, I tried but did not really focus on that because selecting points is not user friendly as I imagined. If I find anything that will help ones who are reading this thread, I will post the code.
  3. W

    AIS_PointCloud Point Selection and get the information

    Hi natalia, Thanks for reply. I really appreciate. To get the coordinates from the map, I add some codes. I hope it is useful for those who face the problem. for (m_context->InitSelected(); m_context->MoreSelected(); m_context->NextSelected()) { const Handle(SelectMgr_EntityOwner) owner =...
  4. W

    AIS_PointCloud Point Selection and get the information

    Hi, Is there any way to select some points in AIS_PointCloud(Selection mode is SM_SubsetOfPoints)? Actually, AIS_PointCloudOwner::SelectedPoints() method should work but I couldn't get the information when I select a point with mouseClick. Can you help me? Thanks, Emre
  5. W

    HLR Mode Get TopoDS_Edges

    Thank you very much! Using TopExp_Explorer, BRepAdaptor_Curve and GCPnts_UniformAbscissa classes, I am able to get point cloud with specific tolerance.
  6. W

    HLR Mode Get TopoDS_Edges

    Hi! Is it possible to get edges of solid which are shown in HLR mode(not hidden ones)? In V3d_View class, HLR mode is displayed via setComputedMode function but there is no return. I think it is some kind of signal when triggered it just computes HLR algorithm and displays relevant shapes. I...
Top