MakieLayout.jl
MakieLayout.jl copied to clipboard
Layouting for Makie.jl
First thing I did to try this package ```julia import MakieLayout: LAxis, layoutscene import MakieLayout scene, layout = layoutscene(1, 1, 30, resolution = (1200, 1200)) layout[1,1] = LAxis(scene, title="hi") scene...
TODOS: - [x] Nest axis attrs - [ ] Change function defs to reflect this - [x] Good schema for actions (pan, zoom, etc.)
This came up in reference with [this recent PR](https://github.com/notifications/beta/MDE4Ok5vdGlmaWNhdGlvblRocmVhZDY5NTQ2Mzk1NjoxMzg4ODQ4NQ==?query=) to AbstractPlotting.jl. There are a number of functions [here](https://github.com/JuliaPlots/AbstractPlotting.jl/blob/master/src/shorthands.jl) that would be nice for users to have consistent interface. For the...