iced_audio 0.14.0

An extension to the Iced GUI library with useful widgets for audio applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::Normal;
use iced_core::Rectangle;

pub struct KnobInfo {
    pub bounds: Rectangle,
    pub start_angle: f32,
    pub angle_span: f32,
    pub radius: f32,
    pub value: Normal,
    pub bipolar_center: Option<Normal>,
    pub value_angle: f32,
}