summaryrefslogtreecommitdiff
path: root/src/CurveEditor.H
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-01-13 12:52:35 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-01-13 12:52:35 +0100
commit8cdc05b1a227a2a1185eb6b33acb22e36e6a42f5 (patch)
treeb1e7e93ea4d1e3e6c96710523467096662a5ed1c /src/CurveEditor.H
parentdfa9e1677f24e06e8da8a136bc568c2f0be1d050 (diff)
parse -C argument in flcurve
Diffstat (limited to 'src/CurveEditor.H')
-rw-r--r--src/CurveEditor.H4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/CurveEditor.H b/src/CurveEditor.H
index 333bd45..c7f4691 100644
--- a/src/CurveEditor.H
+++ b/src/CurveEditor.H
@@ -22,7 +22,9 @@ class CurveEditor : public Fl_Widget {
public:
CurveEditor(int _x, int _y, int _w, int _h);
- void set(int i, double _x, double _y);
+ void add_point(double _x, double _y);
+ void init();
+ void set_point(int i, double _x, double _y);
void draw();
int handle(int e);
};