]> SALOME platform Git repositories - plugins/blsurfplugin.git/commitdiff
Salome HOME
0019941: EDF 766 SMESH : Max length hypothesis BR_V5_DEV
authoreap <eap@opencascade.com>
Fri, 23 Jan 2009 14:10:06 +0000 (14:10 +0000)
committereap <eap@opencascade.com>
Fri, 23 Jan 2009 14:10:06 +0000 (14:10 +0000)
-  virtual bool SetParametersByElementSize(double elemLenght, const SMESH_Mesh* theMesh=0)=0;
+  virtual bool SetParametersByDefaults(const TDefaults& dflts, const SMESH_Mesh* theMesh=0)=0;

src/BLSURFPlugin/BLSURFPlugin_Hypothesis.cxx
src/BLSURFPlugin/BLSURFPlugin_Hypothesis.hxx

index 9fb211a51837534ed42dce4f6f082b4fdf9ea3af..ad3536512a9449f37acabbefc7bf46ed1a794e7b 100644 (file)
@@ -507,15 +507,15 @@ bool BLSURFPlugin_Hypothesis::SetParametersByMesh(const SMESH_Mesh*   theMesh,
 
 //=============================================================================
 /*!
- * \brief Initialize my parameter values by linear size of mesh element.
+ * \brief Initialize my parameter values by default parameters.
  *  \retval bool - true if parameter values have been successfully defined
  */
 //=============================================================================
 
-bool BLSURFPlugin_Hypothesis::SetParametersByElementSize( double            elemLenght,
-                                                          const SMESH_Mesh* theMesh)
+bool BLSURFPlugin_Hypothesis::SetParametersByDefaults(const TDefaults&   dflts,
+                                                      const SMESH_Mesh* theMesh)
 {
-  return bool( _phySize = elemLenght );
+  return bool( _phySize = dflts._elemLength );
 }
 
 //=============================================================================
index 44f1055de5b3bd4952dd947e475bcf345c2cd834..a8fb7d2841f585c1287f5b9d6e78dabde3014d1a 100644 (file)
@@ -135,10 +135,10 @@ public:
   virtual bool SetParametersByMesh(const SMESH_Mesh* theMesh, const TopoDS_Shape& theShape);
 
   /*!
-   * \brief Initialize my parameter values by linear size of mesh element.
+   * \brief Initialize my parameter values by default parameters.
    *  \retval bool - true if parameter values have been successfully defined
    */
-  virtual bool SetParametersByElementSize( double elemLenght, const SMESH_Mesh* theMesh=0);
+  virtual bool SetParametersByDefaults(const TDefaults& dflts, const SMESH_Mesh* theMesh=0);
 
 private:
   Topology      _topology;