Florian

Results 42 issues of 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: ![image](https://user-images.githubusercontent.com/26469701/180289323-3a7d98ae-59f1-463f-9fcf-f4528bdb76ea.png) 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. ![demo_hideshow](https://user-images.githubusercontent.com/26469701/190265965-f0c66919-721d-478b-aa0a-33e22192c9ac.gif) 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.

filesystem

I thought that's reasonable in the light that `view` was not implemented: https://github.com/JuliaLang/julia/pull/52049#issuecomment-1848711619

doc
backport 1.11

# 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...