]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
0022513: [CEA 1084] _objref_SMESH_Mesh instance has no attribute 'GetMEDMesh'
authorvsr <vsr@opencascade.com>
Mon, 17 Mar 2014 09:53:30 +0000 (13:53 +0400)
committervsr <vsr@opencascade.com>
Mon, 17 Mar 2014 09:53:30 +0000 (13:53 +0400)
doc/salome/gui/input/using_pluginsmanager.doc

index 8d9214828eff988945b50c51c8143bcd235bcd8a..65a76920d300d832f1714ce46168d45f40cc1b02 100644 (file)
@@ -163,13 +163,14 @@ Some important methods and objects to use are as follows:
   to retrieve the salome object from selection. It can be a GEOM, SMESH, or any
   other module object. 
 
-  If it is a mesh, then it is possible to call GetMEDMesh() on the object. 
+  If it is a mesh, then it is possible to call methods of the SMESH::SMESH_Mesh interface
+  on the object, for example GetShapeToMesh().
   If it is not a mesh, this call will raise an exception. 
-  So it is possible to write the mesh retrieval in the following way:
+  So it is possible to write the code retrieving the shape a mesh is built on in the following way:
 \code
 mesh = None
 try:
-  mesh = salomeObj.GetMEDMesh()
+  shape = salomeObj.GetShapeToMesh()
 except:
   print "The selection is not a mesh"
 \endcode