Abe Pazos
Abe Pazos
Oh, doing this not alone would be great :) I have contributed during the last 5 years but not to such core part. My rough plan is to * take...
I'll continue the SDL3 discussion at https://github.com/openrndr/openrndr/discussions/432
Gui for What the Loop, which should be released soon for iOS. Made with OpenFrameworks. 
To get an idea of how many files there are: ```bash $ cd examples $ ag ofQuat -l --ignore obj 3d/cameraParentingExample/src/ofApp.cpp 3d/quaternionLatLongExample/src/ofApp.cpp 3d/quaternionArcballExample/src/ofApp.cpp 3d/quaternionArcballExample/src/ofApp.h 3d/orientationExample/src/ofApp.cpp gl/pixelBufferExample/src/ofApp.cpp gl/threadedPixelBufferExample/src/ofApp.cpp ios/iosCoreMotionCameraExample/src/ofApp.mm ios/iosCoreMotionExample/src/ofApp.mm $...
Do you remember which ofMatrix functions?
```kotlin import org.openrndr.application import org.openrndr.color.ColorRGBa import org.openrndr.extra.composition.ViewBox import org.openrndr.extra.composition.composition import org.openrndr.extra.composition.drawComposition import org.openrndr.extra.composition.viewBox import org.openrndr.math.Polar import org.openrndr.math.Vector2 import org.openrndr.shape.Rectangle fun main() = application { program { val compo = drawComposition...
A workaround before it's fixed might be to multiply the `model` or `view` matrices by the matrix returned by `.calculateViewportTransform()`: ```kotlin drawer.isolated { drawer.model *= compo.calculateViewportTransform() //
I tried to debug this further. Maybe this issue should be in ORX. This does not print anything: val gradient = linearGradient(ColorRGBa.BLACK, ColorRGBa.WHITE) console.log("Kotlin says OPENRNDR program started") But if...
Since `linearGradient` is deprecated, I tried with ```kotlin val g = gradient { stops[0.0] = ColorRGBa.BLACK stops[1.0] = ColorRGBa.WHITE linear { start = Vector2.ZERO end = Vector2.ONE } } ```...
Fixing https://github.com/openrndr/openrndr/issues/423 might potentially fix this issue as well.