Mandelbrot set: Difference between revisions

m
Undo revision 357287 by Majow (talk) Change was unnecessary
m (→‎Normal Map Effect, Mercator Projection and Deep Zoom Images: The conversion to float is specified on float64 (so that it can also be converted to other data types such as float32 or float128))
m (Undo revision 357287 by Majow (talk) Change was unnecessary)
Line 11,308:
 
for k in range(n+1):
S[k] = np.float64float(u) + np.float64float(v) * 1j
if u ** 2 + v ** 2 < r ** 2:
u, v = u ** 2 - v ** 2 + a, 2 * u * v + b
305

edits