rill-core 0.5.0-beta.3

Core foundation for the Rill ecosystem — traits, math, buffers, queues, time, macros
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Mathematical abstractions
//!
//! This module provides:
//! - `Scalar` — base numeric trait for all types (including integers)
//! - `Transcendental` — Scalar extension with trigonometry (f32/f64)
//! - Common mathematical functions (lerp, db conversion, etc.)
//! - Vector operations through the `vector` submodule
//! - Fast approximations for DSP

mod conversions;
mod functions;
mod num;
pub mod vector;

pub use functions::*;
pub use num::{Scalar, Transcendental};