Salome HOME
updated copyright message
[modules/shaper.git] / src / GeomAlgoImpl / GEOMAlgo_BndSphere.hxx
1 // Copyright (C) 2007-2023  CEA, EDF, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // File:        GEOMAlgo_BndSphere.hxx
21 // Created:     
22 // Author:      Peter KURNEV
23 //              <pkv@irinox>
24
25 #ifndef _GEOMAlgo_BndSphere_HeaderFile
26 #define _GEOMAlgo_BndSphere_HeaderFile
27
28 #include <GeomAlgoImpl.h>
29
30 #include <Standard.hxx>
31 #include <Standard_Macro.hxx>
32 #include <gp_Pnt.hxx>
33 #include <Standard_Real.hxx>
34 #include <Standard_Boolean.hxx>
35
36
37 //=======================================================================
38 //class : GEOMAlgo_BndSphere
39 //purpose  : 
40 //=======================================================================
41 class GEOMAlgo_BndSphere  {
42  public:
43   GEOMALGOIMPL_EXPORT   
44     GEOMAlgo_BndSphere();
45   
46   GEOMALGOIMPL_EXPORT 
47     virtual ~GEOMAlgo_BndSphere();
48   
49   void SetCenter(const gp_Pnt& theP);
50   
51   const gp_Pnt& Center() const;
52   
53   void SetRadius(const Standard_Real theR);
54   
55   Standard_Real Radius() const;
56   
57   void SetGap(const Standard_Real theGap);
58   
59   Standard_Real Gap() const;
60   
61   void Add(const GEOMAlgo_BndSphere& theOther);
62   
63   GEOMALGOIMPL_EXPORT 
64     Standard_Boolean IsOut(const GEOMAlgo_BndSphere& theOther) const;
65   
66   Standard_Real SquareExtent() const;
67
68  protected:
69   gp_Pnt myCenter;
70   Standard_Real myRadius;
71   Standard_Real myGap;
72 };
73
74 #include <GEOMAlgo_BndSphere.lxx>
75
76 #endif