Anshul Singhvi

Results 1170 comments of Anshul Singhvi

Will take a look! I suspect this is a result of CairoMakie drawing the polygons incorrectly when they are outside the bounds of the projection. Do you get the same...

This is a CairoMakie issue, so I'll see about transferring the issue to the Makie repo. My first thought is that this is caused by the `clamp` in CairoMakie's project...

Here's a more minimal MWE: ```julia fig = Figure() ga = GeoAxis(fig[1, 1]; dest = "+proj=ortho +lon_0=0 +lat_0=30") lines!(ga, GeoMakie.coastlines()) poly_in_bounds = GI.Polygon([GI.LinearRing(Point2f[(72, 19), (100, 19), (100, 39), (72, 39),...

Even more minimal: ```julia fig = Figure() ax, p1 = poly(fig[1, 1], GI.Polygon([GI.LinearRing(Point2f[(72, 19), (100, 19), (100, 39), (72, 39), (72, 19)])])) p2 = poly!(ax, GI.Polygon([GI.LinearRing(Point2f[(72, 19), (Inf, 19), (100,...

With a patch to not draw any polygon segment which is not finite, I get: ![download-5](https://github.com/MakieOrg/Makie.jl/assets/32143268/51ae3f11-d1ce-4571-bd97-4198d79802bb) This is suboptimal, since some areas which should be shaded are not shaded, but...

I want to refactor the way all transforms work at some stage, so this would definitely be a target for that refactor! The primary issue is that there's no completely...

It looks like the `Bonito.Session` found its way into a plot or scene attribute somehow? Simon would know more. What happens if you do: ```julia fig = Figure() rand(RGBf, 10,...

This error only comes up with `scatter`, and not with e.g. `heatmap` or `lines`.

The error is probably somewhere here https://github.com/MakieOrg/Makie.jl/blob/ced9717c0c31c6b2180078cbec1c8796b5aec290/WGLMakie/src/particles.jl#L127-L128