[orx-turtle] Add orx-turtle module

This commit is contained in:
Edwin Jakobs
2023-02-02 09:33:06 +01:00
parent 443b7f4155
commit c850ed9c84
9 changed files with 312 additions and 2 deletions

View File

@@ -0,0 +1,28 @@
/*
A simple random walk made using the turtle interface.
*/
import org.openrndr.application
import org.openrndr.color.ColorRGBa
import org.openrndr.extra.noise.uniform
import org.openrndr.extra.turtle.turtle
import org.openrndr.math.Vector2
import kotlin.random.Random
fun main() {
application {
program {
val r = Random(40)
val contours = turtle(drawer.bounds.center + Vector2(-50.0, 50.0)) {
for (i in 0 until 500) {
rotate(Double.uniform(-90.0, 90.0, r))
forward(Double.uniform(10.0, 40.0, r))
}
}
extend {
drawer.stroke = ColorRGBa.PINK
drawer.contours(contours)
}
}
}
}