使用OpenCASACDE庫實(shí)現(xiàn)HyperMesh中的toggle edge功能
概述
在HyperMesh的幾何清理模塊中,Quick Edit面板下的toggle edge功能非常強(qiáng)大,在HyperMesh幫助文檔中的解釋如下:
Use the lines selector to select line(s).
Left-click a free edge (red) to make it shared (green), or a shared edge to make it suppressed (blue).
Right-click a suppressed edge to make it shared, or a shared edge to make it free.
In either case, the edge must meet the criteria for the type of edge you wish to change it to. For example, toggling a free edge to a shared edge requires the presence of a similar edge within the distance you specify in the tolerance field.
其主要作用就是在容差參數(shù)的控制下,實(shí)現(xiàn)free edge、shared edge?和?suppressed edge之間的正向或逆向轉(zhuǎn)換,邏輯非常清晰、易懂。其中shared edge還分為共享邊和T型邊,這里不做討論。
OpenCASCADE版本:OpenCASCADE-7.4.0-vc14-64
Visual Studio版本:Visual Studio Community 2017
HyperMesh版本:Altair HyperWorks Version 2020

OpenCASCADE中的free edge和shared edge
從free edge和shared edge的定義可知,free edge只和一個(gè)面相關(guān),而shared edge則由兩個(gè)面共享。因此在OpenCASCADE中我們只需要知道這個(gè)edge和幾個(gè)面相關(guān)就可以對(duì)它進(jìn)行判斷。示例代碼如下:

shared edge 到?free edge的轉(zhuǎn)換
想要實(shí)現(xiàn)從shared edge 到?free edge的轉(zhuǎn)換可以借助OpenCASACDE中的BRepBuilderAPI_Copy 和?BRepTools_ReShape 兩個(gè)類,主要思路是復(fù)制這個(gè)shared edge,并使用這個(gè)復(fù)制出來的edge去替代與這個(gè)shared edge相關(guān)的兩個(gè)surface其中之一的對(duì)應(yīng)的edge,這樣這個(gè)原來的shared edge就變成了兩個(gè)free edge。代碼如下:
這里的關(guān)鍵點(diǎn)在于使用復(fù)制出來的edge去替換時(shí)應(yīng)該只應(yīng)用于其中一個(gè)Face,把得到的新的Face再次進(jìn)行替換之后再應(yīng)用到整個(gè)模型。
從free?edge 到?shared edge的轉(zhuǎn)換
把兩個(gè) free?edge 轉(zhuǎn)換為 shared edge,即把兩個(gè)有重合edge的TopoDS_Face通過某種方式轉(zhuǎn)化為TopoDS_Shell,在OpenCASCADE中已經(jīng)提供了這樣的類:BRepBuilderAPI_Sewing,使用方法如下:

總結(jié)
借助BRepBuilderAPI_Copy 和?BRepTools_ReShape我們可以實(shí)現(xiàn)從shared edge 到?free edge的轉(zhuǎn)換,而使用BRepBuilderAPI_Sewing可以使兩個(gè)?free?edge 轉(zhuǎn)換為?shared edge。對(duì) suppress 和 unsuppress 兩個(gè)功能的實(shí)現(xiàn)還需要進(jìn)一步探究。
參考
https://dev.opencascade.org/content/sewing-faces-keep-track-sewed-faces
https://dev.opencascade.org/content/local-sewing-opencascade