The AreaBuilder algorithm is used to reconstruct complex topological objects as Faces or Solids.
More...
|
| | TopOpeBRepBuild_AreaBuilder () |
| |
| | TopOpeBRepBuild_AreaBuilder (TopOpeBRepBuild_LoopSet &LS, TopOpeBRepBuild_LoopClassifier &LC, const bool ForceClass=false) |
| | Creates a AreaBuilder to build the areas on the shapes described by <LS> using the classifier <LC>.
|
| |
| virtual | ~TopOpeBRepBuild_AreaBuilder () |
| |
| virtual void | InitAreaBuilder (TopOpeBRepBuild_LoopSet &LS, TopOpeBRepBuild_LoopClassifier &LC, const bool ForceClass=false) |
| | Sets a AreaBuilder to find the areas on the shapes described by <LS> using the classifier <LC>.
|
| |
| int | InitArea () |
| | Initialize iteration on areas.
|
| |
| bool | MoreArea () const |
| |
| void | NextArea () |
| |
| int | InitLoop () |
| | Initialize iteration on loops of current Area.
|
| |
| bool | MoreLoop () const |
| |
| void | NextLoop () |
| |
| const occ::handle< TopOpeBRepBuild_Loop > & | Loop () const |
| | Returns the current Loop in the current area.
|
| |
| virtual void | ADD_Loop_TO_LISTOFLoop (const occ::handle< TopOpeBRepBuild_Loop > &L, NCollection_List< occ::handle< TopOpeBRepBuild_Loop > > &LOL, void *const s=nullptr) const |
| |
| virtual void | REM_Loop_FROM_LISTOFLoop (NCollection_List< occ::handle< TopOpeBRepBuild_Loop > >::Iterator &ITLOL, NCollection_List< occ::handle< TopOpeBRepBuild_Loop > > &LOL, void *const s=nullptr) const |
| |
| virtual void | ADD_LISTOFLoop_TO_LISTOFLoop (NCollection_List< occ::handle< TopOpeBRepBuild_Loop > > &LOL1, NCollection_List< occ::handle< TopOpeBRepBuild_Loop > > &LOL2, void *const s=nullptr, void *const s1=nullptr, void *const s2=nullptr) const |
| |
The AreaBuilder algorithm is used to reconstruct complex topological objects as Faces or Solids.
- Loop is the composite topological object of the boundary. Wire for a Face. Shell for a Solid.
- LoopSet is a tool describing the object to build. It gives an iteration on Loops. For each Loop it tells if it is on the boundary or if it is an interference.
- LoopClassifier is an algorithm used to test if a Loop is inside another Loop. The result of the reconstruction is an iteration on the reconstructed areas. An area is described by a set of Loops. A AreaBuilder is built with:
- a LoopSet describing the object to reconstruct.
- a LoopClassifier providing the classification algorithm.