faust
faust copied to clipboard
Exponential and logarithmic slider scales not working in Qt applications
Hello, there.
The nonlinear scales do not seem to work in caqt or jaqt applications, whereas they appear to work correctly in the web IDE. See an example code below.
Ciao, Dario
import("stdfaust.lib"); lin0 = hslider("[0]linear 0-1", .5, 0, 1, .000001); lin1 = hslider("[3]linear 1-1000", 500, 1, 1000, .000001); exp0 = hslider("[1]exponential 0-1[scale:exp]", .5, 0, 1, .000001); exp1 = hslider("[4]exponential 1-1000[scale:exp]", 500, 1, 1000, .000001); log0 = hslider("[2]logarithmic 0-1[scale:log]", .5, 0, 1, .000001); log1 = hslider("[5]logarithmic 1-1000[scale:log]", 500, 1, 1000, .000001); process = lin0 , lin1 , exp0 , exp1 , log0 , log1;