From 57a304e32eac65740cb005e0fb897921c274391d Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Tue, 27 Feb 2007 22:01:59 +0000
Subject: [PATCH] remove extra stuff

---
 Geo/GeoInterpolation.cpp | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/Geo/GeoInterpolation.cpp b/Geo/GeoInterpolation.cpp
index 19cd61b104..68729918ac 100644
--- a/Geo/GeoInterpolation.cpp
+++ b/Geo/GeoInterpolation.cpp
@@ -1,4 +1,4 @@
-// $Id: GeoInterpolation.cpp,v 1.20 2007-02-27 22:01:25 geuzaine Exp $
+// $Id: GeoInterpolation.cpp,v 1.21 2007-02-27 22:01:59 geuzaine Exp $
 //
 // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
 //
@@ -256,11 +256,6 @@ Vertex InterpolateCurve(Curve * c, double u, int derivee)
 
   case MSH_SEGM_LINE:
     N = List_Nbr(c->Control_Points);
-
-    // FIXME: CG added 27/02/07 - why/how/when do we have HUGE |u| here?
-    //if(u < c->ubeg) u = c->ubeg;
-    //if(u > c->uend) u = c->uend;
-
     i = (int)((double)(N - 1) * u);
     while(i >= N - 1)
       i--;
-- 
GitLab