[orx-text-on-contour] Add support for drawing text along contours

This commit is contained in:
Edwin Jakobs
2025-02-20 19:54:52 +01:00
parent 26d9625005
commit 78ddb73850
6 changed files with 349 additions and 14 deletions

View File

@@ -0,0 +1,22 @@
plugins {
org.openrndr.extra.convention.`kotlin-multiplatform`
}
kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(libs.openrndr.shape)
implementation(libs.openrndr.draw)
implementation(libs.openrndr.application)
implementation(project(":orx-shapes"))
}
}
val jvmDemo by getting {
dependencies {
implementation(project(":orx-text-on-contour"))
}
}
}
}