Anshul Singhvi
Anshul Singhvi
``` exception = │ Invalid attribute entrygroups for block type Legend. │ │ The available block attributes for Legend are: │ │ alignmode labeljustification markerstrokecolor rowgap │ backgroundcolor labelsize markerstrokewidth...
No worries! Actually, might want to hold off on that. We will have one more major change (hopefully not breaking) over the weekend I think...could do the change now but...
This is generic to all `Block`s I think, maybe we could inject a keyword check somewhere? But that seems incompatible with methods like ` initialize_block!(::Axis; palette) got unsupported keyword argument...
This would probably be best as either an analysis or a new recipe - but `beeswarm` from SwarmMakie does a fundamentally very similar thing (grouping together all rows with the...
But you could probably do this already, with e.g. `violin`? So maybe this should just be a `convert_arguments` for errorbars on the Makie end.
That's definitely a different recipe I'd say, then you have the choice of how many standard deviations your band takes etc
Makie is using EarCut so we should check if earcut_triangulate is doing the right thing. If not we could switch to DelaunayTriangulation potentially although it would be slower. A sanity...
What is `AxisGeom` here? Should that just be `Axis`? ```julia using GLMakie using GLMakie.GeometryBasics n = 8 # Number of points of polygon F = [NgonFace{n,Int}(collect(1:n))] V = [Point{3,Float64}(cos(t),sin(t),0.0) for...
https://github.com/MakieOrg/Makie.jl/blob/f200f3d573b4f892d81fa38f25eacec09bc36815/src/basic_recipes/poly.jl#L88 so it looks like the issue is in GeometryBasics when it converts a non-convex NgonFace to a triangle face.
Would it make sense to port the function that does this in Comodo to GeometryBasics then?