Recover correct point type in smoothing2d

This commit is contained in:
Matthias Hochsteger 2019-10-23 11:08:30 +02:00
parent 082908a5ec
commit 37198d0cee

View File

@ -969,7 +969,7 @@ namespace netgen
// NgProfiler::StopTimer (timer2);
Point3d origp = mesh[pi];
auto origp = mesh[pi];
int loci = 1;
double fact = 1;
int moveisok = 0;
@ -1021,7 +1021,7 @@ namespace netgen
}
else
{
mesh[pi] = Point<3> (origp);
mesh[pi] = origp;
}
}