Skip to content
Snippets Groups Projects
Commit c6f0c29b authored by Jean-François Remacle's avatar Jean-François Remacle
Browse files

*** empty log message ***

parent 523c373d
Branches
Tags
No related merge requests found
// $Id: BackgroundMesh.cpp,v 1.52 2008-04-18 16:40:29 geuzaine Exp $
// $Id: BackgroundMesh.cpp,v 1.53 2008-04-23 10:42:51 remacle Exp $
//
// Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
//
......@@ -102,9 +102,9 @@ static double LC_MVertex_CURV(GEntity *ge, double U, double V)
case 1:
{
GEdge *ged = (GEdge *)ge;
Crv = ged->curvature(U);
Crv = std::max(Crv, max_surf_curvature(ged, U));
//Crv = max_surf_curvature(ged, U);
//Crv = ged->curvature(U);
//Crv = std::max(Crv, max_surf_curvature(ged, U));
Crv = max_surf_curvature(ged, U);
}
break;
case 2:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment