[orx-quadtree] add quadtree module (#174)

This commit is contained in:
Ricardo Matias
2021-02-26 17:51:03 +01:00
committed by GitHub
parent 8d6b82a24e
commit 5b0a6f37e0
7 changed files with 395 additions and 1 deletions

19
orx-quadtree/build.gradle Normal file
View File

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