-algo=smesh.xxxx ==> algo.smeshBuilder.xxxx

+algo=smesh.xxxx  ==> algo=smeshBuilder.xxxx
This commit is contained in:
eap 2013-04-24 12:13:36 +00:00
parent f4d0371a70
commit c965dca966

View File

@ -96,19 +96,19 @@ The following changes in your scripts are required to avoid this message:
replace replace
------- -------
import smesh, SMESH, SALOMEDS import smesh, SMESH
smesh.SetCurrentStudy(theStudy) smesh.SetCurrentStudy(theStudy)
with with
---- ----
import SMESH, SALOMEDS import SMESH
from salome.smesh import smeshBuilder from salome.smesh import smeshBuilder
smesh = smeshBuilder.New(salome.myStudy) smesh = smeshBuilder.New(salome.myStudy)
you also need to modify some lines where smeshBuilder is used instead of smesh you also need to modify some lines where smeshBuilder is used instead of smesh
algo=smesh.xxxx ==> algo.smeshBuilder.xxxx algo=smesh.xxxx ==> algo=smeshBuilder.xxxx
See also SMESH User's Guide for more details See also SMESH User's Guide for more details