move StdMeshers_Helper to SMESH_MesherHelper (for linear<->quadratic mesh conversion)

This commit is contained in:
eap 2006-04-27 14:06:39 +00:00
parent ba5070121d
commit b0e14beffa

View File

@ -17,7 +17,7 @@ using namespace std;
#include "SMESHDS_Mesh.hxx" #include "SMESHDS_Mesh.hxx"
#include "SMDS_MeshElement.hxx" #include "SMDS_MeshElement.hxx"
#include "SMDS_MeshNode.hxx" #include "SMDS_MeshNode.hxx"
#include "StdMeshers_Helper.hxx" #include "SMESH_MesherHelper.hxx"
#include <BRep_Tool.hxx> #include <BRep_Tool.hxx>
#include <TopExp.hxx> #include <TopExp.hxx>
@ -141,7 +141,7 @@ bool NETGENPlugin_NETGEN_3D::Compute(SMESH_Mesh& aMesh,
// get triangles on aShell and make a map of nodes to Netgen node IDs // get triangles on aShell and make a map of nodes to Netgen node IDs
// ------------------------------------------------------------------- // -------------------------------------------------------------------
StdMeshers_Helper* myTool = new StdMeshers_Helper(aMesh); SMESH_MesherHelper* myTool = new SMESH_MesherHelper(aMesh);
bool _quadraticMesh = myTool->IsQuadraticSubMesh(aShape); bool _quadraticMesh = myTool->IsQuadraticSubMesh(aShape);
typedef map< const SMDS_MeshNode*, int> TNodeToIDMap; typedef map< const SMDS_MeshNode*, int> TNodeToIDMap;