1 // Copyright (C) 2007-2022 CEA/DEN, EDF R&D, OPEN CASCADE
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 // File: GEOMAlgo_BndSphere.hxx
22 // Author: Peter KURNEV
25 #ifndef _GEOMAlgo_BndSphere_HeaderFile
26 #define _GEOMAlgo_BndSphere_HeaderFile
28 #include <GeomAlgoImpl.h>
30 #include <Standard.hxx>
31 #include <Standard_Macro.hxx>
33 #include <Standard_Real.hxx>
34 #include <Standard_Boolean.hxx>
37 //=======================================================================
38 //class : GEOMAlgo_BndSphere
40 //=======================================================================
41 class GEOMAlgo_BndSphere {
47 virtual ~GEOMAlgo_BndSphere();
49 void SetCenter(const gp_Pnt& theP);
51 const gp_Pnt& Center() const;
53 void SetRadius(const Standard_Real theR);
55 Standard_Real Radius() const;
57 void SetGap(const Standard_Real theGap);
59 Standard_Real Gap() const;
61 void Add(const GEOMAlgo_BndSphere& theOther);
64 Standard_Boolean IsOut(const GEOMAlgo_BndSphere& theOther) const;
66 Standard_Real SquareExtent() const;
70 Standard_Real myRadius;
74 #include <GEOMAlgo_BndSphere.lxx>