looking up to sun
Log in to post a comment.
Canvas.setpenopacity(.6); // Global code will be evaluated once. const mode = 0; // min=0 max=3 step=1 (Aquarelle,Perfect,Spirograph, Abstract) const turtle = new Turtle(); turtle.jump(0, 18.13); let max = 12 * Math.PI * (mode > 1? 300:500); // The walk function will be called until it returns false. function walk(i) { let t = i / (mode == 0? 5: mode==1? 50: mode==2?4: 1.61803398875); //last one is golden ratio let eq = Math.pow(Math.E, Math.cos(t)) - (2 * Math.cos(3*t)) - Math.pow(Math.sin(t/13), 8); let x = Math.sin(t) * eq; let y = Math.cos(t) * eq; turtle.goto(x * 24, 17.3 + (-y * 24)); return i < max; }