Hello.
I found very strange problem with curve (BSpline) selection. I create a BSpline, make from this curve an edge and display it. When I open local context
myAISContext->ActivateStandardMode(TopAbs_EDGE),
curve selection works very strange. The curve is highligted when the mouse is far from the object. Below follows the code of the edge creation :
Handle(AIS_Shape) aCrv = new AIS_Shape(ME.Edge());
myAISContext->SetDisplayMode(aCrv,1);
myAISContext->Display(aCrv, Standard_True);
Discussion
1 archived reply
Posts are displayed in their archived order.
01Commenter-1
I have the same problem.
If the selectable type is EDGE or WIRE, the problem is up.
myAISContext->ActivateStandardMode(TopAbs_EDGE),
myAISContext->ActivateStandardMode(TopAbs_WIRE),
But if the selectable type is VERTEX, no problem.