Salome HOME
725dae3322c36c8e5105c824fdbe13d26857c60f
[modules/shaper.git] / src / GeomAPI / GeomAPI_Solid.h
1 // Copyright (C) 2018-2021  CEA/DEN, EDF R&D
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 #ifndef GeomAPI_Solid_H_
21 #define GeomAPI_Solid_H_
22
23 #include <GeomAPI_Shape.h>
24
25 class GeomAPI_Sphere;
26 class GeomAPI_Cylinder;
27 class GeomAPI_Cone;
28 class GeomAPI_Torus;
29 class GeomAPI_Box;
30
31 /// \class GeomAPI_Solid
32 /// \ingroup DataModel
33 /// \brief Interface to the solid object
34 class GeomAPI_Solid: public GeomAPI_Shape
35 {
36 public:
37   /// Makes an undefined solid.
38   GEOMAPI_EXPORT GeomAPI_Solid();
39
40   /// Creation of solid by the solid-shape
41   GEOMAPI_EXPORT GeomAPI_Solid(const std::shared_ptr<GeomAPI_Shape>& theShape);
42
43   /// Returns sphere if the solid is only bounded by faces
44   /// which are based on the same spherical surface
45   GEOMAPI_EXPORT std::shared_ptr<GeomAPI_Sphere> getSphere() const;
46
47   /// Returns cylinder if the solid is bounded by faces based on the same cylindrical surface
48   /// and a pair of parallel planar faces
49   GEOMAPI_EXPORT std::shared_ptr<GeomAPI_Cylinder> getCylinder() const;
50
51   /// Returns cone if the solid is bounded by faces based on the same conical surface
52   /// and a pair of parallel planar faces
53   GEOMAPI_EXPORT std::shared_ptr<GeomAPI_Cone> getCone() const;
54
55   /// Returns torus if the shell solid is only bounded by faces
56   /// which are based on the same toroidal surface
57   GEOMAPI_EXPORT std::shared_ptr<GeomAPI_Torus> getTorus() const;
58
59   /// Returns box if the solid is bounded by 6 rectangular faces composing a box
60   GEOMAPI_EXPORT std::shared_ptr<GeomAPI_Box> getParallelepiped() const;
61
62   /// Return inner point in the solid
63   GEOMAPI_EXPORT virtual std::shared_ptr<GeomAPI_Pnt> middlePoint() const;
64 };
65
66 typedef std::shared_ptr<GeomAPI_Solid> GeomSolidPtr;
67
68 #endif