interface SMESH_Mesh
{
+ boolean IsLoaded()
+ void Load()
interface SMESH_IDSource
{
+ boolean IsMeshInfoCorrect();
* Returns the mesh
*/
SMESH_Mesh GetMesh();
+
+ /*!
+ * Returns false if GetMeshInfo() returns incorrect information that may
+ * happen if mesh data is not yet fully loaded from the file of study.
+ */
+ boolean IsMeshInfoCorrect();
};
interface SMESH_Group;
GEOM::GEOM_Object GetShapeToMesh()
raises (SALOME::SALOME_Exception);
+ /*!
+ * Return false if the mesh is not yet fully loaded from the study file
+ */
+ boolean IsLoaded()
+ raises (SALOME::SALOME_Exception);
+
+ /*!
+ * Load full mesh data from the study file
+ */
+ void Load()
+ raises (SALOME::SALOME_Exception);
+
/*!
* Remove all nodes and elements
*/