Anshul Singhvi

Results 1170 comments of Anshul Singhvi

On MacOS, you can detect this by running: ```shell defaults read -g AppleInterfaceStyle ``` which will print "Dark" if dark mode is on, and an error message otherwise. From there,...

Ah, that's not really possible with Makie at the moment I think - you would have to create a new Figure, and that would pick up the current theme. A...

The problem is that used_attributes consumes those kwargs, I think...

Should we clamp `r` to zero instead of clipping by default? Seems like that would be less surprising.

Yes, I think this system was refactored in v0.21. In v0.20 and before, a plot would be executed once in an empty Scene to determine its dimension (2d or 3d),...

hmm, are you proposing that all line attributes be per-level (including linestyle, glow, etc)? That would be pretty cool, I'd definitely love to see a PR for this. One thing...

Performance is a lot faster when `display=:solid` when panning around in Axis3. The `:solid` method also has only 100 plots as opposed to 900...that might contribute to the issue?

If a shader is being compiled per plot, then I could imagine this being the result...the NaN-separation approach is definitely better here!

Is that overhead once per display or constant? Because there's noticeably less lag when panning in LScene if the number of plots is decreased.

Defining `Makie.expand_dimensions(::PointBased, k::KeyedArray) = (only(axiskeys(x)), AxisKeys.keyless_unname(x))` seems to fix it, though I imagine that's not the ideal way forward. My guess is that KeyedArrays are hitting ` [7] expand_dimensions(::PointBased, y::AbstractVector{T}...