lemon/bits/bezier.h
changeset 2618 6aa6fcaeaea5
parent 2553 bfced05fa852
     1.1 --- a/lemon/bits/bezier.h	Tue Jul 22 11:29:57 2008 +0000
     1.2 +++ b/lemon/bits/bezier.h	Fri Sep 19 15:14:41 2008 +0000
     1.3 @@ -34,7 +34,7 @@
     1.4  
     1.5  class BezierBase {
     1.6  public:
     1.7 -  typedef Point<double> Point;
     1.8 +  typedef lemon::dim2::Point<double> Point;
     1.9  protected:
    1.10    static Point conv(Point x,Point y,double t) {return (1-t)*x+t*y;}
    1.11  };