diff src/Grids/manifolds.jl @ 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 614f731af685
children de4b4f2aee4f
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}