Results 22 comments of Kit Ham

Or better yet, allow something like: ``` fig.axis.data.x = x fig.axis.data.y = y data = fig.axis.data data.set(x=x, y=y) ``` And related to #40 and #41: ``` fig.axis.data.x.append([10, 11]) fig.axis.data.y.append([9, 5])...

With the functions, what about going back the other direction?

For now, stick with affine transformations. QPainter has nice built in support for this: http://qt-project.org/doc/qt-5/QPainter.html#coordinate-transformations

This has been implemented by CanvasPlot. But it would be nice to have "models" as well. Where a set of line segments are drawn based on four array properties: x1,...

Woops, referenced wrong issue number. Meant #37

Reconsider how this might work with the new API where method invocations are allowed. Things like `fig.invoke('ax.shapePlot.createRect', x=5, y=10, width=50, height=100)` Might be possible.

Hi @felixfontein, who should I put as the author for this? I'm happy to be a maintainer if that's expected of me. Otherwise if existing authors for the homebrew.py package...

> Since you created it, I would put yourself in there :) ... Yup! Makes sense. Only too happy to.

Hmmm, not sure what to make of the following error: ``` 07:34 fatal: [testhost]: FAILED! => { 07:34 "changed": false, 07:34 "module_stderr": "shell-init: error retrieving current directory: getcwd: cannot access...

Good call on the error handling. I added a try-except around `json.loads` and in the tests I disabled the warnings. They seem not to affect the services. I'm assuming the...