1 // File: GeomAlgoAPI_Extrusion.h
2 // Created: 22 October 2014
3 // Author: Sergey Zaritchny
5 #ifndef GeomAlgoAPI_Extrusion_H_
6 #define GeomAlgoAPI_Extrusion_H_
8 #include <GeomAlgoAPI.h>
9 #include <GeomAPI_Shape.h>
10 #include <GeomAPI_Dir.h>
11 #include <ModelAPI_ResultBody.h>
12 #include <GeomAlgoAPI_MakeShape.h>
13 #include <GeomAPI_DataMapOfShapeShape.h>
14 #include <boost/shared_ptr.hpp>
15 /**\class GeomAlgoAPI_Extrusion
17 * \brief Allows to create the prism based on a given face and a direction
20 class GeomAlgoAPI_Extrusion : public GeomAPI_Interface//GeomAlgoAPI_MakeShape
24 /* \brief Creates extrusion for the given shape along the normal for this shape
25 * \param[in] theShape face or wire to be extruded
26 * \param[in] theSize the length of extrusion (if the value is less than 0, the extrusion in opposite normal)
27 * \return a solid or a face which is obtained from specified one
29 static boost::shared_ptr<GeomAPI_Shape> makeExtrusion(boost::shared_ptr<ModelAPI_ResultBody> theResult,
30 boost::shared_ptr<GeomAPI_Shape> theBasis,
31 boost::shared_ptr<GeomAPI_Shape> theContext,
34 GEOMALGOAPI_EXPORT GeomAlgoAPI_Extrusion (boost::shared_ptr<GeomAPI_Shape> theBasis, double theSize);
36 /// Returns True if algorithm succeed
37 GEOMALGOAPI_EXPORT const bool isDone() const;
39 /// Returns True if resulting shape is valid
40 GEOMALGOAPI_EXPORT const bool isValid() const;
42 /// Returns True if resulting shape has volume
43 GEOMALGOAPI_EXPORT const bool hasVolume() const;
45 /// Returns result of the Extrusion algorithm which may be a Solid or a Face
46 GEOMALGOAPI_EXPORT const boost::shared_ptr<GeomAPI_Shape>& shape () const;
48 /// Returns list of shapes generated from theShape
49 // GEOMALGOAPI_EXPORT void generated(const boost::shared_ptr<GeomAPI_Shape> theShape,
50 // ListOfShape& theHistory);
52 /// Returns the first shape
53 GEOMALGOAPI_EXPORT const boost::shared_ptr<GeomAPI_Shape>& firstShape();
55 /// returns last shape
56 GEOMALGOAPI_EXPORT const boost::shared_ptr<GeomAPI_Shape>& lastShape();
58 /// Returns map of sub-shapes of the result
59 GEOMALGOAPI_EXPORT void mapOfShapes (GeomAPI_DataMapOfShapeShape& theMap) const;
61 GEOMALGOAPI_EXPORT GeomAlgoAPI_MakeShape* makeShape () const;
63 GEOMALGOAPI_EXPORT ~GeomAlgoAPI_Extrusion();
65 /// builds resulting shape
66 void build(const boost::shared_ptr<GeomAPI_Shape>& theBasis);
70 boost::shared_ptr<GeomAPI_Shape> myShape;
71 boost::shared_ptr<GeomAPI_Shape> myFirst;
72 boost::shared_ptr<GeomAPI_Shape> myLast;
73 GeomAPI_DataMapOfShapeShape myMap;
74 GeomAlgoAPI_MakeShape * myMkShape;