[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,40 @@
/*
Drawing a square using the turtle interface.
*/
import org.openrndr.application
import org.openrndr.color.ColorRGBa
import org.openrndr.extra.turtle.turtle
fun main() {
application {
program {
// turtle returns List<ShapeContour>
val contours = turtle(drawer.bounds.center) {
penUp()
forward(50.0)
rotate(90.0)
forward(50.0)
penDown()
rotate(90.0)
forward(100.0)
rotate(90.0)
forward(100.0)
rotate(90.0)
forward(100.0)
rotate(90.0)
forward(100.0)
}
extend {
// draw the contours
drawer.stroke = ColorRGBa.PINK
drawer.contours(contours)
}
}
}
}