more comments

This commit is contained in:
eap 2013-01-28 08:31:21 +00:00
parent 1fff018cb3
commit 09024c777c

View File

@ -108,9 +108,13 @@ bool StdMeshers_Projection_1D2D::Compute(SMESH_Mesh& theMesh, const TopoDS_Shape
{
UnsetterOfEventProparatorToEdges eventBarrier( theMesh.GetSubMesh( theShape ));
// 1) Project faces
if ( !StdMeshers_Projection_2D::Compute(theMesh, theShape))
return false;
// 2) Create segments
SMESHDS_Mesh * meshDS = theMesh.GetMeshDS();
SMESHDS_SubMesh * faceSubMesh = meshDS->MeshElements( theShape );
@ -173,7 +177,7 @@ bool StdMeshers_Projection_1D2D::Compute(SMESH_Mesh& theMesh, const TopoDS_Shape
meshDS->SetMeshElementOnShape( e, edgeID );
}
}
}
}
return true;
}