Divisions IX

More divisions

Log in to post a comment.

// You can find the Turtle API reference here: https://turtletoy.net/syntax
Canvas.setpenopacity(1);

const iterations = 5;       //min = 0, max = 8, step = 1
const size = 90;            //min = 10, max = 100, step = 1

// Global code will be evaluated once.
const turtle = new Turtle();

function divide(x, y, s, l){
    
    if(l == 0){

        let rand = Math.random();
        
        if(rand < 0.5){
            turtle.jump(x-s, y);
            turtle.goto(x-s/2, y-s);

            turtle.jump(x-s/2, y+s);
            turtle.goto(x+s/2, y-s);

            turtle.jump(x+s/2, y+s);
            turtle.goto(x+s, y);
        } else {
            turtle.jump(x-s, y);
            turtle.goto(x-s/2, y+s);

            turtle.jump(x-s/2, y-s);
            turtle.goto(x+s/2, y+s);

            turtle.jump(x+s/2, y-s);
            turtle.goto(x+s, y);
        }
        
    } else {
        l--;
        s /= 2;
        
        divide(x+s, y+s, s, l);
        divide(x+s, y-s, s, l);
        divide(x-s, y+s, s, l);
        divide(x-s, y-s, s, l);
    }
}

divide(0, 0, size, iterations)

// The walk function will be called until it returns false.
function walk(i) {
    
    return false;
}