diff -r 0c6556a8e105 -r 716b220697a0 lemon/bits/bezier.h --- a/lemon/bits/bezier.h Fri Jun 20 11:09:30 2008 +0100 +++ b/lemon/bits/bezier.h Thu Mar 27 16:27:23 2008 +0100 @@ -32,7 +32,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;} };