/Fractals_circuitpython

Fractals drawing lib for circuitpython

Primary LanguagePythonMIT LicenseMIT

Fractals_circuitpython

Fractals drawing lib for circuitpython

Intro

This lib is developped to demonstrate the capabilities of circuitpython, and to find the limits of the microcontrolers.

Usage

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

In the lib

  • mandelbrot()
  • mandelbrot_points
  • quasicrystal()

More infos