]> SALOME platform Git repositories - plugins/netgenplugin.git/commitdiff
Salome HOME
PAL14890 Netgen specification limitation BR_Dev_For_4_0
authoreap <eap@opencascade.com>
Thu, 6 Mar 2008 12:56:29 +0000 (12:56 +0000)
committereap <eap@opencascade.com>
Thu, 6 Mar 2008 12:56:29 +0000 (12:56 +0000)
     increase upper limit of NETGEN_SEG_PER_EDGE and NETGEN_SEG_PER_RADIUS up to 1.0e+6

src/GUI/NETGENPluginGUI_HypothesisCreator.cxx

index 5da2f11390eaef03b3b92b79b8b48f1a9659dbee..6f81cf22e2047d3cc1d07fa7bbff77fed5933604 100644 (file)
@@ -122,16 +122,18 @@ QFrame* NETGENPluginGUI_HypothesisCreator::buildFrame()
   myGrowthRate->setMinValue( 0.1 );
   myGrowthRate->setMaxValue( 10 );
   myGrowthRate->setLineStep( 0.1 );
-  
+
+  const double VALUE_MAX = 1.0e+6;
+
   new QLabel( tr( "NETGEN_SEG_PER_EDGE" ), GroupC1 );
   myNbSegPerEdge = new QtxDblSpinBox( GroupC1 );
   myNbSegPerEdge->setMinValue( 0.2 );
-  myNbSegPerEdge->setMaxValue( 5.0 );
+  myNbSegPerEdge->setMaxValue( VALUE_MAX ); // (PAL14890) max value in native netgen gui is 5
   
   new QLabel( tr( "NETGEN_SEG_PER_RADIUS" ), GroupC1 );
   myNbSegPerRadius = new QtxDblSpinBox( GroupC1 );
   myNbSegPerRadius->setMinValue( 0.2 );
-  myNbSegPerRadius->setMaxValue( 5.0 );
+  myNbSegPerRadius->setMaxValue( VALUE_MAX ); // (PAL14890) max value in native netgen gui is 5
 
   if ( hypType()=="NETGEN_Parameters_2D" )
   {