Files
orx/orx-shade-styles/src/jvmDemo/kotlin/gradients/DemoGradient07.kt
2025-08-04 12:00:35 +02:00

43 lines
1.3 KiB
Kotlin

package gradients
import org.openrndr.application
import org.openrndr.color.ColorRGBa
import org.openrndr.extra.camera.Camera2D
import org.openrndr.extra.shadestyles.fills.FillFit
import org.openrndr.extra.shadestyles.fills.FillUnits
import org.openrndr.extra.shadestyles.fills.SpreadMethod
import org.openrndr.extra.shadestyles.fills.gradients.gradient
import org.openrndr.extra.shapes.primitives.grid
import org.openrndr.math.Vector2
fun main() = application {
configure {
width = 720
height = 720
}
program {
extend(Camera2D())
extend {
val grid = drawer.bounds.grid(48, 1)
drawer.stroke = null
for ((index, cell) in grid.flatten().withIndex()) {
drawer.shadeStyle = gradient<ColorRGBa> {
quantization = index + 2
stops[0.0] = ColorRGBa.WHITE
stops[ (quantization) / (quantization+1.0)] = ColorRGBa.BLACK
fillUnits = FillUnits.BOUNDS
fillFit = FillFit.COVER
spreadMethod = SpreadMethod.PAD
linear {
start = Vector2(0.5, 0.0)
end = Vector2(0.5, 1.0)
}
}
drawer.rectangle(cell)
}
}
}
}