mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-15 00:20:35 +05:00
SALOME Mesh module
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(); |
||
---|---|---|
adm_local | ||
bin | ||
doc | ||
idl | ||
resources | ||
src | ||
build_configure | ||
ChangeLog | ||
configure.in.base | ||
cvs-tags | ||
INSTALL | ||
LICENCE | ||
Makefile.in | ||
SMESH_version.h.in |