[orx-shadestyles] Improve gradient and imageFill shadestyles
This commit is contained in:
25
orx-shade-styles/src/jvmDemo/kotlin/image/DemoImageFill01.kt
Normal file
25
orx-shade-styles/src/jvmDemo/kotlin/image/DemoImageFill01.kt
Normal file
@@ -0,0 +1,25 @@
|
||||
package image
|
||||
|
||||
import org.openrndr.application
|
||||
import org.openrndr.draw.loadImage
|
||||
import org.openrndr.extra.shadestyles.fills.FillUnits
|
||||
import org.openrndr.extra.shadestyles.fills.SpreadMethod
|
||||
import org.openrndr.extra.shadestyles.fills.image.imageFill
|
||||
import org.openrndr.math.transforms.transform
|
||||
|
||||
fun main() = application {
|
||||
configure {
|
||||
width = 720
|
||||
height = 720
|
||||
}
|
||||
program {
|
||||
var img = loadImage("demo-data/images/image-001.png")
|
||||
extend {
|
||||
drawer.shadeStyle = imageFill {
|
||||
image = img
|
||||
}
|
||||
drawer.circle(drawer.bounds.center, 200.0)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user