]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/GeomAlgoAPI/GeomAlgoAPI_Extrusion.h
Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_Extrusion.h
index a41ae8db4c3d7f9c9ab2a1b27b59a95d1b79ec33..31b3d4406378d519d1f7b78d4c79c3c83c3c66d9 100644 (file)
 
 class GEOMALGOAPI_EXPORT GeomAlgoAPI_Extrusion
 {
-public:
+ public:
   /* \brief Creates extrusion for the given shape
    * \param[in] theShape face or wire to be extruded
    * \param[in] theDir   direction of extrusion
    * \param[in] theSize  the length of extrusion (if the value is less than 0, the extrusion in opposite direction)
    * \return a solid or a face which is obtained from specified one
    */
-  static boost::shared_ptr<GeomAPI_Shape> makeExtrusion(
-                        boost::shared_ptr<GeomAPI_Shape> theShape,
-                        boost::shared_ptr<GeomAPI_Dir>   theDir,
-                        double                           theSize);
+  static boost::shared_ptr<GeomAPI_Shape> makeExtrusion(boost::shared_ptr<GeomAPI_Shape> theShape,
+                                                        boost::shared_ptr<GeomAPI_Dir> theDir,
+                                                        double theSize);
 
   /* \brief Creates extrusion for the given shape along the normal for this shape
    * \param[in] theShape face or wire to be extruded
    * \param[in] theSize  the length of extrusion (if the value is less than 0, the extrusion in opposite normal)
    * \return a solid or a face which is obtained from specified one
    */
-  static boost::shared_ptr<GeomAPI_Shape> makeExtrusion(
-                        boost::shared_ptr<GeomAPI_Shape> theShape,
-                        double                           theSize);
+  static boost::shared_ptr<GeomAPI_Shape> makeExtrusion(boost::shared_ptr<GeomAPI_Shape> theShape,
+                                                        double theSize);
 };
 
 #endif