]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/FeaturesAPI/FeaturesAPI_Scale.h
Salome HOME
updated copyright message
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_Scale.h
index 39463ce54778c0bf0e0a3cd1acd46b6b9964f570..2662c7bc50e18baad722aa255bc9c8aa906666a4 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2023  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 //
 // You should have received a copy of the GNU Lesser General Public
 // License along with this library; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or
-// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 #ifndef FEATURESAPI_SCALE_H_
 
 #include <FeaturesPlugin_Scale.h>
 
+#include <ModelHighAPI_Double.h>
 #include <ModelHighAPI_Interface.h>
 #include <ModelHighAPI_Macro.h>
 
-class ModelHighAPI_Double;
 class ModelHighAPI_Dumper;
 class ModelHighAPI_Selection;
 
@@ -105,14 +104,6 @@ public:
 /// Pointer on Scale object.
 typedef std::shared_ptr<FeaturesAPI_Scale> ScalePtr;
 
-/// \ingroup CPPHighAPI
-/// \brief Create Scale feature.
-FEATURESAPI_EXPORT
-ScalePtr addScale(const std::shared_ptr<ModelAPI_Document>& thePart,
-                  const std::list<ModelHighAPI_Selection>& theMainObjects,
-                  const ModelHighAPI_Selection& theCenterPoint,
-                  const ModelHighAPI_Double& theScaleFactor);
-
 /// \ingroup CPPHighAPI
 /// \brief Create Scale feature.
 FEATURESAPI_EXPORT
@@ -120,7 +111,8 @@ ScalePtr addScale(const std::shared_ptr<ModelAPI_Document>& thePart,
                   const std::list<ModelHighAPI_Selection>& theMainObjects,
                   const ModelHighAPI_Selection& theCenterPoint,
                   const ModelHighAPI_Double& theScaleFactorX,
-                  const ModelHighAPI_Double& theScaleFactorY,
-                  const ModelHighAPI_Double& theScaleFactorZ);
+                  const ModelHighAPI_Double& theScaleFactorY = ModelHighAPI_Double(0.0),
+                  const ModelHighAPI_Double& theScaleFactorZ = ModelHighAPI_Double(0.0),
+                  const bool keepSubResults = false);
 
 #endif // FEATURESAPI_SCALE_H_
\ No newline at end of file