0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / BRepAlgoAPI / BRepAlgoAPI_Cut.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_Cut.hxx>
21 #include <TopoDS_Shape.hxx>
22
23 //=======================================================================
24 //function : BRepAlgoAPI_Cut
25 //purpose  : 
26 //=======================================================================
27 BRepAlgoAPI_Cut::BRepAlgoAPI_Cut()
28 :
29   BRepAlgoAPI_BooleanOperation()
30 {
31   myOperation=BOPAlgo_CUT;
32 }
33 //=======================================================================
34 //function : BRepAlgoAPI_Cut
35 //purpose  : 
36 //=======================================================================
37 BRepAlgoAPI_Cut::BRepAlgoAPI_Cut(const BOPAlgo_PaveFiller& aPF)
38 :
39   BRepAlgoAPI_BooleanOperation(aPF)
40 {
41   myOperation=BOPAlgo_CUT;
42 }
43 //=======================================================================
44 //function : ~BRepAlgoAPI_Cut
45 //purpose  : 
46 //=======================================================================
47 BRepAlgoAPI_Cut::~BRepAlgoAPI_Cut()
48 {
49 }
50 //=======================================================================
51 //function : BRepAlgoAPI_Cut
52 //purpose  : 
53 //=======================================================================
54 BRepAlgoAPI_Cut::BRepAlgoAPI_Cut(const TopoDS_Shape& S1, 
55                                  const TopoDS_Shape& S2)
56 :
57   BRepAlgoAPI_BooleanOperation(S1, S2, BOPAlgo_CUT)
58 {
59   Build();
60 }
61 //=======================================================================
62 //function : BRepAlgoAPI_Cut
63 //purpose  : 
64 //=======================================================================
65 BRepAlgoAPI_Cut::BRepAlgoAPI_Cut(const TopoDS_Shape& S1, 
66                                  const TopoDS_Shape& S2,
67                                  const BOPAlgo_PaveFiller& aDSF,
68                                  const Standard_Boolean bFWD)
69
70   BRepAlgoAPI_BooleanOperation(S1, S2, aDSF, 
71                                (bFWD) ? BOPAlgo_CUT : BOPAlgo_CUT21)
72 {
73   Build();
74 }