Hi,
Fixed function drawing apis like Graphics2 are very useful (and I'm starting to do a lot of debug drawing now).
Right now, it's very basic so I would like to make changes and redesign to improve it.
A drawing api that I like a lot is p5.js and I'm aiming for something like it: https://p5js.org/reference/#group-Shape
Concept:
var g2 = framebuffer.g2;
g2.begin();
g2.fill(Color.Red);
g2.ellipse(8, 8, 128, 64);
g2.rect(30, 20, 55, 55);
g2.noFill();
g2.beginShape();
g2.vertex(30, 75);
g2.vertex(40, 20);
g2.vertex(50, 75);
g2.vertex(60, 20);
g2.vertex(70, 75);
g2.vertex(80, 20);
g2.endShape();
g2.end();
Are you interested in these changes for Kha?