From: jfa Date: Tue, 10 Mar 2009 09:12:29 +0000 (+0000) Subject: Bug 0020201: EDF SMESH 984: Dump with Netgen1D2D3D doest not work. X-Git-Tag: V5_1_1rc2~9 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=2534543b1e753cfa3cf12001e35d83f63f9cfb6d;p=modules%2Fsmesh.git Bug 0020201: EDF SMESH 984: Dump with Netgen1D2D3D doest not work. --- diff --git a/src/SMESH_I/SMESH_2smeshpy.cxx b/src/SMESH_I/SMESH_2smeshpy.cxx index 0fa541b7d..95fbcd788 100644 --- a/src/SMESH_I/SMESH_2smeshpy.cxx +++ b/src/SMESH_I/SMESH_2smeshpy.cxx @@ -1287,7 +1287,7 @@ Handle(_pyHypothesis) _pyHypothesis::NewHypothesis( const Handle(_pyCommand)& th } else if ( hypType == "NETGEN_SimpleParameters_2D") { hyp->SetConvMethodAndType( "Parameters", "NETGEN_2D"); - hyp->myArgs.Append( "which=SIMPLE" ); + hyp->myArgs.Append( "which=smesh.SIMPLE" ); } else if ( hypType == "NETGEN_2D3D") { // 1D-2D-3D algo->SetConvMethodAndType( "Tetrahedron" , hypType.ToCString()); @@ -1298,7 +1298,7 @@ Handle(_pyHypothesis) _pyHypothesis::NewHypothesis( const Handle(_pyCommand)& th } else if ( hypType == "NETGEN_SimpleParameters_3D") { hyp->SetConvMethodAndType( "Parameters", "NETGEN_2D3D"); - hyp->myArgs.Append( "which=SIMPLE" ); + hyp->myArgs.Append( "which=smesh.SIMPLE" ); } else if ( hypType == "NETGEN_2D_ONLY") { // 2D algo->SetConvMethodAndType( "Triangle" , hypType.ToCString());