reflow_components 0.2.1

Standard component catalog for Reflow — procedural, media, GPU, animation, I/O, and stream actors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Math operation actors matching Zeal's tools-utilities/math templates.
//!
//! Each actor takes numeric inputs on ports A/B (or a list), applies the
//! operation, and outputs the result. All support configurable precision.

pub mod easing;
pub mod expression;
mod ops;
mod vector;

pub use ops::*;
pub use vector::*;