Alexander Plavin
Alexander Plavin
### Feature description Can units be also supported in colorbar? Eg for `image` values: ```julia fig, ax, plt = image(rand(10, 10)*u"kW") # currently, errors on this line Colorbar(fig[1,2], plt) ```
In 0.21, `convert_argument(trait, args...)` methods are not really called with user-specified arguments. That's due to the new `expand_dimensions` function called before `convert_arguments` with conversion trait: https://github.com/MakieOrg/Makie.jl/blob/d157f9cf907971b703f2a2de2dbcb3cd91475c64/src/conversions.jl#L17-L21. Noticed when trying to...
# Description For some reason, the file was removed when calling `save(path, ::VideoStream)`. This breaks all following `show` calls: they, clearly, rely on the video file still being present. ##...
Recently, I noticed a strange thing with contourf levels and colors: adding more levels changes the color of existing levels! See the two images made with the same array: ```julia...
For example, `Point2(SVector(1, 2))` throws: ``` MethodError: (GeometryBasics.Point2)(::StaticArraysCore.SVector{2, Int64}) is ambiguous. Candidates: (::Type{SV})(x::StaticArraysCore.StaticArray{Tuple{N}, T, 1} where {N, T}) where SV
Optics already show quite nicely in many cases, with a major exception of operators. Here, I make operators display nicer, while staying conservative to ensure robust show-parse roundtrip: ```julia julia>...
New feature of the setup-julia action: should be less noisy than nightly :)
Some helpers to test constructof laws would be nice, similar to what we have in Accessors (https://github.com/JuliaObjects/Accessors.jl/blob/master/ext/AccessorsTestExt.jl). Basically, ```julia function test_constructorof_laws(obj, args; cmp=(==)) ctor = constructorof(typeof(obj)) reconstructed = ctor(getfields(obj)...) @test...
will add tests soon