iced_audio 0.14.1

An extension to the Iced GUI library with useful widgets for audio applications
Documentation
//! The core module of `Iced Audio`.
//!
//! This module holds basic types that can be reused and re-exported in
//! different runtime implementations.

pub mod knob_angle_range;
pub mod math;
pub mod modulation_range;
pub mod normal;
pub mod offset;
pub mod param;
pub mod range;
pub mod virtual_slider;

pub mod text_marks;
pub mod tick_marks;

pub use knob_angle_range::*;
pub use modulation_range::ModulationRange;
pub use normal::Normal;
pub use offset::Offset;
pub use param::NormalParam;
pub use range::*;
pub use virtual_slider::Gesture;