mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-25 05:20:34 +05:00
demoview fix ??
This commit is contained in:
parent
ef8edec3b8
commit
5764ae448c
@ -98,7 +98,17 @@ template <class S>
|
|||||||
class InterpolationSpline
|
class InterpolationSpline
|
||||||
{
|
{
|
||||||
protected:
|
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;
|
int finished;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
Loading…
Reference in New Issue
Block a user