Salome HOME
da6288674e327cb43fc280a1cec0dae5d6f5915c
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_ClsfQuad.hxx
1 // Copyright (C) 2007-2023  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_ClsfQuad.hxx
24 // Created:     Fri Feb 13 16:03:19 2015
25 // Author:      Sergey KHROMOV
26 //
27 //
28 #ifndef _GEOMAlgo_ClsfQuad_HeaderFile
29 #define _GEOMAlgo_ClsfQuad_HeaderFile
30
31
32 #include <GEOMAlgo_Clsf.hxx>
33
34 #include <GeomAdaptor_Surface.hxx>
35 #include <Standard_DefineHandle.hxx>
36
37 #include <vector>
38
39
40 DEFINE_STANDARD_HANDLE(GEOMAlgo_ClsfQuad, GEOMAlgo_Clsf)
41
42 //=======================================================================
43 // class   : GEOMAlgo_ClsfQuad
44 //purpose  :
45 //=======================================================================
46 class GEOMAlgo_ClsfQuad : public GEOMAlgo_Clsf
47 {
48
49 public:
50
51   Standard_EXPORT
52     GEOMAlgo_ClsfQuad();
53
54   Standard_EXPORT
55     virtual ~GEOMAlgo_ClsfQuad();
56
57   Standard_EXPORT
58     void SetCorners(const gp_Pnt &theTopLeftPoint,
59                     const gp_Pnt &theTopRightPoint,
60                     const gp_Pnt &theBottomLeftPoint,
61                     const gp_Pnt &theBottomRightPoint);
62
63   Standard_EXPORT
64     void GetCorners(gp_Pnt &theTopLeftPoint,
65                     gp_Pnt &theTopRightPoint,
66                     gp_Pnt &theBottomLeftPoint,
67                     gp_Pnt &theBottomRightPoint) const;
68
69   Standard_EXPORT
70     virtual  void Perform();
71
72   Standard_EXPORT
73     virtual  void CheckData();
74
75   Standard_EXPORT
76     virtual  Standard_Boolean CanBeON(const Handle(Geom_Curve)& aC) const;
77
78   Standard_EXPORT
79     virtual  Standard_Boolean CanBeON(const Handle(Geom_Surface)& aST) const;
80
81   DEFINE_STANDARD_RTTIEXT(GEOMAlgo_ClsfQuad,GEOMAlgo_Clsf)
82
83 protected:
84
85   bool                              myConcaveQuad;
86   std::vector<bool>                 myConcaveSide;
87   std::vector<gp_Pnt>               myPoints;
88   std::vector<GeomAdaptor_Surface>  myPlanes;
89   gp_Vec                            myQuadNormal;
90
91 };
92 #endif