Skip to content

Marius-450/Fractals_circuitpython

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Fractals drawing lib for circuitpython

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages