Spacing issue

This commit is contained in:
Grant Sanderson 2021-04-29 09:35:38 -07:00
parent 924d86263b
commit 9b89687972

View file

@ -39,7 +39,7 @@ DEGREES = TAU/360
inverse_power_law = lambda maxint,scale,cutoff,exponent: \
(lambda r: maxint * (cutoff/(r/scale+cutoff))**exponent)
inverse_quadratic = lambda maxint,scale,cutoff: inverse_power_law(maxint,scale,cutoff,2)
inverse_quadratic = lambda maxint, scale, cutoff: inverse_power_law(maxint,scale,cutoff,2)
# A = np.array([5.,-3.,0.])
# B = np.array([-5.,3.,0.])