Add default simple logging

* Bump library versions
 * Bump template version
 * Small clean-up of TemplateProgram.kt
This commit is contained in:
Edwin Jakobs
2019-11-10 14:26:16 +01:00
parent c0205c03b8
commit 1ab4b6e538
2 changed files with 32 additions and 17 deletions

View File

@@ -1,8 +1,10 @@
import org.openrndr.application
import org.openrndr.color.ColorRGBa
import org.openrndr.draw.FontImageMap
import org.openrndr.draw.loadFont
import org.openrndr.draw.loadImage
import org.openrndr.draw.tint
import kotlin.math.cos
import kotlin.math.sin
fun main() = application {
configure {
@@ -12,19 +14,19 @@ fun main() = application {
program {
val image = loadImage("file:data/images/pm5544.png")
val font = FontImageMap.fromUrl("file:data/fonts/IBMPlexMono-Regular.ttf", 64.0)
val image = loadImage("data/images/pm5544.png")
val font = loadFont("data/fonts/IBMPlexMono-Regular.ttf", 64.0)
extend {
drawer.drawStyle.colorMatrix = tint(ColorRGBa.WHITE.shade(0.2))
drawer.image(image)
drawer.fill = ColorRGBa.PINK
drawer.circle(Math.cos(seconds)*width/2.0+width/2.0, Math.sin(0.5*seconds)*height/2.0 + height/2.0, 140.0)
drawer.circle(cos(seconds) * width / 2.0 + width / 2.0, sin(0.5 * seconds) * height / 2.0 + height / 2.0, 140.0)
drawer.fontMap = font
drawer.fill = ColorRGBa.WHITE
drawer.text("OPENRNDR", width/2.0, height /2.0)
drawer.text("OPENRNDR", width / 2.0, height / 2.0)
}
}
}