10th February 2002 02:33 UTC
what's the best text to read on scope settings?
guess I'd better not ask after all... :confused:
Archive: what's the best text to read on scope settings?
ShoutingMime
10th February 2002 02:33 UTC
what's the best text to read on scope settings?
guess I'd better not ask after all... :confused:
Montana
10th February 2002 13:09 UTC
i'm not so good at scopes but i know some things
you get a osc simple (like the render/simple)init
=w;
n
perpoint:
x=i*2-1;y=v/2;
more than that i can't explain, coz then you have toinit
=w;t=0;
n
perbeat
t=-1+rand(200)/100;
perpoint
x=i*2-1;y=t+v/2;
BlurPak2k1
10th February 2002 13:22 UTC
look at some of my scopes montana...
ShoutingMime
11th February 2002 22:01 UTC
thanks
After I asked the question I did the one thing I should have done in the first place... looked for someone else that asked the same question... I believe I've got the idea, I'll post some presets soon.
Thanks for the time:up:
---------------------------------------------------------------------
dirkdeftly
12th February 2002 01:39 UTC
if you use n=w, then you run out of v returns if your screen width is too big. the maximum amount of returns for v is 579, so if your scope is just a scope, use n=579.
i is the position on the scope, so if you want to draw a line of dots, all you need to do is use x=i; y=0. v is the volume, so to show the volume, use y=v. you usually want to scale it by about 3.
That's really all you need to know for superscopes, if you want to do more complex things, learn the math.
Fork me on GitHub