mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-13 18:20:34 +05:00
- std::map < int, SMESH_Algo * >_mapAlgo;
- std::map < int, SMESH_0D_Algo * >_map0D_Algo; - std::map < int, SMESH_1D_Algo * >_map1D_Algo; - std::map < int, SMESH_2D_Algo * >_map2D_Algo; - std::map < int, SMESH_3D_Algo * >_map3D_Algo;
This commit is contained in:
parent
fad96c2870
commit
1481fb61da
@ -84,12 +84,12 @@ public:
|
|||||||
const ::MeshDimension aDim=::MeshDim_3D,
|
const ::MeshDimension aDim=::MeshDim_3D,
|
||||||
TSetOfInt* aShapesId=0);
|
TSetOfInt* aShapesId=0);
|
||||||
|
|
||||||
#ifdef WITH_SMESH_CANCEL_COMPUTE
|
|
||||||
void PrepareCompute(::SMESH_Mesh & aMesh,
|
void PrepareCompute(::SMESH_Mesh & aMesh,
|
||||||
const TopoDS_Shape & aShape);
|
const TopoDS_Shape & aShape);
|
||||||
void CancelCompute(::SMESH_Mesh & aMesh,
|
void CancelCompute(::SMESH_Mesh & aMesh,
|
||||||
const TopoDS_Shape & aShape);
|
const TopoDS_Shape & aShape);
|
||||||
#endif
|
|
||||||
|
const SMESH_subMesh* GetCurrentSubMesh() const { return _sm_current; }
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief evaluates size of prospective mesh on a shape
|
* \brief evaluates size of prospective mesh on a shape
|
||||||
@ -154,11 +154,11 @@ public:
|
|||||||
|
|
||||||
int GetANewId();
|
int GetANewId();
|
||||||
|
|
||||||
std::map < int, SMESH_Algo * >_mapAlgo;
|
// std::map < int, SMESH_Algo * >_mapAlgo;
|
||||||
std::map < int, SMESH_0D_Algo * >_map0D_Algo;
|
// std::map < int, SMESH_0D_Algo * >_map0D_Algo;
|
||||||
std::map < int, SMESH_1D_Algo * >_map1D_Algo;
|
// std::map < int, SMESH_1D_Algo * >_map1D_Algo;
|
||||||
std::map < int, SMESH_2D_Algo * >_map2D_Algo;
|
// std::map < int, SMESH_2D_Algo * >_map2D_Algo;
|
||||||
std::map < int, SMESH_3D_Algo * >_map3D_Algo;
|
// std::map < int, SMESH_3D_Algo * >_map3D_Algo;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
@ -171,14 +171,13 @@ private:
|
|||||||
// number of segments per diagonal of boundary box of geometry by which
|
// number of segments per diagonal of boundary box of geometry by which
|
||||||
// default segment length of appropriate 1D hypotheses is defined
|
// default segment length of appropriate 1D hypotheses is defined
|
||||||
int _segmentation;
|
int _segmentation;
|
||||||
// default of segments
|
// default number of segments
|
||||||
int _nbSegments;
|
int _nbSegments;
|
||||||
|
|
||||||
counters *_counters;
|
counters *_counters;
|
||||||
|
|
||||||
#ifdef WITH_SMESH_CANCEL_COMPUTE
|
volatile bool _compute_canceled;
|
||||||
volatile bool _compute_canceled;
|
|
||||||
SMESH_subMesh* _sm_current;
|
SMESH_subMesh* _sm_current;
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user