demoview fix ??

This commit is contained in:
Joachim Schoeberl 2009-07-04 17:41:55 +00:00
parent ef8edec3b8
commit 5764ae448c

View File

@ -98,7 +98,17 @@ template <class S>
class InterpolationSpline
{
protected:
Array < InterpolationPoint<S>[3] > ip;
// typedef Vec<3, InterpolationPoint<S> > intpts;
// Array < InterpolationPoint<S>[3] > ip;
class intpts
{
public:
InterpolationPoint<S> pts[3];
InterpolationPoint<S> & operator[](int i) { return pts[i]; }
};
Array < intpts > ip;
int finished;
public: