From: skl Date: Mon, 9 Oct 2006 11:02:00 +0000 (+0000) Subject: Corrected for PAL13543 and PAL13549. X-Git-Tag: V3_2_3pre1~22 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=commitdiff_plain;h=355aa3565c6e9acfb2809d48eedf0fc5d53fea3e Corrected for PAL13543 and PAL13549. --- diff --git a/idl/SMESH_Mesh.idl b/idl/SMESH_Mesh.idl index 5134fe24b..2407d3cef 100644 --- a/idl/SMESH_Mesh.idl +++ b/idl/SMESH_Mesh.idl @@ -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);