Corrected for PAL13543 and PAL13549.

This commit is contained in:
skl 2006-10-09 11:02:00 +00:00
parent 550e1301e1
commit 355aa3565c

View 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);