attractor/3 Lorenz (stop_motion3)

2 Views
Find Similar (BETA)Download
Author name
n-
Source
Sketchfab
Polygon Count
2,430
Release Date
2017-10-02
License
CC BY 4.0

Asset Overview

> a = 5, b = 15, c = 8/3, ``` def lorenz(a, b, c): return lambda x, y, z:( -a*x + a*y, b*x - y - x*z, x*y - c*z ) ```