curvedraw

diff src/curve.h @ 4:9f75208b81cd

allow panning while inserting control points don't scale text with the viewport
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 17 Dec 2015 07:22:14 +0200
parents ce7aa9a0594c
children 84a647283237
line diff
     1.1 --- a/src/curve.h	Thu Dec 17 07:10:10 2015 +0200
     1.2 +++ b/src/curve.h	Thu Dec 17 07:22:14 2015 +0200
     1.3 @@ -43,9 +43,6 @@
     1.4  	Vector2 interpolate(float t, CurveType type) const;
     1.5  	Vector2 interpolate(float t) const;
     1.6  	Vector2 operator ()(float t) const;
     1.7 -
     1.8 -	void draw(int res = -1) const;
     1.9 -	void draw_cp(float sz = -1.0f) const;
    1.10  };
    1.11  
    1.12  #endif	// CURVE_H_