>>684
コッホ曲線描けました。ほとんどコピペですが。。。向きが逆とか・・

val t = Turtle(60.0, Point(xc, yc) )

fun Kochsub(degree:Int, step:Double) {
if (degree == 0) {
t.walk(step);
// walk の始点と終点を結ぶ線分を描く
} else {
Kochsub(degree - 1, step/3);
t.turn(-60);
Kochsub(degree - 1, step/3);
t.turn(120);
Kochsub(degree - 1, step/3);
t.turn(-60);
Kochsub(degree - 1, step/3);
}
}
Kochsub(4, 600.0)

https://i.imgur.com/ir9iJQy.jpg