mandelbulb fix

arg4 and arg5 undefined for bulb and cBulb, changed back to default
values of 0 and d, respectively
master
matortheeternal 2014-04-17 08:43:39 -07:00
parent e9654f67cf
commit 1f9eda27cd
1 changed files with 2 additions and 2 deletions

View File

@ -1186,7 +1186,7 @@ function hilbertTurtle(d0) {
// making a quick mandelbulb
function bulb() {
for (var x = arg4; x < arg5; x++) {
for (var x = 0; x < d; x++) {
var xc = tf(x);
for (var y = 0; y < d; y++) {
var yc = tf(y);
@ -1233,7 +1233,7 @@ function bulb() {
// making a custom mandelbulb
function cBulb() {
for (var x = arg4; x < arg5; x++) {
for (var x = 0; x < d; x++) {
var xc = tf(x);
for (var y = 0; y < d; y++) {
var yc = tf(y);