mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-03-21 14:07:58 +05:00
untabify
This commit is contained in:
parent
1876773996
commit
cbe181b40c
@ -73,7 +73,8 @@ salomeinclude_HEADERS = \
|
||||
SMDS_MeshInfo.hxx \
|
||||
SMDS_UnstructuredGrid.hxx \
|
||||
SMDS_Downward.hxx \
|
||||
SMDS_StdIterator.hxx
|
||||
SMDS_StdIterator.hxx \
|
||||
SMDS_IteratorOnIterators.hxx
|
||||
|
||||
|
||||
# Libraries targets
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
SMDSAbs_ElementType SMDS_MeshEdge::GetType() const
|
||||
{
|
||||
return SMDSAbs_Edge;
|
||||
return SMDSAbs_Edge;
|
||||
}
|
||||
|
||||
vtkIdType SMDS_MeshEdge::GetVtkType() const
|
||||
|
@ -33,7 +33,7 @@
|
||||
|
||||
class SMDS_EXPORT SMDS_MeshEdge:public SMDS_MeshCell
|
||||
{
|
||||
|
||||
|
||||
public:
|
||||
SMDSAbs_ElementType GetType() const;
|
||||
virtual vtkIdType GetVtkType() const;
|
||||
|
@ -91,24 +91,24 @@ void SMDS_MeshIDFactory::ReleaseID(int ID, int vtkId)
|
||||
|
||||
void SMDS_MeshIDFactory::Clear()
|
||||
{
|
||||
myMaxID = 0;
|
||||
myPoolOfID.clear();
|
||||
myMaxID = 0;
|
||||
myPoolOfID.clear();
|
||||
}
|
||||
|
||||
void SMDS_MeshIDFactory::SetMesh(SMDS_Mesh *mesh)
|
||||
{
|
||||
myMesh = mesh;
|
||||
myMesh = mesh;
|
||||
}
|
||||
|
||||
SMDS_Mesh* SMDS_MeshIDFactory::GetMesh()
|
||||
{
|
||||
return myMesh;
|
||||
return myMesh;
|
||||
}
|
||||
|
||||
void SMDS_MeshIDFactory::emptyPool(int maxId)
|
||||
{
|
||||
MESSAGE("SMDS_MeshIDFactory::emptyPool " << myMaxID << " --> " << maxId);
|
||||
myMaxID = maxId;
|
||||
myPoolOfID.clear();
|
||||
MESSAGE("SMDS_MeshIDFactory::emptyPool " << myMaxID << " --> " << maxId);
|
||||
myMaxID = maxId;
|
||||
myPoolOfID.clear();
|
||||
}
|
||||
|
||||
|
@ -147,11 +147,11 @@ void SMDS_UnstructuredGrid::compactGrid(std::vector<int>& idNodesOldToNew, int n
|
||||
} enumState;
|
||||
enumState compactState = lookHoleStart;
|
||||
|
||||
// if (this->Links)
|
||||
// {
|
||||
// this->Links->UnRegister(this);
|
||||
// this->Links = 0;
|
||||
// }
|
||||
// if (this->Links)
|
||||
// {
|
||||
// this->Links->UnRegister(this);
|
||||
// this->Links = 0;
|
||||
// }
|
||||
|
||||
// --- if newNodeSize, create a new compacted vtkPoints
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
*/
|
||||
|
||||
#ifndef _SMDS_UNSTRUCTUREDGRID_HXX
|
||||
#define _SMDS_UNSTRUCTUREDGRID_HXX
|
||||
#define _SMDS_UNSTRUCTUREDGRID_HXX
|
||||
|
||||
#include <vtkUnstructuredGrid.h>
|
||||
#include <vtkCellLinks.h>
|
||||
@ -89,5 +89,5 @@ protected:
|
||||
std::vector<SMDS_Downward*> _downArray;
|
||||
};
|
||||
|
||||
#endif /* _SMDS_UNSTRUCTUREDGRID_HXX */
|
||||
#endif /* _SMDS_UNSTRUCTUREDGRID_HXX */
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user