attractor/3 Lorenz (armature3_follow_path)

1 View
Find Similar (BETA)Download
Author name
n-
Source
Sketchfab
Polygon Count
80,002
Release Date
2017-10-02
License
CC BY 4.0

Asset Overview

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