Fix SplineSeg ctor

This commit is contained in:
Matthias Hochsteger 2021-06-08 19:28:24 +02:00
parent abb2e43ccb
commit d6ca80d50e

View File

@ -107,7 +107,7 @@ namespace netgen
double aweight,
string bcname,
double maxh)
: SplineSeg<D>(maxh, bcname), p1(ap1), p2(ap2), p3(ap3)
: SplineSeg<D>(maxh, bcname), p1(ap1), p2(ap2), p3(ap3), weight(aweight)
{
proj_latest_t = 0.5;
}