0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / BRepAlgoAPI / BRepAlgoAPI_Common.cxx
1 // Created on: 1993-10-15
2 // Created by: Remi LEQUETTE
3 // Copyright (c) 1993-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17
18 #include <BOPAlgo_PaveFiller.hxx>
19 #include <BRepAlgoAPI_BooleanOperation.hxx>
20 #include <BRepAlgoAPI_Common.hxx>
21 #include <TopoDS_Shape.hxx>
22
23 //=======================================================================
24 //function : BRepAlgoAPI_Common
25 //purpose  : 
26 //=======================================================================
27 BRepAlgoAPI_Common::BRepAlgoAPI_Common()
28 :
29   BRepAlgoAPI_BooleanOperation()
30 {
31   myOperation=BOPAlgo_COMMON;
32 }
33 //=======================================================================
34 //function : BRepAlgoAPI_Common
35 //purpose  : 
36 //=======================================================================
37 BRepAlgoAPI_Common::BRepAlgoAPI_Common(const BOPAlgo_PaveFiller& aPF)
38 :
39   BRepAlgoAPI_BooleanOperation(aPF)
40 {
41   myOperation=BOPAlgo_COMMON;
42 }
43 //=======================================================================
44 //function : ~BRepAlgoAPI_Common
45 //purpose  : 
46 //=======================================================================
47 BRepAlgoAPI_Common::~BRepAlgoAPI_Common()
48 {
49 }
50 //=======================================================================
51 //function : BRepAlgoAPI_Common
52 //purpose  : 
53 //=======================================================================
54 BRepAlgoAPI_Common::BRepAlgoAPI_Common(const TopoDS_Shape& S1, 
55                                        const TopoDS_Shape& S2)
56 : BRepAlgoAPI_BooleanOperation(S1, S2, BOPAlgo_COMMON)
57 {
58   Build();
59 }
60 //=======================================================================
61 //function : BRepAlgoAPI_Common
62 //purpose  : 
63 //=======================================================================
64 BRepAlgoAPI_Common::BRepAlgoAPI_Common(const TopoDS_Shape& S1, 
65                                        const TopoDS_Shape& S2,
66                                        const BOPAlgo_PaveFiller& aDSF)
67 : BRepAlgoAPI_BooleanOperation(S1, S2, aDSF, BOPAlgo_COMMON)
68 {
69   Build();
70 }
71
72
73