[orx-shapes] Add WIP ContourAdjuster framework
This commit is contained in:
33
orx-shapes/src/jvmDemo/kotlin/DemoAdjustContour01.kt
Normal file
33
orx-shapes/src/jvmDemo/kotlin/DemoAdjustContour01.kt
Normal file
@@ -0,0 +1,33 @@
|
||||
import org.openrndr.application
|
||||
import org.openrndr.color.ColorRGBa
|
||||
import org.openrndr.extra.shapes.adjust.adjustContour
|
||||
import org.openrndr.math.Vector2
|
||||
import org.openrndr.shape.Circle
|
||||
import kotlin.math.cos
|
||||
import kotlin.math.sin
|
||||
|
||||
fun main() {
|
||||
application {
|
||||
configure {
|
||||
width = 800
|
||||
height = 800
|
||||
}
|
||||
program {
|
||||
extend {
|
||||
var contour = Circle(drawer.bounds.center, 300.0).contour
|
||||
contour = adjustContour(contour) {
|
||||
selectVertex(0)
|
||||
vertex.moveBy(Vector2(cos(seconds) * 40.0, sin(seconds * 0.43) * 40.0))
|
||||
|
||||
selectVertex(2)
|
||||
vertex.rotate(seconds * 45.0)
|
||||
|
||||
selectVertex(1)
|
||||
vertex.scale(cos(seconds*0.943)*2.0)
|
||||
}
|
||||
drawer.stroke = ColorRGBa.RED
|
||||
drawer.contour(contour)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
32
orx-shapes/src/jvmDemo/kotlin/DemoAdjustContour02.kt
Normal file
32
orx-shapes/src/jvmDemo/kotlin/DemoAdjustContour02.kt
Normal file
@@ -0,0 +1,32 @@
|
||||
import org.openrndr.application
|
||||
import org.openrndr.color.ColorRGBa
|
||||
import org.openrndr.extra.shapes.adjust.adjustContour
|
||||
import org.openrndr.math.Vector2
|
||||
import org.openrndr.shape.Circle
|
||||
import kotlin.math.cos
|
||||
import kotlin.math.sin
|
||||
|
||||
fun main() {
|
||||
application {
|
||||
configure {
|
||||
width = 800
|
||||
height = 800
|
||||
}
|
||||
program {
|
||||
extend {
|
||||
var contour = Circle(drawer.bounds.center, 300.0).contour
|
||||
contour = adjustContour(contour) {
|
||||
selectVertex(0)
|
||||
vertex.remove()
|
||||
selectVertex(0)
|
||||
vertex.moveBy(Vector2(cos(seconds) * 40.0, sin(seconds * 0.43) * 40.0))
|
||||
vertex.scale(cos(seconds*2.0)*2.0)
|
||||
|
||||
|
||||
}
|
||||
drawer.stroke = ColorRGBa.RED
|
||||
drawer.contour(contour)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
42
orx-shapes/src/jvmDemo/kotlin/DemoAdjustContour03.kt
Normal file
42
orx-shapes/src/jvmDemo/kotlin/DemoAdjustContour03.kt
Normal file
@@ -0,0 +1,42 @@
|
||||
import org.openrndr.application
|
||||
import org.openrndr.color.ColorRGBa
|
||||
import org.openrndr.extra.shapes.adjust.adjustContour
|
||||
import org.openrndr.math.Vector2
|
||||
import org.openrndr.shape.Circle
|
||||
import kotlin.math.cos
|
||||
import kotlin.math.sin
|
||||
|
||||
fun main() {
|
||||
application {
|
||||
configure {
|
||||
width = 800
|
||||
height = 800
|
||||
}
|
||||
program {
|
||||
extend {
|
||||
var contour = drawer.bounds.scaledBy(0.5, 0.5, 0.5).contour
|
||||
contour = adjustContour(contour) {
|
||||
for (i in 0 until 4) {
|
||||
selectEdge(i)
|
||||
edge.toCubic()
|
||||
}
|
||||
selectEdge(0)
|
||||
edge.scale(0.5, 0.5)
|
||||
edge.rotate(cos(seconds*0.5)*30.0)
|
||||
selectEdge(1)
|
||||
edge.toCubic()
|
||||
edge.splitAt(0.5)
|
||||
edge.moveBy(Vector2(cos(seconds*10.0) * 40.0, 0.0))
|
||||
//edge.next?.select()
|
||||
selectEdge(3)
|
||||
|
||||
edge.moveBy(Vector2(0.0, sin(seconds*10.0) * 40.0))
|
||||
|
||||
|
||||
}
|
||||
drawer.stroke = ColorRGBa.RED
|
||||
drawer.contour(contour)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
31
orx-shapes/src/jvmDemo/kotlin/DemoAdjustContour04.kt
Normal file
31
orx-shapes/src/jvmDemo/kotlin/DemoAdjustContour04.kt
Normal file
@@ -0,0 +1,31 @@
|
||||
import org.openrndr.application
|
||||
import org.openrndr.color.ColorRGBa
|
||||
import org.openrndr.extra.shapes.adjust.adjustContour
|
||||
import org.openrndr.math.Vector2
|
||||
import org.openrndr.shape.Circle
|
||||
import kotlin.math.cos
|
||||
import kotlin.math.sin
|
||||
|
||||
fun main() {
|
||||
application {
|
||||
configure {
|
||||
width = 800
|
||||
height = 800
|
||||
}
|
||||
program {
|
||||
extend {
|
||||
var contour = if (seconds.mod(2.0) < 1.0) {
|
||||
drawer.bounds.scaledBy(0.5, 0.5, 0.5).contour
|
||||
} else {
|
||||
Circle(drawer.bounds.center, 300.0).contour
|
||||
}
|
||||
contour = adjustContour(contour) {
|
||||
selectEdge(0)
|
||||
edge.replaceWith(cos(seconds) * 0.5 + 0.5)
|
||||
}
|
||||
drawer.stroke = ColorRGBa.RED
|
||||
drawer.contour(contour)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
31
orx-shapes/src/jvmDemo/kotlin/DemoAdjustContour05.kt
Normal file
31
orx-shapes/src/jvmDemo/kotlin/DemoAdjustContour05.kt
Normal file
@@ -0,0 +1,31 @@
|
||||
import org.openrndr.application
|
||||
import org.openrndr.color.ColorRGBa
|
||||
import org.openrndr.extra.shapes.adjust.adjustContour
|
||||
import org.openrndr.math.Vector2
|
||||
import org.openrndr.shape.Circle
|
||||
import kotlin.math.cos
|
||||
import kotlin.math.sin
|
||||
|
||||
fun main() {
|
||||
application {
|
||||
configure {
|
||||
width = 800
|
||||
height = 800
|
||||
}
|
||||
program {
|
||||
extend {
|
||||
var contour =
|
||||
Circle(drawer.bounds.center, 300.0).contour
|
||||
|
||||
contour = adjustContour(contour) {
|
||||
for (i in 0 until 4) {
|
||||
selectEdge(i)
|
||||
edge.sub(0.2, 0.8)
|
||||
}
|
||||
}
|
||||
drawer.stroke = ColorRGBa.RED
|
||||
drawer.contour(contour)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
28
orx-shapes/src/jvmDemo/kotlin/DemoSplit01.kt
Normal file
28
orx-shapes/src/jvmDemo/kotlin/DemoSplit01.kt
Normal file
@@ -0,0 +1,28 @@
|
||||
import org.openrndr.application
|
||||
import org.openrndr.color.ColorRGBa
|
||||
import org.openrndr.extra.color.presets.MEDIUM_PURPLE
|
||||
import org.openrndr.extra.shapes.utilities.splitAt
|
||||
import org.openrndr.shape.Circle
|
||||
|
||||
fun main() = application {
|
||||
configure {
|
||||
width = 800
|
||||
height = 800
|
||||
}
|
||||
program {
|
||||
|
||||
val c = Circle(drawer.bounds.center, 300.0).contour
|
||||
val cs = c.splitAt(listOf(1.0/3.0, 2.0/3.0))
|
||||
extend {
|
||||
drawer.strokeWeight = 5.0
|
||||
|
||||
drawer.stroke = ColorRGBa.PINK
|
||||
drawer.contour(cs[0])
|
||||
drawer.stroke = ColorRGBa.MEDIUM_PURPLE
|
||||
drawer.contour(cs[1])
|
||||
drawer.stroke = ColorRGBa.RED
|
||||
drawer.contour(cs[2])
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user