Crates.io | mimium-guitools |
lib.rs | mimium-guitools |
version | 2.2.1 |
source | src |
created_at | 2024-11-16 09:18:26.274758 |
updated_at | 2024-12-10 09:23:03.999149 |
description | basic analyzer tool plugin with egui for mimium. |
homepage | |
repository | https://github.com/tomoyanonymous/mimium-rs/ |
max_upload_size | |
id | 1450251 |
size | 79,321 |
This plugin provides various ways to interact gui through egui
crate. Works only on native architecture.
fn osc(freq){
...
}
let probe1 = make_probe("probe_label1")//when more than 1 probes are created, gui window will be launched on the startup.
fn dsp(){
let r = probe1(osc(440)) // probe closure returns original value.
(r,r)
}