Crate dexterior_core
source ·Expand description
This is the core crate containing most of dexterior
’s functionality
(specifically, everything except the visuals).
See the dexterior
crate’s documentation for an in-depth introduction.
Modules§
- Cochains, i.e. values assigned to elements of a mesh.
- Utilities for loading meshes generated with
gmsh
. - The core discretization structure of DEC, the (simplicial) mesh.
- Composable operators for doing math on
Cochain
s.
Structs§
- A composition of one or more
Operator
s. - The exterior derivative, also known as the coboundary operator.
- A diagonal Hodge star operator.
- Iterator over a set of
DIM
-simplices in a mesh. - A view into a single simplex’s data.
- A DEC mesh where the primal cells are all simplices (points, line segments, triangles, tetrahedra etc).
Traits§
- Trait enabling operator composition checked for compatibility at compile time.
Type Aliases§
- A vector of values corresponding to a set of
k
-dimensional cells on a mesh. - A type alias for
ComposedOperator
to make common patterns more convenient to type.