Fractals drawing lib for circuitpython
This lib is developped to demonstrate the capabilities of circuitpython, and to find the limits of the microcontrolers.
simple example
import fractals
import displayio
import board
display = board.DISPLAY
group = displayio.Group()
display.show(group)
group = fractals.mandelbrot(display.width, display.height, group=group)
while True:
pass
- mandelbrot()
- mandelbrot_points
- quasicrystal()