elm-canvas
elm-canvas copied to clipboard
A canvas drawing library for Elm
Is it possible to apply a filter to Renderable object? (CanvasRenderingContext2D.filter)
It should be rendered with only fill, like the docs mention: > It looks like for some reason, if neither fill nor stroke is set, it defaults to both a...
If `Canvas.arc` is passed a negative value for its radius, it crashes with ``` Uncaught DOMException: CanvasRenderingContext2D.arc: Negative radius ``` This should probably at least be documented clearly in a...
Hi @joakin! Thanks for all the great work you've done on this package. Recently I've been playing with elm-canvas and [elm-geometry](https://package.elm-lang.org/packages/ianmackenzie/elm-geometry/). They work really nicely together. elm-geometry has a lot...
Right when a texture fails to load for some reason, we can't tell why it failed because we just get a `Nothing`. Could you change this API to use a...
First off, awesome package! I'm having fun with it so far. I was curious if you had any plans for an API to get/put raw image data? It seems like...
Unless you already know from JS experience, from the docs it is impossible to know what the coordinate system is and what positive Y/X or negative Y/X are.
The function is pretty confusing to use, at least some docs should help with it.
Explain how they apply to the global coordinate system and add graphics. Came from a conversation in #canvas in the elm slack. For example this caused confusion thinking they were...
I'm trying to draw a canvas that spans the entire width and height of the window and resizes dynamically when the window size changes. However, the canvas isn't getting painted...