Add Rectangle.fit(Rectangle):Matrix44, FitMethod.Fill, FitMethod.None (#253)

This commit is contained in:
Abe Pazos
2022-08-14 21:17:52 +02:00
committed by GitHub
parent f8d78d31c3
commit ae0c66f268
4 changed files with 237 additions and 110 deletions

View File

@@ -1,3 +1,5 @@
import ScreenshotsHelper.collectScreenshots
plugins {
kotlin("multiplatform")
kotlin("plugin.serialization")
@@ -10,7 +12,8 @@ kotlin {
defaultSourceSet {
kotlin.srcDir("src/demo")
dependencies {
implementation(project(":orx-camera"))
implementation(project(":orx-shapes"))
implementation(project(":orx-image-fit"))
implementation(libs.openrndr.application)
implementation(libs.openrndr.extensions)
runtimeOnly(libs.openrndr.gl3.core)
@@ -18,6 +21,9 @@ kotlin {
implementation(compilations["main"]!!.output.allOutputs)
}
}
collectScreenshots {
}
}
}
testRuns["test"].executionTask.configure {
@@ -74,4 +80,4 @@ kotlin {
}
}
}
}
}