mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-28 15:30:33 +05:00
Corrected for PAL13543 and PAL13549.
This commit is contained in:
parent
550e1301e1
commit
355aa3565c
@ -374,6 +374,7 @@ module SMESH
|
|||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Export Mesh to DAT, UNV and STL Formats
|
* Export Mesh to DAT, UNV and STL Formats
|
||||||
|
* (UNV supported version is I-DEAS 10)
|
||||||
*/
|
*/
|
||||||
void ExportDAT( in string file )
|
void ExportDAT( in string file )
|
||||||
raises (SALOME::SALOME_Exception);
|
raises (SALOME::SALOME_Exception);
|
||||||
@ -642,6 +643,16 @@ module SMESH
|
|||||||
|
|
||||||
long AddNode(in double x, in double y, in double z);
|
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 AddEdge(in long_array IDsOfNodes);
|
||||||
|
|
||||||
long AddFace(in long_array IDsOfNodes);
|
long AddFace(in long_array IDsOfNodes);
|
||||||
|
Loading…
Reference in New Issue
Block a user