Florian
Florian
### MWE ```julia using CairoMakie CairoMakie.activate!() using FileIO using Makie img = load(Makie.assetpath("doge.png")) i = image(permutedims(img)[:,end:-1:1]) save(joinpath(@__DIR__, "mwe.pdf"), i) ``` Output:  Adding `fxaa=true` to `image` does not fix it...
# Description Overload `CairoMakie.draw_marker` for `Matrix{
Not really sure if this belongs here or into `SymbolicUtis.jl`. ## MWE ```julia julia> @variables a # same happens with @syms 1-element Vector{Num}: a julia> a^1.1 a^1.1 julia> (-a)^1.1 ERROR:...
# Description Fixes #2280 ## Type of change - [x] Bug fix (non-breaking change which fixes an issue)
### MWE ```julia using GLMakie GLMakie.activate!() f = Figure() ax = Axis(f[1,1]) density!(ax, randn(200) .- 2sin(2/3*pi), color = :x, colormap = :thermal, colorrange = (-5, 5), strokewidth = 1, strokecolor...
# Description Adds the ability to toggle plot elements by clicking on their label inside a `Legend`. Mimics `gnuplot`s toggling behavior.  The functionality relies on `
# Description Fixes an issue mentioned on Julia Discourse: https://discourse.julialang.org/t/makie-latex-in-tick-labels/86980 Problem was that `LaTeXString`s were implicitly converted into `Strings` in the pipeline. ## Type of change - [x] Bug fix...
As discussed here: https://github.com/JuliaLang/julia/pull/53286#discussion_r1487039190 Readds the methods that were removed in https://github.com/JuliaLang/julia/pull/12819.
I thought that's reasonable in the light that `view` was not implemented: https://github.com/JuliaLang/julia/pull/52049#issuecomment-1848711619
# Description Attempt to fix #2456 The way I fix it is to add an `Cairo.clip` for a polygon's `interiors` before we draw its `exteriors`. For the clip I am...