X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=doc%2Fsalome%2Fgui%2FSMESH%2Finput%2Fsmesh_migration.doc;h=9c8af6c9d9ccb7937d89cb0a1415dee657a3cfea;hb=7a3ecab720cc517ace17c5c4677fd3c20c0051ee;hp=cf01817583d8da14181e3068a1af450b89b27d91;hpb=d5029840731bccaa1718e65f0abf3b19198c7293;p=modules%2Fsmesh.git diff --git a/doc/salome/gui/SMESH/input/smesh_migration.doc b/doc/salome/gui/SMESH/input/smesh_migration.doc index cf0181758..9c8af6c9d 100644 --- a/doc/salome/gui/SMESH/input/smesh_migration.doc +++ b/doc/salome/gui/SMESH/input/smesh_migration.doc @@ -1,6 +1,6 @@ /*! -\page smesh_migration_page Modifing Mesh Python scripts from SALOME 6 and before +\page smesh_migration_page Modifying Mesh Python scripts from SALOME 6 and before \n In SALOME 7.2, the Python interface for %Mesh has been slightly modified to offer new functionality: @@ -31,7 +31,7 @@ smesh = smeshBuilder.New() Of course, from smesh import * is no more possible. -\n You have to explicitely write smesh.some_method(). +\n You have to explicitly write smesh.some_method(). All algorithms have been transferred from the namespace smesh to the namespace smeshBuilder. \n For instance: @@ -79,7 +79,7 @@ is replaced by: Compound1 = smesh.Concatenate([Mesh_inf.GetMesh(), Mesh_sup.GetMesh()], 0, 1, 1e-05) \endcode -If you need to import a %SMESH Plugin explicitely, keep in mind that they are now located in separate namespaces. +If you need to import a %SMESH Plugin explicitly, keep in mind that they are now located in separate namespaces. \n For instance: \code import StdMeshers