0022312: Translation of french commentaries in OCCT files
[occt.git] / src / Bnd / Bnd_Sphere.lxx
1
2 inline Standard_Integer Bnd_Sphere::U() const
3 {
4   return myU;
5 }
6
7 inline Standard_Integer Bnd_Sphere::V() const
8 {
9   return myV;
10 }
11
12 inline Standard_Boolean Bnd_Sphere::IsValid() const
13 {
14   return myIsValid;
15 }
16
17 inline void Bnd_Sphere::SetValid(const Standard_Boolean isValid)
18 {
19   myIsValid = isValid;
20 }
21
22 inline const gp_XYZ& Bnd_Sphere::Center() const
23
24   return myCenter; 
25 }
26
27 inline Standard_Real Bnd_Sphere::Radius() const
28
29   return myRadius; 
30 }