affn 0.8.0

Affine geometry primitives: strongly-typed coordinate systems, reference frames, and centers for scientific computing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Interpolation primitives for typed affine geometry.
//!
//! This module is domain-agnostic: it works over a scalar abscissa and complete
//! typed values. Astronomy-specific epoch handling belongs in downstream crates.

pub mod abscissa;
pub mod cubic_hermite;
pub mod error;
pub mod traits;

pub use abscissa::{AbscissaDelta, InterpolationAbscissa};
pub use cubic_hermite::{
    CubicHermiteTable, HermiteNode, HermiteTableEvaluation, ScalarCubicHermiteTable,
    ScalarHermiteNode, ScalarHermiteTableEvaluation,
};
pub use error::InterpolationError;
pub use traits::{HermiteBasis, HermiteInterpolable};