cg-vision
Home
EvaNotebooks
Exercise 7 - Julia Set
Mar 14, 23
Press Enter to execute. Check out
Mathjs
to use Complex numbers and another math.
globalThis.c = math.evaluate('0.7885e^i'); globalThis.complexFunction = function(complex) { return complex.mul(complex).add(globalThis.c); } globalThis.pseudoInfinity = 100; globalThis.iterations = 4;