u(t) is called 60 times per second.
t: Elapsed time in seconds.
S: Shorthand for Math.sin.
C: Shorthand for Math.cos.
T: Shorthand for Math.tan.
R: Function that generates rgba-strings, usage ex.: R(255, 255, 255, 0.5)
c: A 1920x1080 canvas.
x: A 2D context for that canvas.
For zoom without slowing down use k=t**t, but you will need very precise coordinates. Here are some other coords I found: f((X-50+k)/k+5100096e-9,1-(Y-28+k)/k), f((X-50+k)/k-2,1-(Y-28+k)/k+201113e-7)
Wow! #underrated#colourful How did you make it infinite? Whenever I’ve tried making a Mandelbrot it always pixelates after the first few seconds of zoom ing in.
u(t) is called 60 times per second.
t: elapsed time in seconds.
c: A 1920x1080 canvas.
x: A 2D context for that canvas.
S: Math.sin
C: Math.cos
T: Math.tan
R: Generates rgba-strings, ex.: R(255, 255, 255, 0.5)