Zeke Xiao

Zeke Xiao

github

OpenCASCADE 顯示物件設定不可選中

原有的选中模式代码:

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);
載入中......
此文章數據所有權由區塊鏈加密技術和智能合約保障僅歸創作者所有。