40 lines
1.0 KiB
Kotlin
40 lines
1.0 KiB
Kotlin
import org.openrndr.application
|
|
import org.openrndr.color.ColorRGBa
|
|
import org.openrndr.extra.composition.composition
|
|
import org.openrndr.extra.composition.drawComposition
|
|
import org.openrndr.extra.svg.toSVG
|
|
import org.openrndr.math.Vector2
|
|
|
|
/**
|
|
* Demonstrates how to
|
|
*
|
|
* - Create a Composition
|
|
* - Draw it on the program window
|
|
* - Save it to an SVG file
|
|
* - Print the SVG content as text
|
|
*/
|
|
fun main() = application {
|
|
program {
|
|
val composition = drawComposition {
|
|
fill = ColorRGBa.PINK
|
|
stroke = ColorRGBa.BLACK
|
|
strokeWeight = 10.0
|
|
circle(Vector2(width / 2.0, height / 2.0), 100.0)
|
|
circle(Vector2(200.0, 200.0), 50.0)
|
|
}
|
|
|
|
// print the svg to the console
|
|
println(composition.toSVG())
|
|
|
|
// save svg to a File
|
|
//composition.saveToFile(File("/path/to/design.svg"))
|
|
|
|
extend {
|
|
drawer.clear(ColorRGBa.WHITE)
|
|
|
|
// draw the composition to the screen
|
|
drawer.composition(composition)
|
|
}
|
|
}
|
|
}
|