mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-28 18:30:35 +05:00
8a94b0bd1f
+ typedef sequence<PointStruct> nodes_array; + struct ElementSubType { ElementType SMDS_ElementType; + boolean isPoly; + long nbNodesInElement; }; + typedef sequence<ElementSubType> types_array; + /*! + * Structure containing mesh edit preview data + */ + struct MeshPreviewStruct { nodes_array nodesXYZ; + long_array elementConnectivities; + types_array elementTypes; }; inteface SMESH_Mesh { + /*! + * Return SMESH_MeshEditor that would not modify the mesh but + * fill MeshPreviewStruct + */ + SMESH_MeshEditor GetMeshEditPreviewer() + raises (SALOME::SALOME_Exception); + /*! + * Return data of mesh edition preview which is computed provided + * that the editor was obtained trough SMESH_Mesh::GetMeshEditPreviewer() + */ + MeshPreviewStruct GetPreviewData(); |
||
---|---|---|
.. | ||
Makefile.in | ||
SMESH_BasicHypothesis.idl | ||
SMESH_Filter.idl | ||
SMESH_Gen.idl | ||
SMESH_Group.idl | ||
SMESH_Hypothesis.idl | ||
SMESH_Mesh.idl | ||
SMESH_Pattern.idl |