Bump OPENRNDR to 0.3.37

This commit is contained in:
Edwin Jakobs
2019-12-11 21:05:27 +01:00
parent d192519e5c
commit 875e05c130
10 changed files with 32 additions and 10 deletions

View File

@@ -0,0 +1,3 @@
dependencies {
compile project(":orx-fx")
}

View File

@@ -2,7 +2,9 @@ package org.openrndr.extra.jumpfill
import org.openrndr.color.ColorRGBa
import org.openrndr.draw.*
import org.openrndr.filter.blend.passthrough
import org.openrndr.extra.fx.blend.Passthrough
import org.openrndr.math.Matrix44
import org.openrndr.math.Vector2
import org.openrndr.resourceUrl
@@ -37,6 +39,7 @@ private val pixelDistance by lazy { PixelDistance() }
private val pixelDirection by lazy { PixelDirection() }
private val contourPoints by lazy { ContourPoints() }
private val threshold by lazy { Threshold() }
private val passthrough by lazy { Passthrough() }
class JumpFlooder(val width: Int, val height: Int, format:ColorFormat = ColorFormat.RGB, type:ColorType = ColorType.FLOAT32) {