]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
FIx error comments
authorlucasjerome <jerome.lucas@cegsenslab.fr>
Fri, 19 Feb 2021 15:48:24 +0000 (16:48 +0100)
committerlucasjerome <jerome.lucas@cegsenslab.fr>
Fri, 19 Feb 2021 15:48:24 +0000 (16:48 +0100)
src/BuildAPI/BuildAPI_Interpolation.cpp
src/BuildAPI/BuildAPI_Interpolation.h
src/BuildPlugin/BuildPlugin_Interpolation.h

index f6ab52589bd4fa16e3a95d51ff215b326ccdcf13..7704e540f3639b572d0644253fa23bba7fbc0142 100644 (file)
@@ -116,14 +116,14 @@ void BuildAPI_Interpolation::setReorder(const bool theIsToReorder)
 
   execIfBaseNotEmpty();
 }
-
+//==================================================================================================
 void BuildAPI_Interpolation::setUseTangents(const bool theIsToUseTangents)
 {
   fillAttribute(theIsToUseTangents ? "true" : "", myuseTangents);
 
   execIfBaseNotEmpty();
 }
-
+//==================================================================================================
 void BuildAPI_Interpolation::setTangents(const ModelHighAPI_Selection& theStartTangent,
                                          const ModelHighAPI_Selection& theEndTangent)
 {
@@ -210,7 +210,7 @@ InterpolationPtr addInterpolation(const std::shared_ptr<ModelAPI_Document>& theP
                                                      theIsClosed,
                                                      theIsToReorder));
 }
-
+//==================================================================================================
 InterpolationPtr addInterpolation(const std::shared_ptr<ModelAPI_Document>& thePart,
                                   const std::string & theXTexpression,
                                   const std::string & theYTexpression,
index ebde245b377483304b4a5feaefa1bff2c0e2ea12..edcdf5e60dec0884892fbc504a63df9c21458c34 100644 (file)
@@ -91,13 +91,13 @@ public:
               zt, BuildPlugin_Interpolation::ZT_ID(),
               ModelAPI_AttributeString, /** zt expression*/,
               mint, BuildPlugin_Interpolation::MINT_ID(),
-              ModelAPI_AttributeDouble, /** zt expression*/,
+              ModelAPI_AttributeDouble, /** min expression*/,
               maxt, BuildPlugin_Interpolation::MAXT_ID(),
-              ModelAPI_AttributeDouble, /** zt expression*/,
+              ModelAPI_AttributeDouble, /** max expression*/,
               numstep, BuildPlugin_Interpolation::NUMSTEP_ID(),
-              ModelAPI_AttributeInteger, /** zt expression*/,
+              ModelAPI_AttributeInteger, /** Number step expression*/,
               creationmethod, BuildPlugin_Interpolation::CREATION_METHOD_ID(),
-              ModelAPI_AttributeString, /** zt expression*/)
+              ModelAPI_AttributeString, /** creation method*/)
 
   /// Modify base attribute of the feature.
   BUILDAPI_EXPORT
@@ -146,7 +146,7 @@ InterpolationPtr addInterpolation(const std::shared_ptr<ModelAPI_Document>& theP
                                   const bool theIsToReorder = false);
 
 /// \ingroup CPPHighAPI
-/// \brief Create Interpolation feature using tangents.
+/// \brief Create Interpolation feature using expression analytical.
 BUILDAPI_EXPORT
 InterpolationPtr addInterpolation(const std::shared_ptr<ModelAPI_Document>& thePart,
                                   const std::string & theXTexpression,
index 0b8c98bce6647a9ca0844cea433be2ba4e188bd0..dac719eb179293526c4e71149b1f36ba608785bf 100644 (file)
@@ -135,14 +135,14 @@ public:
     return MY_MAXT_ID;
   }
 
-  /// attribute of parameter name
+  /// attribute of parameter name of variable
   inline static const std::string& VARIABLE_ID()
   {
     static const std::string MY_VARIABLE_ID("variable");
     return MY_VARIABLE_ID;
   }
 
-  /// attribute of parameter name
+  /// attribute of parameter name of value
   inline static const std::string& VALUE_ID()
   {
     static const std::string MY_VALUE_ID("value");
@@ -156,7 +156,7 @@ public:
     return MY_EXPRESSION_ERROR_ID;
   }
 
-  /// Attribute name of max t.
+  /// Attribute name of number step.
   inline static const std::string& NUMSTEP_ID()
   {
     static const std::string MY_NUMSTEP_ID("numstep");