mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
demoview fix ??
This commit is contained in:
parent
ef8edec3b8
commit
5764ae448c
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user