changed collapse threshold
This commit is contained in:
parent
9bfc4d6fc1
commit
83bfca08f9
2
field.py
2
field.py
|
|
@ -6,7 +6,7 @@ class Field3d:
|
||||||
self.data = numpy.array(data)
|
self.data = numpy.array(data)
|
||||||
self.origin = tuple([float(x) for x in origin])
|
self.origin = tuple([float(x) for x in origin])
|
||||||
self.spacing = tuple([float(x) for x in spacing])
|
self.spacing = tuple([float(x) for x in spacing])
|
||||||
self.eps_collapse = 1e-12
|
self.eps_collapse = 1e-7
|
||||||
self._dim = None
|
self._dim = None
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue