shifter
4th April 2006, 09:34
This isn't much of a preset, just something i was working on, part of which you guys might find useful.
Basically use the keys to adjust zoom / angle, hit ctrl right / left quickly a couple of times to speed up the movement.
The useful part is the waveforms which display the resulting values, which i know *I* have wanted for a while.
So yeah, just get a number to the wave and assign it to the "in" variable, and there you go.
The wave is fairly process intensive tho, and has at least one bug
i.e.
val = 7.02*10;
val = (val - int(val))*10;
val = int(val);
val ends up being 1 instead of 2 (with a .9 on the next iteration), this only occurs for certain positions of significant figures, annoying!
Basically use the keys to adjust zoom / angle, hit ctrl right / left quickly a couple of times to speed up the movement.
The useful part is the waveforms which display the resulting values, which i know *I* have wanted for a while.
So yeah, just get a number to the wave and assign it to the "in" variable, and there you go.
The wave is fairly process intensive tho, and has at least one bug
i.e.
val = 7.02*10;
val = (val - int(val))*10;
val = int(val);
val ends up being 1 instead of 2 (with a .9 on the next iteration), this only occurs for certain positions of significant figures, annoying!