Mercurial > repos > public > sbplib_julia
comparison src/Grids/manifolds.jl @ 1576:a7245343eb98 feature/grids/manifolds
Remove left over comment
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Thu, 25 Apr 2024 21:52:22 +0200 |
parents | bbb9065834ce |
children | d5aa72662161 |
comparison
equal
deleted
inserted
replaced
1574:aeb561754248 | 1576:a7245343eb98 |
---|---|
67 A parametrized description of a manifold or part of a manifold. | 67 A parametrized description of a manifold or part of a manifold. |
68 | 68 |
69 Should implement a methods for | 69 Should implement a methods for |
70 * `parameterspace` | 70 * `parameterspace` |
71 * `(::Chart)(ξs...)` | 71 * `(::Chart)(ξs...)` |
72 | |
73 There is a default implementation for `(::Chart{D})(::SVector{D})` | |
74 """ | 72 """ |
75 abstract type Chart{D} end | 73 abstract type Chart{D} end |
76 # abstract type Chart{D,R} end | 74 # abstract type Chart{D,R} end |
77 | 75 |
78 domain_dim(::Chart{D}) where D = D | 76 domain_dim(::Chart{D}) where D = D |