]> SALOME platform Git repositories - modules/geom.git/blob - src/NMTDS/NMTDS_BndSphere.hxx
Salome HOME
Mantis issue 0020662: MakeGlueFaces produces an invalid shape. A fix by PKV.
[modules/geom.git] / src / NMTDS / NMTDS_BndSphere.hxx
1 // File generated by CPPExt (Value)
2 //
3 //                     Copyright (C) 1991 - 2000 by  
4 //                      Matra Datavision SA.  All rights reserved.
5 //  
6 //                     Copyright (C) 2001 - 2004 by
7 //                     Open CASCADE SA.  All rights reserved.
8 // 
9 // This file is part of the Open CASCADE Technology software.
10 //
11 // This software may be distributed and/or modified under the terms and
12 // conditions of the Open CASCADE Public License as defined by Open CASCADE SA
13 // and appearing in the file LICENSE included in the packaging of this file.
14 //  
15 // This software is distributed on an "AS IS" basis, without warranty of any
16 // kind, and Open CASCADE SA hereby disclaims all such warranties,
17 // including without limitation, any warranties of merchantability, fitness
18 // for a particular purpose or non-infringement. Please see the License for
19 // the specific terms and conditions governing rights and limitations under the
20 // License.
21
22 #ifndef _NMTDS_BndSphere_HeaderFile
23 #define _NMTDS_BndSphere_HeaderFile
24
25 #ifndef _gp_Pnt_HeaderFile
26 #include <gp_Pnt.hxx>
27 #endif
28 #ifndef _Standard_Real_HeaderFile
29 #include <Standard_Real.hxx>
30 #endif
31 #ifndef _Standard_Boolean_HeaderFile
32 #include <Standard_Boolean.hxx>
33 #endif
34 class gp_Pnt;
35
36
37 #ifndef _Standard_HeaderFile
38 #include <Standard.hxx>
39 #endif
40 #ifndef _Standard_Macro_HeaderFile
41 #include <Standard_Macro.hxx>
42 #endif
43
44
45 class NMTDS_BndSphere  {
46
47 public:
48
49     void* operator new(size_t,void* anAddress) 
50       {
51         return anAddress;
52       }
53     void* operator new(size_t size) 
54       { 
55         return Standard::Allocate(size); 
56       }
57     void  operator delete(void *anAddress) 
58       { 
59         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
60       }
61  // Methods PUBLIC
62  // 
63
64
65 Standard_EXPORT NMTDS_BndSphere();
66 Standard_EXPORT virtual ~NMTDS_BndSphere();
67
68   void SetCenter(const gp_Pnt& theP) ;
69
70  const gp_Pnt& Center() const;
71
72   void SetRadius(const Standard_Real theR) ;
73
74   Standard_Real Radius() const;
75
76   void SetGap(const Standard_Real theGap) ;
77
78   Standard_Real Gap() const;
79
80   void Add(const NMTDS_BndSphere& theOther) ;
81
82
83 Standard_EXPORT   Standard_Boolean IsOut(const NMTDS_BndSphere& theOther) const;
84
85   Standard_Real SquareExtent() const;
86
87
88
89
90
91 protected:
92
93  // Methods PROTECTED
94  // 
95
96
97  // Fields PROTECTED
98  //
99 gp_Pnt myCenter;
100 Standard_Real myRadius;
101 Standard_Real myGap;
102
103
104 private: 
105
106  // Methods PRIVATE
107  // 
108
109
110  // Fields PRIVATE
111  //
112
113
114 };
115
116
117 #include <NMTDS_BndSphere.lxx>
118
119
120
121 // other Inline functions and methods (like "C++: function call" methods)
122 //
123
124
125 #endif