1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//! The Clifford / geometric-algebra pillar.
//!
//! Two layers, deliberately separated:
//!
//! * [`engine`] — the associative-algebra core: the `Metric` (carrying the
//! quadratic form `q`, polar form `b`, and possibly nonzero asymmetric
//! contraction `a` independently), the `Multivector` /
//! `CliffordAlgebra` types, and the geometric product itself. This is the
//! "associative algebra from a general bilinear form" primitive.
//! * [`versor`] — the geometry built on top: versors and the Pin sandwich
//! action, reflections, contractions, the pseudoscalar dual, grade
//! involution, the spinor norm, and the even subalgebra.
//!
//! On top of those sit the structured-algebra modules: [`outermorphism`]
//! (lift a linear map to all grades; determinant via the pseudoscalar),
//! [`hopf`] (the exterior Hopf algebra) with its char-faithful symmetric mirror
//! [`divided_power`] (the divided power algebra `Γ`, dual to `Sym`),
//! [`cga`] (conformal & projective GA), and [`spinor`] (concrete left-ideal /
//! left-regular spinor modules).
//!
//! Public types and free functions are re-exported from this module. Inherent
//! operations remain methods on their context types, such as
//! `alg.sandwich(…)` and `cga.up(…)`.
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
// `versor` adds only inherent methods to `CliffordAlgebra` (reachable through
// the type itself), so there is nothing to glob-re-export from it.