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`.
18 lines
514 B
Plaintext
18 lines
514 B
Plaintext
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)
|
|
} |