Bump to OPENRNDR 0.3.45-rc.2

This commit is contained in:
Edwin Jakobs
2020-11-15 13:20:26 +01:00
parent 5a79072d77
commit 610064c9f4
3 changed files with 61 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
import org.openrndr.application
import org.openrndr.color.ColorRGBa
import org.openrndr.shape.Circle
/**
* a simple demo that tests heavy stroke weights on tiny geometry
*
* This was made to assist in resolving https://github.com/openrndr/openrndr/issues/164
*/
fun main() = application {
program {
val c = Circle(200.0, 200.0, 10.0).contour
extend {
drawer.strokeWeight = mouse.position.y
drawer.stroke = ColorRGBa.PINK
drawer.contour(c)
}
}
}