Salome HOME
562eb19d68952a7c1ab7645004b603a8227214c1
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_ClsfBox.hxx
1 // Copyright (C) 2007-2021  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // File:        GEOMAlgo_ClsfBox.hxx
24 // Created:     Wed Nov 22 10:41:47 2006
25 // Author:      Peter KURNEV
26 //              <pkv@irinox>
27 //
28 #ifndef _GEOMAlgo_ClsfBox_HeaderFile
29 #define _GEOMAlgo_ClsfBox_HeaderFile
30
31 #include <Standard.hxx>
32 #include <Standard_DefineHandle.hxx>
33
34 #include <TopoDS_Shape.hxx>
35 #include <GeomAdaptor_Surface.hxx>
36 #include <GEOMAlgo_Clsf.hxx>
37 #include <Standard_Boolean.hxx>
38 #include <Geom_Curve.hxx>
39 #include <Geom_Surface.hxx>
40
41 DEFINE_STANDARD_HANDLE(GEOMAlgo_ClsfBox, GEOMAlgo_Clsf)
42
43 //=======================================================================
44 //function : GEOMAlgo_ClsfBox
45 //purpose  :
46 //=======================================================================
47 class GEOMAlgo_ClsfBox : public GEOMAlgo_Clsf
48 {
49  public:
50   Standard_EXPORT
51     GEOMAlgo_ClsfBox();
52
53   Standard_EXPORT
54     virtual ~GEOMAlgo_ClsfBox();
55
56   Standard_EXPORT
57     void SetBox(const TopoDS_Shape& aS) ;
58
59   Standard_EXPORT
60     const TopoDS_Shape& Box() const;
61
62   Standard_EXPORT
63     virtual  void Perform() ;
64
65   Standard_EXPORT
66     virtual  void CheckData() ;
67
68   Standard_EXPORT
69     virtual  Standard_Boolean CanBeON(const Handle(Geom_Curve)& aC) const;
70
71   Standard_EXPORT
72     virtual  Standard_Boolean CanBeON(const Handle(Geom_Surface)& aST) const;
73
74   DEFINE_STANDARD_RTTIEXT(GEOMAlgo_ClsfBox,GEOMAlgo_Clsf)
75
76  protected:
77   TopoDS_Shape myBox;
78   GeomAdaptor_Surface myGAS[6];
79
80
81 private:
82
83
84
85
86 };
87
88
89
90
91
92 // other Inline functions and methods (like "C++: function call" methods)
93
94
95 #endif