Salome HOME
Corrected for PAL13543 and PAL13549.
authorskl <skl@opencascade.com>
Mon, 9 Oct 2006 11:02:00 +0000 (11:02 +0000)
committerskl <skl@opencascade.com>
Mon, 9 Oct 2006 11:02:00 +0000 (11:02 +0000)
idl/SMESH_Mesh.idl

index 5134fe24b38f938f852555e625abe4111b1f546a..2407d3cef791a744bda7f9f70fa84c4c17122339 100644 (file)
@@ -374,6 +374,7 @@ module SMESH
 
     /*!
      * Export Mesh to DAT, UNV and STL Formats
+     * (UNV supported version is I-DEAS 10)
      */
     void ExportDAT( in string file )
       raises (SALOME::SALOME_Exception);
@@ -642,6 +643,16 @@ module SMESH
 
     long AddNode(in double x, in double y, in double z);
 
+    /*!
+     *  Following methods are intented for creation edges, faces
+     *  and volumes both similar and quadratic (this is determed
+     *  by number of given nodes).
+     *  \param IdsOfNodes List of node IDs for creation of element.
+     *  Needed order of nodes in this list corresponds to description
+     *  of MED. This description is located by the following link:
+     *   http://www.salome-platform.org/salome2/web_med_internet/logiciels/
+     *     medV2.2.2_doc_html/html/modele_de_donnees.html#3.
+     */
     long AddEdge(in long_array IDsOfNodes);
 
     long AddFace(in long_array IDsOfNodes);