[orx-shapes] Fix broken .otf URL in DemoText01.kt

This commit is contained in:
Abe Pazos
2024-06-13 17:44:31 +02:00
committed by GitHub
parent e90cc2ec96
commit 4faae6687b

View File

@@ -18,7 +18,7 @@ fun main() {
program {
val face =
loadFace("https://github.com/IBM/plex/raw/master/IBM-Plex-Mono/fonts/complete/otf/IBMPlexMono-Bold.otf")
loadFace("https://github.com/IBM/plex/raw/master/packages/plex-mono/fonts/complete/otf/IBMPlexMono-Bold.otf")
val shapes = shapesFromText(face, "SUCH\nVECTOR\nSUCH\nTEXT", 150.0)
val bounds = shapes.bounds
@@ -30,4 +30,4 @@ fun main() {
}
}
}
}
}