]> Shamusworld >> Repos - ttedit/blobdiff - src/bezier.h
Repurposed code in bezier.h/cpp, added middle button scrolling
[ttedit] / src / bezier.h
diff --git a/src/bezier.h b/src/bezier.h
deleted file mode 100755 (executable)
index 4a5c5ee..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// True Type Hack\r
-//\r
-// Bezier Curve fitter header\r
-//\r
-// This function takes three points and draws a curve using a\r
-// second order Bezier function.\r
-\r
-#ifndef __BEZIER_H__\r
-#define __BEZIER_H__\r
-\r
-#include <wx/wx.h>                                                             // For device context\r
-\r
-struct point\r
-{\r
-       float x, y;\r
-\r
-       point(float xx = 0, float yy = 0): x(xx), y(yy) {}\r
-};\r
-\r
-void Bezier(wxDC &, point, point, point);\r
-\r
-#endif // __BEZIER_H__\r