We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44de3f4 commit a0a6a84Copy full SHA for a0a6a84
docs/src/meshes.md
@@ -8,12 +8,14 @@ A `Mesh` is defined by the following struct:
8
9
```julia
10
struct Mesh{
11
- Dim, PositionElType <: Real,
+ Dim, T <: Real, # TODO: Number?
12
FT <: AbstractFace,
13
+ Names,
14
+ VAT <: Tuple{<: AbstractVector{Point{Dim, T}}, Vararg{VertexAttributeType}},
15
FVT <: AbstractVector{FT}
16
} <: AbstractMesh{Dim, T}
17
- vertex_attributes::Dict{Symbol, Union{FaceView, AbstractVector}}
18
+ vertex_attributes::NamedTuple{Names, VAT}
19
faces::FVT
20
views::Vector{UnitRange{Int}}
21
end
0 commit comments