Merge branch 'change_startpoint_sphere_meshing' into 'master'

change startpoint for sphere meshing so that it's less likely to hit a

See merge request jschoeberl/netgen!100
This commit is contained in:
Joachim Schöberl 2018-08-31 11:40:07 +02:00
commit 41b8944532

View File

@ -557,7 +557,8 @@ namespace netgen
Point<3> Sphere :: GetSurfacePoint () const
{
return c + Vec<3> (r, 0, 0);
// if two spheres touch at exactly that point meshing fails.
return c + Vec<3> (0.12345, 0.54321, 0.8304715488203073);
}