雪片曲線
タートルグラフィックスで再帰で雪片曲線は基本ですよね
どうせ再帰の記事は後で書かれるだろうから僕は別のネタを考えたり考えなかったりします
http://junk.wise9.jp/js/
function onLoad(){ logo.init(); turn(90); move(-180); penDown(); koch(5,360); penUp(); } function koch(level, length) { if(level>0) { var len = length / 3; koch(level - 1, len); turn(60); koch(level - 1, len); turn(-120); koch(level - 1, len); turn(60); koch(level - 1, len); } else { move(length); } }