[orx-shapes] Refactor package layout
This commit is contained in:
19
orx-shapes/src/jvmDemo/kotlin/hobbycurve/DemoHobbyCurve01.kt
Normal file
19
orx-shapes/src/jvmDemo/kotlin/hobbycurve/DemoHobbyCurve01.kt
Normal file
@@ -0,0 +1,19 @@
|
||||
package hobbycurve
|
||||
|
||||
import org.openrndr.application
|
||||
import org.openrndr.color.ColorRGBa
|
||||
import org.openrndr.extra.shapes.hobbycurve.hobbyCurve
|
||||
import org.openrndr.math.Vector2
|
||||
|
||||
fun main() = application {
|
||||
program {
|
||||
extend {
|
||||
val points = listOf(Vector2(150.0, 350.0), Vector2(325.0, 100.0), Vector2(500.0, 350.0), Vector2(325.0, 250.0))
|
||||
drawer.stroke = ColorRGBa.BLACK
|
||||
drawer.fill = ColorRGBa.PINK
|
||||
drawer.contour(hobbyCurve(points, closed=true))
|
||||
drawer.fill = ColorRGBa.WHITE
|
||||
drawer.circles(points, 4.0)
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user