summaryrefslogtreecommitdiff
path: root/src/TopOpeBRepDS/TopOpeBRepDS_Reducer.cxx
blob: ce3ac58bcd7554bc47204b59d821d781019a5bf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <TopOpeBRepDS_Reducer.ixx>
#include <TopOpeBRepDS_EIR.hxx>
#include <TopOpeBRepDS_FIR.hxx>
#include <TopOpeBRepDS_EXPORT.hxx>

//=======================================================================
//function : TopOpeBRepDS_Reducer
//purpose  : 
//=======================================================================
TopOpeBRepDS_Reducer::TopOpeBRepDS_Reducer
(const Handle(TopOpeBRepDS_HDataStructure)& HDS) : myHDS(HDS)
{}

//=======================================================================
//function : ProcessEdgeInterferences
//purpose  : 
//=======================================================================
void TopOpeBRepDS_Reducer::ProcessEdgeInterferences()
{
  TopOpeBRepDS_EIR eir(myHDS);
  eir.ProcessEdgeInterferences();
}

//=======================================================================
//function : ProcessFaceInterferences
//purpose  : 
//=======================================================================
void TopOpeBRepDS_Reducer::ProcessFaceInterferences
(const TopOpeBRepDS_DataMapOfShapeListOfShapeOn1State& M)
{
  //modified by NIZHNY-MZV  Tue Nov 16 16:12:15 1999
  //FUN_ds_FEIGb1TO0(myHDS,M); //xpu250199

  TopOpeBRepDS_FIR fir(myHDS);
  fir.ProcessFaceInterferences(M);
}