]> SALOME platform Git repositories - plugins/netgenplugin.git/commitdiff
Salome HOME
0020832: EDF 1359 SMESH : Automatic meshing of boundary layers BR_ViscousLayerAlgo
authoreap <eap@opencascade.com>
Mon, 17 Jan 2011 08:48:19 +0000 (08:48 +0000)
committereap <eap@opencascade.com>
Mon, 17 Jan 2011 08:48:19 +0000 (08:48 +0000)
   Move StdMeshers_ProxyMesh -> SMESH_ProxyMesh

src/NETGENPlugin/NETGENPlugin_NETGEN_3D.cxx

index d6faefb045c375cea2d571ab05d55736d7c6688c..cb8443c2234e2ebfdd19579728bab8be0485fb88 100644 (file)
@@ -200,7 +200,7 @@ bool NETGENPlugin_NETGEN_3D::Compute(SMESH_Mesh&         aMesh,
     TopAbs_ShapeEnum mainType = aMesh.GetShapeToMesh().ShapeType();
     bool checkReverse = ( mainType == TopAbs_COMPOUND || mainType == TopAbs_COMPSOLID );
 
-    StdMeshers_ProxyMesh::Ptr proxyMesh( new StdMeshers_ProxyMesh( aMesh ));
+    SMESH_ProxyMesh::Ptr proxyMesh( new SMESH_ProxyMesh( aMesh ));
     if ( _viscousLayersHyp )
     {
       proxyMesh = _viscousLayersHyp->Compute( aMesh, aShape );
@@ -416,7 +416,7 @@ bool NETGENPlugin_NETGEN_3D::Compute(SMESH_Mesh&         aMesh,
   NETGENPlugin_NetgenLibWrapper ngLib;
   Ng_Mesh * Netgen_mesh = ngLib._ngMesh;
 
-  StdMeshers_ProxyMesh::Ptr proxyMesh( new StdMeshers_ProxyMesh( aMesh ));
+  SMESH_ProxyMesh::Ptr proxyMesh( new SMESH_ProxyMesh( aMesh ));
   if ( aMesh.NbQuadrangles() > 0 )
   {
     StdMeshers_QuadToTriaAdaptor* Adaptor = new StdMeshers_QuadToTriaAdaptor;