Hi, does anybody know if Kotlin has something simi...
# announcements
a
Hi, does anybody know if Kotlin has something similar to p5js https://p5js.org/? The main goal is easy visualization of algorithms.
p
just throw this in:
Copy code
compile "org.processing:core:3.1"
then you do:
Copy code
class Game() : PApplet() {
  override fun draw() { ... }
  ...
}

// in main do runSketch()
Processing is also much faster than p5js
And don't forget to check out this channel for processing tips: https://www.youtube.com/channel/UCvjgXvBlbQiydffZU7m1_aw
The guy is amazing!
g
We are actively working on the port of D3js to kotlin multiplatform. Not very far from having all pieces. https://github.com/data2viz/data2viz
p
holy crap how did I not know about this? that's amazing? is that Swing or JavaFx based?
g
JavaFx and JS
p
cool, starred, will try to use it for building stock charts
g
We plan to create a chart api from the base elements.
p
g
And for your link, we don’t have the brush yet…
a
@poohbar thanks for your help, works great! The only issue I have is before program is running my monitor is switching off and on again 😀
might be because ubuntu 17.10
p
hm thats really weird, havent that that issue