changed collapse threshold

This commit is contained in:
Michael Krayer 2021-06-03 12:47:42 +02:00
parent 9bfc4d6fc1
commit 83bfca08f9
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ class Field3d:
self.data = numpy.array(data)
self.origin = tuple([float(x) for x in origin])
self.spacing = tuple([float(x) for x in spacing])
self.eps_collapse = 1e-12
self.eps_collapse = 1e-7
self._dim = None
return