Mercurial > repos > public > sbplib_julia
changeset 1782:614f731af685 feature/grids/manifolds
Add stubs for connections method
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Mon, 16 Sep 2024 09:39:50 +0200 |
parents | a73838c9ef94 |
children | c5070edd0ebb |
files | src/Grids/manifolds.jl |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/Grids/manifolds.jl Mon Sep 16 09:05:47 2024 +0200 +++ b/src/Grids/manifolds.jl Mon Sep 16 09:39:50 2024 +0200 @@ -149,6 +149,7 @@ end charts(a::CartesianAtlas) = a.charts +connections(a::CartesianAtlas) = nothing struct UnstructuredAtlas <: Atlas charts::Vector{Chart} @@ -156,6 +157,7 @@ end charts(a::UnstructuredAtlas) = a.charts +connections(a::UnstructuredAtlas) = nothing ###