mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-02 21:00:34 +05:00
PAL16774,PAL16631(SALOME crash after a mesh computation that failed because of lack of memory)
- void Update( int theIsClear = true ) + bool Update( int theIsClear = true )
This commit is contained in:
parent
0fecea680b
commit
9cfa837a1d
@ -55,7 +55,7 @@ class vtkUnstructuredGrid;
|
|||||||
class SMESHOBJECT_EXPORT SMESH_VisualObj
|
class SMESHOBJECT_EXPORT SMESH_VisualObj
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual void Update( int theIsClear = true ) = 0;
|
virtual bool Update( int theIsClear = true ) = 0;
|
||||||
virtual void UpdateFunctor( const SMESH::Controls::FunctorPtr& theFunctor ) = 0;
|
virtual void UpdateFunctor( const SMESH::Controls::FunctorPtr& theFunctor ) = 0;
|
||||||
virtual int GetElemDimension( const int theObjId ) = 0;
|
virtual int GetElemDimension( const int theObjId ) = 0;
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ public:
|
|||||||
SMESH_VisualObjDef();
|
SMESH_VisualObjDef();
|
||||||
virtual ~SMESH_VisualObjDef();
|
virtual ~SMESH_VisualObjDef();
|
||||||
|
|
||||||
virtual void Update( int theIsClear = true ) = 0;
|
virtual bool Update( int theIsClear = true ) = 0;
|
||||||
virtual void UpdateFunctor( const SMESH::Controls::FunctorPtr& theFunctor ) = 0;
|
virtual void UpdateFunctor( const SMESH::Controls::FunctorPtr& theFunctor ) = 0;
|
||||||
virtual int GetElemDimension( const int theObjId ) = 0;
|
virtual int GetElemDimension( const int theObjId ) = 0;
|
||||||
|
|
||||||
@ -112,7 +112,7 @@ public:
|
|||||||
SMESH_MeshObj( SMESH::SMESH_Mesh_ptr );
|
SMESH_MeshObj( SMESH::SMESH_Mesh_ptr );
|
||||||
virtual ~SMESH_MeshObj();
|
virtual ~SMESH_MeshObj();
|
||||||
|
|
||||||
virtual void Update( int theIsClear = true );
|
virtual bool Update( int theIsClear = true );
|
||||||
|
|
||||||
virtual int GetNbEntities( const SMDSAbs_ElementType) const;
|
virtual int GetNbEntities( const SMDSAbs_ElementType) const;
|
||||||
virtual int GetEntities( const SMDSAbs_ElementType, TEntityList& ) const;
|
virtual int GetEntities( const SMDSAbs_ElementType, TEntityList& ) const;
|
||||||
@ -142,7 +142,7 @@ public:
|
|||||||
SMESH_SubMeshObj(SMESH_MeshObj* theMeshObj);
|
SMESH_SubMeshObj(SMESH_MeshObj* theMeshObj);
|
||||||
virtual ~SMESH_SubMeshObj();
|
virtual ~SMESH_SubMeshObj();
|
||||||
|
|
||||||
virtual void Update( int theIsClear = true );
|
virtual bool Update( int theIsClear = true );
|
||||||
|
|
||||||
virtual void UpdateFunctor( const SMESH::Controls::FunctorPtr& theFunctor );
|
virtual void UpdateFunctor( const SMESH::Controls::FunctorPtr& theFunctor );
|
||||||
virtual int GetElemDimension( const int theObjId );
|
virtual int GetElemDimension( const int theObjId );
|
||||||
|
Loading…
Reference in New Issue
Block a user