diff --git a/libsrc/csg/algprim.cpp b/libsrc/csg/algprim.cpp index 4636453b..9391066b 100644 --- a/libsrc/csg/algprim.cpp +++ b/libsrc/csg/algprim.cpp @@ -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); }