From 5c933ecde0251d3c4894d0cdeab8dc67b6c4c3a5 Mon Sep 17 00:00:00 2001 From: eap Date: Mon, 26 Dec 2005 10:34:54 +0000 Subject: [PATCH] PAL10953. Add Fineness parameter to Automatic Length hypothesis --- idl/SMESH_BasicHypothesis.idl | 10 + src/SMESH_I/SMESH_2smeshpy.cxx | 3 +- src/SMESH_SWIG/smesh.py | 7 +- src/StdMeshers/StdMeshers_AutomaticLength.cxx | 32 +++- src/StdMeshers/StdMeshers_AutomaticLength.hxx | 20 ++ .../StdMeshersGUI_CreateStdHypothesisDlg.cxx | 2 + .../StdMeshersGUI_Parameters.cxx | 181 ++++++++++++++++-- src/StdMeshersGUI/StdMeshersGUI_Parameters.h | 28 ++- src/StdMeshersGUI/StdMeshers_images.po | 8 +- src/StdMeshersGUI/StdMeshers_msg_en.po | 12 ++ .../StdMeshers_AutomaticLength_i.cxx | 55 +++--- .../StdMeshers_AutomaticLength_i.hxx | 18 +- 12 files changed, 307 insertions(+), 69 deletions(-) diff --git a/idl/SMESH_BasicHypothesis.idl b/idl/SMESH_BasicHypothesis.idl index 2405cd4b2..3d5c227ce 100644 --- a/idl/SMESH_BasicHypothesis.idl +++ b/idl/SMESH_BasicHypothesis.idl @@ -58,6 +58,16 @@ module StdMeshers */ interface StdMeshers_AutomaticLength : SMESH::SMESH_Hypothesis { + /*! + * Sets Fineness parameter value + */ + void SetFineness(in double theFineness) + raises (SALOME::SALOME_Exception); + + /*! + * Returns parameter value + */ + double GetFineness(); }; /*! diff --git a/src/SMESH_I/SMESH_2smeshpy.cxx b/src/SMESH_I/SMESH_2smeshpy.cxx index 9526b7528..6d8150db8 100644 --- a/src/SMESH_I/SMESH_2smeshpy.cxx +++ b/src/SMESH_I/SMESH_2smeshpy.cxx @@ -667,6 +667,7 @@ Handle(_pyHypothesis) _pyHypothesis::NewHypothesis( const Handle(_pyCommand)& th hyp->myDim = 1; hyp->myCreationMethod = "AutomaticLength"; hyp->myType = "Regular_1D"; + hyp->myArgMethods.Append( "SetFineness"); } // 1D Python_1D ---------- else if ( hypType == "Python_1D" ) { @@ -704,7 +705,7 @@ Handle(_pyHypothesis) _pyHypothesis::NewHypothesis( const Handle(_pyCommand)& th else if ( hypType == "QuadranglePreference" ) { hyp->myDim = 2; hyp->myCreationMethod = "QuadranglePreference"; - hyp->myType = "MEFISTO_2D"; + hyp->myType = "Quadrangle_2D"; } // 3D ---------- else if ( hypType == "NETGEN_3D") { diff --git a/src/SMESH_SWIG/smesh.py b/src/SMESH_SWIG/smesh.py index 776ee83c7..fe237e511 100644 --- a/src/SMESH_SWIG/smesh.py +++ b/src/SMESH_SWIG/smesh.py @@ -206,11 +206,14 @@ class Mesh_Segment(Mesh_Algorithm): """ return self.Hypothesis("Propagation") - def AutomaticLength(self): + def AutomaticLength(self, fineness): """ Define "AutomaticLength" hypothesis + \param fineness for the fineness [0-1] """ - return self.Hypothesis("AutomaticLength") + hyp = self.Hypothesis("AutomaticLength") + hyp.SetFineness( fineness ) + return hyp # Public class: Mesh_Segment_Python # --------------------------------- diff --git a/src/StdMeshers/StdMeshers_AutomaticLength.cxx b/src/StdMeshers/StdMeshers_AutomaticLength.cxx index 01e8398ab..1176ebe18 100644 --- a/src/StdMeshers/StdMeshers_AutomaticLength.cxx +++ b/src/StdMeshers/StdMeshers_AutomaticLength.cxx @@ -54,6 +54,7 @@ StdMeshers_AutomaticLength::StdMeshers_AutomaticLength(int hypId, int studyId, _param_algo_dim = 1; // is used by SMESH_Regular_1D _mesh = 0; + _fineness = 0; } //============================================================================= @@ -66,6 +67,32 @@ StdMeshers_AutomaticLength::~StdMeshers_AutomaticLength() { } +//================================================================================ +/*! + * \brief Set Fineness + * \param theFineness - The Fineness value [0.0-1.0], + * 0 - coarse mesh + * 1 - fine mesh + * + * Raise if theFineness is out of range + * The "Initial Number of Elements on the Shortest Edge" (S0) + * is divided by (0.5 + 4.5 x theFineness) + */ +//================================================================================ + +void StdMeshers_AutomaticLength::SetFineness(double theFineness) + throw(SALOME_Exception) +{ + if ( theFineness < 0.0 || theFineness > 1.0 ) + throw SALOME_Exception(LOCALIZED("theFineness is out of range [0.0-1.0]")); + + if ( _fineness != theFineness ) + { + NotifySubMeshesHypothesisModification(); + _fineness = theFineness; + } +} + //================================================================================ /*! * \brief Return pointer to TopoDS_TShape @@ -181,7 +208,7 @@ double StdMeshers_AutomaticLength::GetLength(const SMESH_Mesh* theMesh, if ( tshape_length == _TShapeToLength.end() ) return 1; // it is a dgenerated edge - return tshape_length->second; + return tshape_length->second / (0.5 + 4.5 * _fineness); } //============================================================================= @@ -192,6 +219,7 @@ double StdMeshers_AutomaticLength::GetLength(const SMESH_Mesh* theMesh, ostream & StdMeshers_AutomaticLength::SaveTo(ostream & save) { + save << _fineness; return save; } @@ -203,6 +231,8 @@ ostream & StdMeshers_AutomaticLength::SaveTo(ostream & save) istream & StdMeshers_AutomaticLength::LoadFrom(istream & load) { + if ( ! ( load >> _fineness )) + load.clear(ios::badbit | load.rdstate()); return load; } diff --git a/src/StdMeshers/StdMeshers_AutomaticLength.hxx b/src/StdMeshers/StdMeshers_AutomaticLength.hxx index b4d9c8378..b8234b6db 100644 --- a/src/StdMeshers/StdMeshers_AutomaticLength.hxx +++ b/src/StdMeshers/StdMeshers_AutomaticLength.hxx @@ -54,6 +54,25 @@ public: double GetLength(const SMESH_Mesh* aMesh, const TopoDS_Shape& anEdge) throw(SALOME_Exception); + /*! + * \brief Set Fineness + * \param theFineness - The Fineness value [0.0-1.0], + * 0 - coarse mesh + * 1 - fine mesh + * + * Raise if theFineness is out of range + * The "Initial Number of Elements on the Shortest Edge" (S0) + * is divided by (0.5 + 4.5 x theFineness) + */ + void SetFineness(double theFineness) + throw(SALOME_Exception); + + /*! + * \brief Return mesh Fineness + * \retval double - Fineness value [0.0-1.0] + */ + double GetFineness() const { return _fineness; } + virtual std::ostream & SaveTo(std::ostream & save); virtual std::istream & LoadFrom(std::istream & load); friend std::ostream & operator <<(std::ostream & save, StdMeshers_AutomaticLength & hyp); @@ -62,6 +81,7 @@ public: protected: std::map _TShapeToLength; const SMESH_Mesh* _mesh; + double _fineness; }; #endif diff --git a/src/StdMeshersGUI/StdMeshersGUI_CreateStdHypothesisDlg.cxx b/src/StdMeshersGUI/StdMeshersGUI_CreateStdHypothesisDlg.cxx index 542600141..29205f4d1 100644 --- a/src/StdMeshersGUI/StdMeshersGUI_CreateStdHypothesisDlg.cxx +++ b/src/StdMeshersGUI/StdMeshersGUI_CreateStdHypothesisDlg.cxx @@ -66,6 +66,8 @@ StdMeshersGUI_CreateStdHypothesisDlg::StdMeshersGUI_CreateStdHypothesisDlg (cons hypTypeStr = "DEFLECTION1D"; else if (hypType.compare("Arithmetic1D") == 0) hypTypeStr = "ARITHMETIC_1D"; + else if (hypType.compare("AutomaticLength") == 0) + hypTypeStr = "AUTOMATIC_LENGTH"; else return; diff --git a/src/StdMeshersGUI/StdMeshersGUI_Parameters.cxx b/src/StdMeshersGUI/StdMeshersGUI_Parameters.cxx index 67d4f450c..06c6540c8 100644 --- a/src/StdMeshersGUI/StdMeshersGUI_Parameters.cxx +++ b/src/StdMeshersGUI/StdMeshersGUI_Parameters.cxx @@ -26,9 +26,13 @@ #include "StdMeshersGUI_Parameters.h" -//#include "SMESHGUI_SpinBox.h" // for the sake of COORD_MAX, COORD_MIN definition - #include +#include +#include +#include + +#include +//#include using namespace std; @@ -53,6 +57,7 @@ bool StdMeshersGUI_Parameters::HasParameters (const QString& hypType) (hypType.compare("MaxElementVolume") == 0) || (hypType.compare("StartEndLength") == 0) || (hypType.compare("Deflection1D") == 0) || + (hypType.compare("AutomaticLength") == 0) || (hypType.compare("Arithmetic1D") == 0)); } @@ -125,10 +130,11 @@ void StdMeshersGUI_Parameters::SetInitValue( SMESHGUI_aParameterPtr param, } } -//======================================================================= -//function : GetParameters -//purpose : -//======================================================================= +//================================================================================ +/*! + * \brief Macros to comfortably create SMESHGUI_aParameterPtr of different types + */ +//================================================================================ // SMESHGUI_doubleParameter( initValue, label, bottom, top, step, decimals ) #define DOUBLE_PARAM(v,l,b,t,s,d) SMESHGUI_aParameterPtr(new SMESHGUI_doubleParameter(v,l,b,t,s,d)) @@ -137,6 +143,14 @@ void StdMeshersGUI_Parameters::SetInitValue( SMESHGUI_aParameterPtr param, #define STR_PARAM(i,l,preview) SMESHGUI_aParameterPtr(new SMESHGUI_strParameter(i,l,preview)) #define BOOL_PARAM(i,l,preview) SMESHGUI_aParameterPtr(new SMESHGUI_boolParameter(i,l,preview)) +//================================================================================ +/*! + * \brief Fill parameter list with default values + * \param hypType - The name of hypothesis type + * \param paramList - The list to fill + */ +//================================================================================ + void StdMeshersGUI_Parameters::GetParameters (const QString& hypType, list & paramList ) { @@ -239,12 +253,23 @@ void StdMeshersGUI_Parameters::GetParameters (const QString& hyp QObject::tr("SMESH_DEFLECTION1D_PARAM"), VALUE_SMALL, VALUE_MAX, 1, 6)); } + else if (hypType.compare("AutomaticLength") == 0) + { + SMESHGUI_aParameter * param = + new StdMeshersGUI_doubleSliderParameter ( QObject::tr("SMESH_FINENESS_PARAM"), + "0 ", " 1", + 0.0, 0.0, 1.0, 0.05); + paramList.push_back( SMESHGUI_aParameterPtr( param )); + } } - -//======================================================================= -//function : GetParameters -//purpose : -//======================================================================= + +//================================================================================ +/*! + * \brief Fill parameter list with real values the hypothesis has + * \param theHyp - The hypothesis to retrieve parameter values from + * \param paramList - The list to fill + */ +//================================================================================ void StdMeshersGUI_Parameters::GetParameters (SMESH::SMESH_Hypothesis_ptr theHyp, list & paramList ) @@ -330,18 +355,29 @@ void StdMeshersGUI_Parameters::GetParameters (SMESH::SMESH_Hypothesis_ptr the StdMeshers::StdMeshers_Deflection1D::_narrow(theHyp); SetInitValue( paramList.back(), hyp->GetDeflection()) ; } + else if (hypType.compare("AutomaticLength") == 0) + { + StdMeshers::StdMeshers_AutomaticLength_var hyp = + StdMeshers::StdMeshers_AutomaticLength::_narrow(theHyp); + SetInitValue( paramList.back(), hyp->GetFineness()); + } } -//======================================================================= -//function : GetParameters -//purpose : -//======================================================================= -void StdMeshersGUI_Parameters::GetParameters (SMESH::SMESH_Hypothesis_ptr hyp, - list & paramList, +//================================================================================ +/*! + * \brief Return parameter values as a string + * \param hyp - not used + * \param paramList - list of parameter values + * \param params - output string + */ +//================================================================================ + +void StdMeshersGUI_Parameters::GetParameters (SMESH::SMESH_Hypothesis_ptr , + const list& paramList, QString& params) { params = ""; - list::iterator paramIt = paramList.begin(); + list::const_iterator paramIt = paramList.begin(); for ( ; paramIt != paramList.end(); paramIt++) { if (params.compare("")) params += " ; "; @@ -376,6 +412,15 @@ void StdMeshersGUI_Parameters::GetParameters (SMESH::SMESH_Hypothesis_ptr //purpose : //======================================================================= +//================================================================================ +/*! + * \brief Set parameter values from the list into a hypothesis + * \param theHyp - The hypothesis to modify + * \param paramList - list of parameter values + * \retval bool - true if any parameter value changed + */ +//================================================================================ + bool StdMeshersGUI_Parameters::SetParameters(SMESH::SMESH_Hypothesis_ptr theHyp, const list & paramList ) { @@ -474,6 +519,104 @@ bool StdMeshersGUI_Parameters::SetParameters(SMESH::SMESH_Hypothesis_ptr modified = paramList.front()->GetNewDouble( value ); hyp->SetDeflection( value ); } + else if (hypType.compare("AutomaticLength") == 0) + { + StdMeshers::StdMeshers_AutomaticLength_var hyp = + StdMeshers::StdMeshers_AutomaticLength::_narrow(theHyp); + double value = hyp->GetFineness() ; + modified = paramList.front()->GetNewDouble( value ); + hyp->SetFineness( value ); + } return modified ; } - + +//================================================================================ +/*! + * \brief Widget: slider with left and right labels + */ +//================================================================================ + +class StdMeshersGUI_SliderWith2Lables: public QHBox +{ +public: + StdMeshersGUI_SliderWith2Lables( const QString& leftLabel, + const QString& rightLabel, + QWidget * parent =0, + const char * name=0 ); + QSlider * getSlider() const { return _slider; } +private: + QSlider * _slider; +}; + +StdMeshersGUI_SliderWith2Lables::StdMeshersGUI_SliderWith2Lables( const QString& leftLabel, + const QString& rightLabel, + QWidget * parent, + const char * name ) + :QHBox(parent,name) +{ + if ( !leftLabel.isEmpty() ) + (new QLabel( this ))->setText( leftLabel ); + + _slider = new QSlider( Horizontal, this ); + + if ( !rightLabel.isEmpty() ) + (new QLabel( this ))->setText( rightLabel ); +} + +//================================================================================ +/*! + * \brief Constructor + * \param label - main label + * \param leftLabel - label to the left of slider + * \param rightLabel - label to the right of slider + * \param initValue - initial slider value + * \param bottom - least slider value + * \param top - maximal slider value + * \param precision - slider value precision + */ +//================================================================================ + +StdMeshersGUI_doubleSliderParameter:: +StdMeshersGUI_doubleSliderParameter (const QString& label, + const QString& leftLabel, + const QString& rightLabel, + const double initValue, + const double bottom, + const double top , + const double precision) + :SMESHGUI_doubleParameter(initValue,label,bottom,top,precision), + _leftLabel(leftLabel), _rightLabel(rightLabel) +{ +} + +QWidget* StdMeshersGUI_doubleSliderParameter::CreateWidget( QWidget* parent ) const +{ + return new StdMeshersGUI_SliderWith2Lables( _leftLabel, _rightLabel, parent ); +} + +void StdMeshersGUI_doubleSliderParameter::InitializeWidget( QWidget* aWidget) const +{ + StdMeshersGUI_SliderWith2Lables * paramWidget = + dynamic_cast (aWidget); + if ( paramWidget && paramWidget->getSlider() ) + { + QSlider * slider = paramWidget->getSlider(); + slider->setRange( 0, toInt( _top )); + slider->setValue( toInt( _initValue )); + } +} + +void StdMeshersGUI_doubleSliderParameter::TakeValue( QWidget* aWidget) +{ + StdMeshersGUI_SliderWith2Lables * paramWidget = + dynamic_cast (aWidget); + if ( paramWidget && paramWidget->getSlider() ) + { + int val = paramWidget->getSlider()->value(); + _newValue = Bottom() + val * Step(); + } +} +int StdMeshersGUI_doubleSliderParameter::toInt( double val ) const +{ + return (int) ceil(( val - _bottom ) / _step ); +} diff --git a/src/StdMeshersGUI/StdMeshersGUI_Parameters.h b/src/StdMeshersGUI/StdMeshersGUI_Parameters.h index 40be46f46..87dc7a45b 100644 --- a/src/StdMeshersGUI/StdMeshersGUI_Parameters.h +++ b/src/StdMeshersGUI/StdMeshersGUI_Parameters.h @@ -46,9 +46,9 @@ class StdMeshersGUI_Parameters static void GetParameters (SMESH::SMESH_Hypothesis_ptr hyp, std::list & params ); - static void GetParameters (SMESH::SMESH_Hypothesis_ptr hyp, - std::list & paramList, - QString& params); + static void GetParameters (SMESH::SMESH_Hypothesis_ptr hyp, + const std::list & paramList, + QString& params); static bool SetParameters(SMESH::SMESH_Hypothesis_ptr hyp, const std::list & params ); @@ -62,4 +62,26 @@ class StdMeshersGUI_Parameters static void SetInitValue(SMESHGUI_aParameterPtr param, SMESH::double_array& initValue); }; + +/*! + * \brief This class provides double parameter with slider control + */ +class StdMeshersGUI_doubleSliderParameter: public SMESHGUI_doubleParameter +{ +public: + StdMeshersGUI_doubleSliderParameter(const QString& label = QString::null, + const QString& leftLabel = QString::null, + const QString& rightLabel = QString::null, + const double initValue = 0.0, + const double bottom = 0, + const double top = 1, + const double precision = 0.1); + virtual QWidget* CreateWidget( QWidget* ) const; + virtual void InitializeWidget( QWidget* ) const; + virtual void TakeValue( QWidget* ); + int toInt( double val ) const; +private: + QString _leftLabel, _rightLabel; +}; + #endif diff --git a/src/StdMeshersGUI/StdMeshers_images.po b/src/StdMeshersGUI/StdMeshers_images.po index afa51dab5..c5978633b 100644 --- a/src/StdMeshersGUI/StdMeshers_images.po +++ b/src/StdMeshersGUI/StdMeshers_images.po @@ -15,9 +15,9 @@ msgid "ICON_SELECT" msgstr "select1.png" -#----------------------------------------------------------- -# Hypothesis -#----------------------------------------------------------- +#----------------------------------------------------------------- +# Hypothesis creation, see StdMeshersGUI_CreateStdHypothesisDlg() +#----------------------------------------------------------------- #Hypo Local Length msgid "ICON_DLG_LOCAL_LENGTH" @@ -52,7 +52,7 @@ msgid "ICON_DLG_ARITHMETIC_1D" msgstr "mesh_hypo_length.png" #Hypo AutomaticLength -msgid "ICON_DLG_AUTOMATICLENGTH" +msgid "ICON_DLG_AUTOMATIC_LENGTH" msgstr "mesh_hypo_length.png" diff --git a/src/StdMeshersGUI/StdMeshers_msg_en.po b/src/StdMeshersGUI/StdMeshers_msg_en.po index 177b70189..2c598ba89 100644 --- a/src/StdMeshersGUI/StdMeshers_msg_en.po +++ b/src/StdMeshersGUI/StdMeshers_msg_en.po @@ -117,3 +117,15 @@ msgstr "Arithmetic Reason" msgid "SMESH_ARITHMETIC_1D_TITLE" msgstr "Hypothesis Construction" + + +# -------------- AUTOMATIC_LENGTH -------------- + +msgid "SMESH_AUTOMATIC_LENGTH_HYPOTHESIS" +msgstr "Automatic Length" + +msgid "SMESH_FINENESS_PARAM" +msgstr "Fineness" + +msgid "SMESH_AUTOMATIC_LENGTH_TITLE" +msgstr "Hypothesis Construction" diff --git a/src/StdMeshers_I/StdMeshers_AutomaticLength_i.cxx b/src/StdMeshers_I/StdMeshers_AutomaticLength_i.cxx index 5af0952c3..2f085a7cf 100644 --- a/src/StdMeshers_I/StdMeshers_AutomaticLength_i.cxx +++ b/src/StdMeshers_I/StdMeshers_AutomaticLength_i.cxx @@ -30,6 +30,7 @@ using namespace std; #include "StdMeshers_AutomaticLength_i.hxx" #include "SMESH_Gen_i.hxx" #include "SMESH_Gen.hxx" +#include "SMESH_PythonDump.hxx" #include "Utils_CorbaException.hxx" #include "utilities.h" @@ -71,47 +72,40 @@ StdMeshers_AutomaticLength_i::~StdMeshers_AutomaticLength_i() //============================================================================= /*! - * StdMeshers_AutomaticLength_i::SetLength + * StdMeshers_AutomaticLength_i::SetFineness * - * Set length + * Set Fineness */ //============================================================================= -// void StdMeshers_AutomaticLength_i::SetLength( CORBA::Double theLength ) -// throw ( SALOME::SALOME_Exception ) -// { -// MESSAGE( "StdMeshers_AutomaticLength_i::SetLength" ); -// ASSERT( myBaseImpl ); -// try { -// this->GetImpl()->SetLength( theLength ); -// } -// catch ( SALOME_Exception& S_ex ) { -// THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), -// SALOME::BAD_PARAM ); -// } - -// // Update Python script -// TCollection_AsciiString aStr, aStrLen ((double)theLength); -// SMESH_Gen_i::AddObject(aStr, _this()) += ".SetLength("; -// aStr += aStrLen + ")"; - -// SMESH_Gen_i::AddToCurrentPyScript(aStr); -// } +void StdMeshers_AutomaticLength_i::SetFineness( CORBA::Double theFineness ) + throw ( SALOME::SALOME_Exception ) +{ + ASSERT( myBaseImpl ); + try { + this->GetImpl()->SetFineness( theFineness ); + } + catch ( SALOME_Exception& S_ex ) { + THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), + SALOME::BAD_PARAM ); + } + // Update Python script + SMESH::TPythonDump() << _this() << ".SetFineness( " << theFineness << " )"; +} //============================================================================= /*! - * StdMeshers_AutomaticLength_i::GetLength + * StdMeshers_AutomaticLength_i::GetFineness * - * Get length + * Get Fineness */ //============================================================================= -// CORBA::Double StdMeshers_AutomaticLength_i::GetLength() -// { -// MESSAGE( "StdMeshers_AutomaticLength_i::GetLength" ); -// ASSERT( myBaseImpl ); -// return this->GetImpl()->GetLength(); -// } +CORBA::Double StdMeshers_AutomaticLength_i::GetFineness() +{ + ASSERT( myBaseImpl ); + return this->GetImpl()->GetFineness(); +} //============================================================================= /*! @@ -123,7 +117,6 @@ StdMeshers_AutomaticLength_i::~StdMeshers_AutomaticLength_i() ::StdMeshers_AutomaticLength* StdMeshers_AutomaticLength_i::GetImpl() { - MESSAGE( "StdMeshers_AutomaticLength_i::GetImpl" ); return ( ::StdMeshers_AutomaticLength* )myBaseImpl; } diff --git a/src/StdMeshers_I/StdMeshers_AutomaticLength_i.hxx b/src/StdMeshers_I/StdMeshers_AutomaticLength_i.hxx index f7f85ce3b..fcc9876fd 100644 --- a/src/StdMeshers_I/StdMeshers_AutomaticLength_i.hxx +++ b/src/StdMeshers_I/StdMeshers_AutomaticLength_i.hxx @@ -37,9 +37,10 @@ class SMESH_Gen; -// ====================================================== -// Local Length hypothesis -// ====================================================== +// ========================================================= +// 1D Hypothesis to compute segment length free of thinking +// ========================================================= + class StdMeshers_AutomaticLength_i: public virtual POA_StdMeshers::StdMeshers_AutomaticLength, public virtual SMESH_Hypothesis_i @@ -52,11 +53,12 @@ public: // Destructor virtual ~StdMeshers_AutomaticLength_i(); -// // Set length -// void SetLength( CORBA::Double theLength ) -// throw ( SALOME::SALOME_Exception ); -// // Get length -// CORBA::Double GetLength(); + // Set Fineness + void SetFineness( CORBA::Double theFineness ) + throw ( SALOME::SALOME_Exception ); + + // Get Fineness + CORBA::Double GetFineness(); // Get implementation ::StdMeshers_AutomaticLength* GetImpl(); -- 2.30.2