Add poisson demo (#111)

* Add poisson fill demo

* Add missing screenshot code in demo
This commit is contained in:
Abe Pazos
2020-05-21 08:55:25 +02:00
committed by GitHub
parent 8eae54d2b5
commit e2831dc6f4
2 changed files with 109 additions and 1 deletions

View File

@@ -1,3 +1,19 @@
sourceSets {
demo {
java {
srcDirs = ["src/demo/kotlin"]
compileClasspath += main.getCompileClasspath()
runtimeClasspath += main.getRuntimeClasspath()
}
}
}
dependencies {
implementation project(":orx-fx")
}
implementation project(":orx-noise")
demoImplementation("org.openrndr:openrndr-core:$openrndrVersion")
demoImplementation("org.openrndr:openrndr-extensions:$openrndrVersion")
demoRuntimeOnly("org.openrndr:openrndr-gl3:$openrndrVersion")
demoRuntimeOnly("org.openrndr:openrndr-gl3-natives-$openrndrOS:$openrndrVersion")
demoImplementation(sourceSets.getByName("main").output)
}