Demos: ensure all use fun main() = application {
- Adjust some demo window sizes. - Replace Random.double by Double.uniform - Tweak some demos so screenshots look more interesting
This commit is contained in:
@@ -6,35 +6,33 @@ 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()
|
||||
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)
|
||||
|
||||
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)
|
||||
}
|
||||
extend {
|
||||
// draw the contours
|
||||
drawer.stroke = ColorRGBa.PINK
|
||||
drawer.contours(contours)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user