ludus-scripts/koch.ld

21 lines
254 B
Plaintext
Raw Normal View History

2024-06-11 21:37:04 +00:00
& koch curve
let length = 10
fn koch! {
(0) -> fd! (length)
(n) -> {
koch! (dec (n))
lt! (0.25)
koch! (dec (n))
rt! (0.25)
koch! (dec (n))
rt! (0.25)
koch! (dec (n))
lt! (0.25)
koch! (dec (n))
}
}
& koch! (3)