Salome HOME
Update copyright
[modules/geom.git] / src / NMTDS / NMTDS_BndSphere.hxx
1 // Copyright (C) 2007-2011  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.
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 #ifndef _NMTDS_BndSphere_HeaderFile
21 #define _NMTDS_BndSphere_HeaderFile
22
23 #ifndef _gp_Pnt_HeaderFile
24 #include <gp_Pnt.hxx>
25 #endif
26 #ifndef _Standard_Real_HeaderFile
27 #include <Standard_Real.hxx>
28 #endif
29 #ifndef _Standard_Boolean_HeaderFile
30 #include <Standard_Boolean.hxx>
31 #endif
32 class gp_Pnt;
33
34
35 #ifndef _Standard_HeaderFile
36 #include <Standard.hxx>
37 #endif
38 #ifndef _Standard_Macro_HeaderFile
39 #include <Standard_Macro.hxx>
40 #endif
41
42
43 class NMTDS_BndSphere  {
44
45 public:
46
47     void* operator new(size_t,void* anAddress) 
48       {
49         return anAddress;
50       }
51     void* operator new(size_t size) 
52       { 
53         return Standard::Allocate(size); 
54       }
55     void  operator delete(void *anAddress) 
56       { 
57         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
58       }
59  // Methods PUBLIC
60  // 
61
62
63 Standard_EXPORT NMTDS_BndSphere();
64 Standard_EXPORT virtual ~NMTDS_BndSphere();
65
66   void SetCenter(const gp_Pnt& theP) ;
67
68  const gp_Pnt& Center() const;
69
70   void SetRadius(const Standard_Real theR) ;
71
72   Standard_Real Radius() const;
73
74   void SetGap(const Standard_Real theGap) ;
75
76   Standard_Real Gap() const;
77
78   void Add(const NMTDS_BndSphere& theOther) ;
79
80
81 Standard_EXPORT   Standard_Boolean IsOut(const NMTDS_BndSphere& theOther) const;
82
83   Standard_Real SquareExtent() const;
84
85
86
87
88
89 protected:
90
91  // Methods PROTECTED
92  // 
93
94
95  // Fields PROTECTED
96  //
97 gp_Pnt myCenter;
98 Standard_Real myRadius;
99 Standard_Real myGap;
100
101
102 private: 
103
104  // Methods PRIVATE
105  // 
106
107
108  // Fields PRIVATE
109  //
110
111
112 };
113
114
115 #include <NMTDS_BndSphere.lxx>
116
117
118
119 // other Inline functions and methods (like "C++: function call" methods)
120 //
121
122
123 #endif