doodle
doodle copied to clipboard
Compositional vector graphics in Scala / Scala.JS
Hi, SVG support was removed in this commit https://github.com/creativescala/doodle/commit/32fa36876c047cb88a5c8099e3bab13db3dc4f27. I am wondering what the plans are. Is SVG support coming back at some point in the near future?
# Overview Most 2D backends have a notion of [clipping](https://en.wikipedia.org/wiki/Clipping_(computer_graphics)), which basically means restricting where drawing can take place. We don't expose clipping in Doodle but it would be straightforward...
Create a stable Java2D specific method to convert a `Picture` to a `BufferedImage`. This will allow fun pixel art in conjunction with #85. This should be a new kind of...
# Overview Convolution is useful for image processing tasks, such as smoothing and edge detection, as well as being a creative tool. An example of what can be achieved using...
The `Bitmap` algebra provides some basic support for loading bitmaps but it is limited in the following ways: * It doesn't represent that loading a bitmap can fail for various...
Add an algebra that allows converting text to a path, which in turn would allow fun distortion of text. I think Java2D can do this. Not sure about SVG.
The most basic type of chart. Let's revive the charting / plotting by building this incrementally, starting with the simplest possible case. Expect a lot of refactoring!
# Overview Create an algebra that allows treating a picture as a bitmap on which we can perform basic bitmap operations (get pixel, set pixel, and more interesting things like...
Hey man, I really like what you've done here and it's cool to see the project alive and kicking. As far as I'm aware this is the best tool for...