]> SALOME platform Git repositories - modules/smesh.git/commitdiff
Salome HOME
0021271: [CEA 473] Implement min size in netgen plugin
authoreap <eap@opencascade.com>
Tue, 5 Jul 2011 12:07:17 +0000 (12:07 +0000)
committereap <eap@opencascade.com>
Tue, 5 Jul 2011 12:07:17 +0000 (12:07 +0000)
     ::SMESH_Hypothesis::TDefaults dflts;
+    dflts._shape = &shape;

src/SMESH_I/SMESH_Gen_i.cxx

index a5de17057528fc0559b87e4df697d23da29bfb68..5c2293c4c2235eb7996cd1531a1ae7bf0ac910ea 100644 (file)
@@ -751,7 +751,7 @@ SMESH_Gen_i::GetHypothesisParameterValues (const char*           theHypType,
       }
     }
 
-    // let the temporary hypothesis find out some how parameter values by mesh
+    // let the temporary hypothesis find out somehow parameter values by mesh
     if ( hyp->SetParametersByMesh( mesh, shape ))
       return SMESH::SMESH_Hypothesis::_duplicate( tmpHyp );
   }
@@ -764,6 +764,7 @@ SMESH_Gen_i::GetHypothesisParameterValues (const char*           theHypType,
     ::SMESH_Hypothesis::TDefaults dflts;
     dflts._elemLength = diagonal / myGen.GetBoundaryBoxSegmentation();
     dflts._nbSegments = myGen.GetDefaultNbSegments();
+    dflts._shape      = &shape;
     // let the temporary hypothesis initialize it's values
     if ( hyp->SetParametersByDefaults( dflts, mesh ))
       return SMESH::SMESH_Hypothesis::_duplicate( tmpHyp );