Skip to main content

rill_core_model/wdf/
mod.rs

1//! WDF-based filters.
2//!
3//! These filters use Wave Digital Filter elements and adapters to model
4//! analog circuits, providing authentic analog behavior.
5
6mod diode_clipper;
7mod moog_ladder;
8
9pub use diode_clipper::DiodeClipper;
10pub use moog_ladder::{MoogLadder, RcPole};