Abe Pazos
Abe Pazos
We will try an approach where `XstartOnFirstThread` is not required.
Is it expected that `colors`, `weights` and `List` have the same number of elements?
LWJGL for Android might make things easier? https://github.com/LWJGL/lwjgl3/issues/715
Can this be closed or is it still an issue?
Issue no longer present, closing.
Ah simple. Just change `Vector2` for `Vector3`. And probably add `multisample` to make the lines look good. ``` import org.openrndr.WindowMultisample import org.openrndr.application import org.openrndr.color.ColorRGBa import org.openrndr.extensions.Screenshots import org.openrndr.extra.noise.Random import org.openrndr.math.Vector3...
Updated JS script: ```js var palettes = []; var typeNames = { 'div': 'ColorBrewerType.Diverging', 'seq': 'ColorBrewerType.Sequential', 'qual': 'ColorBrewerType.Qualitative' }; for(const e in colorbrewer) { var type = colorbrewer[e].properties.type; for(const p...
https://github.com/openrndr/openrndr/blob/master/openrndr-math/src/commonTest/kotlin/org/openrndr/math/transforms/TestTransforms.kt#L269 ```kotlin /* this test should be fixed it("should un-project a projected point back into 3D ") { val c = Vector3(10.0, 10.0, 10.0) val p = perspective(45.0, 4.0 /...
I see that `VideoPlayerFFMPEG` has a `newFrame` event, but ``` vp.newFrame.listen { println(it.timeStamp) } ``` seems to print only `0.0`. There's a `vp.statistics` but it doesn't include the last frame...
I see tha VideoPlayerFFMPEG.kt triggers `FrameEvent` always with a hardcoded 0.0 time stamp.