changeset 1844:1987347752ef feature/grids/manifolds

Add stub for connections(::Atlas)
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 22 Oct 2024 15:44:03 +0200
parents ea98f03e18e0
children de4b4f2aee4f
files src/Grids/manifolds.jl
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/Grids/manifolds.jl	Tue Oct 22 15:43:07 2024 +0200
+++ b/src/Grids/manifolds.jl	Tue Oct 22 15:44:03 2024 +0200
@@ -126,7 +126,7 @@
     Atlas
 
 A collection of charts and their connections.
-Should implement methods for `charts` and
+Should implement methods for `charts` and `connections`.
 """
 abstract type Atlas end
 
@@ -138,11 +138,11 @@
 function charts end
 
 """
-    connections
+    connections(::Atlas)
 
 TBD: What exactly should this return?
-
 """
+function connections end
 
 struct CartesianAtlas <: Atlas
     charts::Matrix{Chart}