原有的选中模式代码:
static Standard_Integer SelectionMode (const TopAbs_ShapeEnum theShapeType)
{
switch (theShapeType)
{
case TopAbs_VERTEX: return 1;
case TopAbs_EDGE: return 2;
case TopAbs_WIRE: return 3;
case TopAbs_FACE: return 4;
case TopAbs_SHELL: return 5;
case TopAbs_SOLID: return 6;
case TopAbs_COMPSOLID: return 7;
case TopAbs_COMPOUND: return 8;
case TopAbs_SHAPE: return 0;
}
return 0;
}
例如: AIS_Shape::SelectionMode(TopAbs_EDGE)
选中模式为邊線
調用 AIS_InteractiveContext::Display 時設置 -1 ,則對象無法選中
myContext->Display(theObjects,
AIS_Shaded,
selectable ? AIS_Shape::SelectionMode(TopAbs_EDGE) : -1,
Standard_True);