Jo Wood
Jo Wood
A workaround appears to be to use the P2D or P3D renderer: ``` java PGraphics pg; void setup() { size(400, 400,P2D); pixelDensity(2); pg = createGraphics(width, height,P2D); pg.beginDraw(); pg.background(255); pg.line(0,0,pg.width,pg.height); pg.endDraw();...
I can confirm this works with the existing Vega-Lite implementation, although I am not sure if it is possible to customise the axis title to be data dependent. It would...
Wow! I didn't think that would be possible in VL. Very impressive.
I think the only property in @mattijn 's spec that needs `signal` updating to `expr` is for the sequence generator. I will log a separate issue for that so it...
If I have understood correctly, we need a JSON representation that distinguishes a tuple `(x,y)` from a list with two (or three) elements `[x,y]` both of which are valid in...
To send anything over a port it has to be explicitly serialised into a JSON by the programmer. The [Json.Encode package](https://package.elm-lang.org/packages/elm-lang/core/latest/Json-Encode) shows what is available (string, int, float, bool, null,...
There are still a few cases that are causing linter warnings. Specifically tuples containing `Bool` types and parameterised functions (which I think is a regression as this used to work)....
Markdown output does not yet parse `Char` types (generates a parsing error in litvis). I recommend we treat these just as we do Strings, i.e. without quotation marks around them,...
This may be overkill for your use case, butGitHub [codespaces](https://github.com/features/codespaces) may offer an approach to do this (and much more besides). It allows a docker containers to be distributed via...
To clarify and test. We have two documents, `doc1.md` looks like this: ````markdown ```elm {l} myFunction : String myFunction = let repeatedName = "Hello" in repeatedName ``` ```` and `doc2.md`...