Anshul Singhvi

Results 1167 comments of Anshul Singhvi

Ah, I think this is because Point2 is also a subtype of StaticArray. We would probably need to define that dispatch in the macro which generates the point definitions. In...

Looks like this is resolved in v0.5: ```julia-repl julia> Point2(SVector(1, 2)) 2-element Point{2, Int64} with indices SOneTo(2): 1 2 ```

Is there a way to do that in base Cairo? A quick google reveals https://stackoverflow.com/questions/9630008/how-can-i-create-a-glow-around-a-rectangle-with-svg, but those are all SVG filters, which Cairo doesn't provide access to :(

That looks like it's only when rendering to image surfaces though, so for things like SVG output it would either fail or trigger rasterization. Not what one wants! One more...

Is there a plan to merge this or look at ongoing support for Zygote 0.7?

Zooming for Axis3 is basically just shrinking `finallimits`, right?

Unfortunately some of that documentation is provided by FileIO.jl (we extend `FileIO.save`), which we cannot edit. Maybe there is some way for us to push Makie documentation to the top...

~This is definitely a place where DD seems to disagree with Base. Note that integer indexing without views on a dimarray returns a value, whereas views seems to return a...

The plot thickens: ```julia-repl julia> y = rand(ComplexF64, 5) 5-element Vector{ComplexF64}: 0.6807954442903817 + 0.4093511152062269im 0.5971912065930367 + 0.04105202399128616im 0.9031423268684027 + 0.15138438946867305im 0.3246991612483626 + 0.8012483098853918im 0.13479944694846235 + 0.12764571950749004im julia> getindex(y, 1) 0.6807954442903817...

Some small notes: (1) is already implemented in SwarmMakie.jl FYI (jitter and pure dodging) (2) would definitely be nice to have, but I'm not sure how you can do it...