Abe Pazos

Results 279 comments of Abe Pazos
trafficstars

From https://blog.jetbrains.com/kotlin/2021/05/nine-highlights-from-the-kotlin-roadmap/ > 3️⃣ Placing a bet on the WebAssembly > We believe that WebAssembly will become the new standard for creating rich web applications in the future, and Kotlin...

As @ricardomatias mentioned, two examples of circle batches with unique fill and stroke properties: * https://github.com/openrndr/orx/blob/master/openrndr-demos/src/demo/kotlin/DemoCircleBatch02.kt * https://github.com/openrndr/orx/blob/master/openrndr-demos/src/demo/kotlin/DemoCircleBatch03.kt There is `drawer.circleBatch`, `drawer.pointBatch` and `drawer.rectangleBatch`. Issue can be closed?

Is it intentional that `.toHSVa().toRGBa()` returns sRGB and `.toLCHUVa().toRGBa()` returns LINEAR? ``` val c = ColorRGBa(0.458, 0.337, 0.137, 1.0, Linearity.SRGB) println(c) println(c.toHSVa().toRGBa()) println(c.toLCHUVa().toRGBa()) ```

I think it could be in orx-palette files, but I feel it would be nice it would be accessed either via `Random.` or via `ColorRGBa.` for easier discovery. What do...

A JavaScript snippet to convert the color schemes to Kotlin: 1. Evaluate https://github.com/axismaps/colorbrewer/blob/master/colorbrewer_schemes.js in the web browser console (F12) 2. Run the following JavaScript code in the console: ```js var...

Thanks for the links. I think glsl-colormap does not provide easily differentiable colors. Maybe pastel's `distinct` is an algorithmic approach to colorbrewer's manually curated one?

What is the workflow for this issue? Are entries to be added here as comments? When? By who?

Nice :) I was thinking that it might be great to have a minimal demo using this feature at https://github.com/openrndr/openrndr/tree/master/openrndr-demos/src/main/kotlin but you would need some images for that, right?

Hi :) @edwinRNDR was asking me if I could take a look at this PR and make sure it works with the most recent version of OPENRNDR. What do you...