Anshul Singhvi
Anshul Singhvi
I'm trying this on Makie master, but run into this: ```julia julia> polygons = Observable(Polygon{2,Float64}[]) Observable(Polygon{2, Float64, P, L, V} where {P
g*ddamnit ```julia bigmesh = lift(plot, meshes, transform_func) do meshes, tf if isempty(meshes) # TODO: Float64 return GeometryBasics.Mesh(Point2f[], GLTriangleFace[]) else triangle_meshes = map(mesh -> poly_convert(mesh, tf), meshes) return merge(triangle_meshes) end end...
What happens if you try pseudolog?
I believe the `Symlog10` function actually constructs a `Makie.ReversibleScale` object - making that more extensible would be great as well! Maybe something like `Symlog(linthresh, base = 10., linscale = 1.)`...
Huh, this should error no matter what. Curious that it works in PNG, it looks like the fast path in Cairo heatmaps doesn't check for this. What is the input...
Oh hold on - your Makie version is two breaking versions old. Could you try with the latest Makie version (0.21.7)? An MWE of: ```julia using CairoMakie save("hello.pdf", heatmap(1:10, 1:10,...
`display(fig; update = false)` should solve that.
If you want to PR this that would be great, they're pretty barebones explanations but better than nothing. ```julia """ spaces() Returns a tuple of defined and allowed coordinate spaces...
That would be the same amount of effort as PR'ing the explanation, though?
Are you using CairoMakie for this @crazyfireji? If so, you might have better outputs using GLMakie, since CairoMakie is not built for 3D.