removed the unused loop struct.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
diff --git a/include/FTVectoriser.h b/include/FTVectoriser.h
index 1a7392c..f3e731a 100644
--- a/include/FTVectoriser.h
+++ b/include/FTVectoriser.h
@@ -11,38 +11,6 @@
using namespace std;
-// template < typename T>
-// class ftLoop
-// {
-// public:
-// ftLoop();
-// ~ftLoop()
-// {
-// list.clear();
-// }
-//
-// T& operator [] (unsigned int i)
-// {
-// int x = i;
-// if( i < 0)
-// x = i + list.size();
-//
-// if( i > list.size())
-// x = i % list.size();
-//
-// return list[x];
-// }
-//
-// void push_back( T t)
-// {
-// list.push_back(t);
-// }
-//
-// private:
-// vector<T> list;
-// };
-
-
class ftPoint
{
public: