attractor/19 Gumowski-Mira (shape_key)

6 Views
Find Similar (BETA)Download
Author name
n-
Source
Sketchfab
Polygon Count
20,000
Release Date
2017-09-19
License
CC BY 4.0

Asset Overview

> a =0.008, b = 0.05, μ = -0.8, > x = 0.0, y = 0.5, ``` def gumowski_mira(a, b, μ): f = lambda x,μ: μ*x + (2*(1 - μ)*x*x)/(1 + x*x) nx = lambda x, y: y + a*(1 - b*y*y)*y + f(x, μ) return lambda x, y, z: ( nx(x, y), -x + f(nx(x, y), μ), 0 ) ```