Daniel VandenHeuvel
Daniel VandenHeuvel
Is the documentation supposed to be at https://docs.sciml.ai/SymbolicIndexingInterface/stable/? I don't see it actually linked on this repo anywhere
- [x] what version of Makie are you running? (`]st -m Makie`) ```julia (jl_EkPgkw) pkg> st -m Makie CairoMakie Status `C:\Users\djv23\AppData\Local\Temp\jl_EkPgkw\Manifest.toml` [13f3f980] CairoMakie v0.12.14 [ee78f7c6] Makie v0.21.14 ``` - [x]...
- [x] what version of Makie are you running? (`]st -m Makie`) - [x] can you reproduce the bug with a fresh environment ? (`]activate --temp; add Makie`) - [x]...
# Description Fixes #4391. There might be a better way to do what I'm doing here, but at least it's something to test with instead of my code snippets on...
# Description This PR adds a bit more to the errors thrown from `InvalidAttributeError`, now also showing nearby attributes to those that the user provides. I think this could be...
# Description Fixes https://github.com/MakieOrg/Makie.jl/issues/4344 by using a consistent method for generating colors. Using this approach the colors will be consistent between plots even if generators were removed or added. The...
- [x] what version of Makie are you running? (`]st -m Makie`) - [x] can you reproduce the bug with a fresh environment ? (`]activate --temp; add Makie`) ```julia julia>...
- [x] what version of Makie are you running? (`]st -m Makie`) - [x] can you reproduce the bug with a fresh environment ? (`]activate --temp; add Makie`) ```julia julia>...
```julia julia> using BlockArrays julia> using BlockArrays: BlockedOneTo julia> b = BlockVector([1,2,3,4,5,6,7,8,9,10], (BlockedOneTo(5:5:10),)); julia> typeof(b) == typeof(zero(b)) false julia> typeof(b) BlockVector{Int64, Vector{Vector{Int64}}, Tuple{BlockedOneTo{Int64, StepRange{Int64, Int64}}}} (alias for BlockArray{Int64, 1, Array{Array{Int64,...
As discussed @Datseris, this PR adds an example using DelaunayTriangulation.jl to simulate a cell model. The model has changed from what it used to be in DelaunayTriangulation.jl's, and now simulates...