envelope 0.8.1

An interpolatable Envelope trait along with a generic 2D Point trait. Useful for controlling parameters over time.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub extern crate interpolation;
extern crate num;

pub use bezier_point::BezierPoint;
pub use ease_point::EasePoint;
pub use envelope::{Envelope, Steps};
pub use point::Point;

mod bezier_point;
mod ease_point;
mod envelope;
pub mod interpolate;
mod point;

#[cfg(feature="serde_serialization")]
mod serde;