diff -r 5222a3c470ed -r 6aa6fcaeaea5 lemon/bits/bezier.h --- a/lemon/bits/bezier.h Tue Jul 22 11:29:57 2008 +0000 +++ b/lemon/bits/bezier.h Fri Sep 19 15:14:41 2008 +0000 @@ -34,7 +34,7 @@ class BezierBase { public: - typedef Point Point; + typedef lemon::dim2::Point Point; protected: static Point conv(Point x,Point y,double t) {return (1-t)*x+t*y;} };