diff src/Grids/Grids.jl @ 1558:81e97d3bec8c feature/grids/manifolds

Start adding manifolds
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 24 Apr 2024 13:26:30 +0200
parents 62f9d0387a2a
children 6e910408c51a 35fe4375b35f
line wrap: on
line diff
--- a/src/Grids/Grids.jl	Sat Apr 13 23:49:39 2024 +0200
+++ b/src/Grids/Grids.jl	Wed Apr 24 13:26:30 2024 +0200
@@ -4,6 +4,21 @@
 using Sbplib.LazyTensors
 using StaticArrays
 
+
+export HyperBox
+export Simplex
+export Interval
+export Rectangle
+export Box
+export Triangle
+export Tetrahedron
+
+export limits
+export unitinterval
+export unitsquare
+export unitcube
+export unithyperbox
+
 # Grid
 export Grid
 export coordinate_size
@@ -34,6 +49,7 @@
 
 abstract type BoundaryIdentifier end
 
+include("manifolds.jl")
 include("grid.jl")
 include("tensor_grid.jl")
 include("equidistant_grid.jl")