Add orx-processing module for OPENRNDR and Processing interop
This commit introduces the `orx-processing` module, enabling seamless type conversions between OPENRNDR and Processing. It includes extensions for converting vectors and shapes, supporting interoperability through utilities like `PVector`, `PShape`, and `ShapeContour`.
This commit is contained in:
18
orx-jvm/orx-processing/build.gradle.kts
Normal file
18
orx-jvm/orx-processing/build.gradle.kts
Normal file
@@ -0,0 +1,18 @@
|
||||
plugins {
|
||||
org.openrndr.extra.convention.`kotlin-jvm`
|
||||
}
|
||||
|
||||
dependencies {
|
||||
// api(project(":orx-parameters"))
|
||||
// api(project(":orx-jvm:orx-panel"))
|
||||
// api(libs.minim) {
|
||||
// exclude(group = "org.apache.maven.plugins", module = "maven-javadoc-plugin")
|
||||
// }
|
||||
api(libs.processing.core) {
|
||||
exclude(group = "com.jogamp")
|
||||
}
|
||||
implementation(libs.openrndr.application)
|
||||
implementation(libs.openrndr.math)
|
||||
implementation(libs.kotlin.reflect)
|
||||
demoRuntimeOnly(libs.slf4j.simple)
|
||||
}
|
||||
Reference in New Issue
Block a user