Salome HOME
Copyright update 2020
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_BndSphere.hxx
1 // Copyright (C) 2007-2020  CEA/DEN, EDF R&D, 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 <Standard.hxx>
29 #include <Standard_Macro.hxx>
30 #include <gp_Pnt.hxx>
31 #include <Standard_Real.hxx>
32 #include <Standard_Boolean.hxx>
33
34 //=======================================================================
35 //class : GEOMAlgo_BndSphere
36 //purpose  : 
37 //=======================================================================
38 class GEOMAlgo_BndSphere  {
39  public:
40   Standard_EXPORT   
41     GEOMAlgo_BndSphere();
42   
43   Standard_EXPORT 
44     virtual ~GEOMAlgo_BndSphere();
45   
46   void SetCenter(const gp_Pnt& theP) ;
47   
48   const gp_Pnt& Center() const;
49   
50   void SetRadius(const Standard_Real theR) ;
51   
52   Standard_Real Radius() const;
53   
54   void SetGap(const Standard_Real theGap) ;
55   
56   Standard_Real Gap() const;
57   
58   void Add(const GEOMAlgo_BndSphere& theOther) ;
59   
60   Standard_EXPORT 
61     Standard_Boolean IsOut(const GEOMAlgo_BndSphere& theOther) const;
62   
63   Standard_Real SquareExtent() const;
64
65  protected:
66   gp_Pnt myCenter;
67   Standard_Real myRadius;
68   Standard_Real myGap;
69 };
70
71 #include <GEOMAlgo_BndSphere.lxx>
72
73 #endif