Bump to OPENRNDR 0.3.44-rc.2
This commit is contained in:
18
openrndr-demos/src/demo/kotlin/DemoCircleBatch01.kt
Normal file
18
openrndr-demos/src/demo/kotlin/DemoCircleBatch01.kt
Normal file
@@ -0,0 +1,18 @@
|
||||
import org.openrndr.application
|
||||
import org.openrndr.color.ColorRGBa
|
||||
|
||||
/*
|
||||
This demo just verifies that drawing a single circle still works with revamped circle drawing code
|
||||
*/
|
||||
fun main() = application {
|
||||
program {
|
||||
extend {
|
||||
drawer.clear(ColorRGBa.GRAY)
|
||||
drawer.fill = ColorRGBa.PINK
|
||||
drawer.stroke = ColorRGBa.WHITE
|
||||
drawer.strokeWeight = 2.0
|
||||
drawer.circle(100.0, 100.0, 50.0)
|
||||
drawer.rectangle(100.0, 100.0, 50.0, 50.0)
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user