egui_knob
Simple knob widget for egui.

Features
- Adjustable size, font size, and stroke width.
- Customizable colors for the knob, indicator and text.
- Label positions (Top, Bottom, Left, Right).
- Label formatting.
- Two styles: Wiper and Dot.
Installation
To use the Knob widget in your project, add the following to your Cargo.toml:
[]
= "0.32"
= "0.4.1"
Usage example
use ;
use Knob;
// ..
let mut value: f32 = 0.5;
let knob = new
.with_size
.with_font_size
.with_stroke_width
.with_colors
.with_label;
default.show;