rs-spline 0.0.0

A generic spline library for Rust optimized for AI workloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
    Appellation: types <module>
    Contrib: FL03 <jo3mccain@icloud.com>
*/
pub use self::prelude::*;

pub mod knot;
pub mod point;

pub(crate) mod prelude {
    pub use super::knot::Knot;
    pub use super::point::Point;
}