Add orx-triangulation

This commit is contained in:
Ricardo Matias
2021-01-28 12:34:44 +01:00
committed by Edwin Jakobs
parent 199e9635fa
commit acdb038c98
8 changed files with 1028 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
sourceSets {
demo {
java {
srcDirs = ["src/demo/kotlin"]
compileClasspath += main.getCompileClasspath()
runtimeClasspath += main.getRuntimeClasspath()
}
}
}
dependencies {
implementation project(":orx-noise")
implementation("com.github.ricardomatias:delaunator:1.0.0")
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)
}