lemon/bits/bezier.h
changeset 184 716b220697a0
parent 157 2ccc1afc2c52
child 209 765619b7cbb2
     1.1 --- a/lemon/bits/bezier.h	Fri Jun 20 11:09:30 2008 +0100
     1.2 +++ b/lemon/bits/bezier.h	Thu Mar 27 16:27:23 2008 +0100
     1.3 @@ -32,7 +32,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  };