mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-12 01:30:34 +05:00
fixed compile error
This commit is contained in:
parent
3f9b34f547
commit
a8bea6a4d9
@ -44,7 +44,7 @@ class gp_Vec;
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include <TopoDS_Shape.hxx>
|
#include <TopoDS_Shape.hxx>
|
||||||
//#include <NCollection_DataMap.hxx>
|
#include <NCollection_DataMap.hxx>
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief "Transforms" quadrilateral faces into triangular ones by creation of pyramids
|
* \brief "Transforms" quadrilateral faces into triangular ones by creation of pyramids
|
||||||
@ -94,19 +94,19 @@ protected:
|
|||||||
std::set<const SMDS_MeshNode*>& nodesToMove,
|
std::set<const SMDS_MeshNode*>& nodesToMove,
|
||||||
const bool isRecursion = false);
|
const bool isRecursion = false);
|
||||||
|
|
||||||
// bool DecreaseHeightDifference( const SMDS_MeshElement* pyram,
|
bool DecreaseHeightDifference( const SMDS_MeshElement* pyram,
|
||||||
// const double h2 );
|
const double h2 );
|
||||||
|
|
||||||
TopoDS_Shape myShape;
|
TopoDS_Shape myShape;
|
||||||
std::set<const SMDS_MeshElement*> myRemovedTrias;
|
std::set<const SMDS_MeshElement*> myRemovedTrias;
|
||||||
std::list< const SMDS_MeshNode* > myDegNodes;
|
std::list< const SMDS_MeshNode* > myDegNodes;
|
||||||
const SMESH_ElementSearcher* myElemSearcher;
|
const SMESH_ElementSearcher* myElemSearcher;
|
||||||
|
|
||||||
// NCollection_DataMap< const SMDS_MeshElement*, double > myPyramHeight2;
|
NCollection_DataMap< const SMDS_MeshElement*, double > myPyramHeight2;
|
||||||
|
|
||||||
// // work buffers of DecreaseHeightDifference()
|
// work buffers of DecreaseHeightDifference()
|
||||||
// std::vector< const SMDS_MeshElement* > myAdjPyrams;
|
std::vector< const SMDS_MeshElement* > myAdjPyrams;
|
||||||
// std::vector<const SMDS_MeshNode *> myNodes;
|
std::vector<const SMDS_MeshNode *> myNodes;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user