Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 448 Bytes

File metadata and controls

23 lines (12 loc) · 448 Bytes

Hénon Attractor in Python3, Pygame.

The Hénon Attractors are governed by the following system of difference equations:

$$x_{n+1} = 1 - a x_{n}^2 + y_{n}$$

$$y_{n+1} = b x_{n}$$

Click here for more information on the Hénon Attractor.

Requirements

  1. pygame

  2. time

How to use:

Run the python file main.py.

  1. Press return to start.

  2. Press q or close the window to quit.