attractor/18 Polynomial B (stop_motion)

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

Asset Overview

> p0 = -0.237, p1 = 0.453, p2 = 0.486, p3 = 0.616, p4 = 1.141, p5 = 0.483, ``` def polynomial_b(p0, p1, p2, p3, p4, p5): return lambda x, y, z: ( p0 + y - z*(p1 + y), p2 + z - x*(p3 + z), p4 + x - y*(p5 + x) ) ```