Re: TI-83's?
Originally posted by DJDecepticon
How well could one translate between equations and expressions used on a TI calculator to the superscope? I know beat transitions I'd have to do on my own, but what about the shape of the scope? Just picked one up for about 5 bux, thought it would be worth a shot...
well to translate "R=10(2.5D)" (i'm using D instead of (-) ), which will draw a 10-petal (polar) rose, to avs, then this is the setup:
init:
n=w; t=0; p=acos(-1);
pixel:
r=i*p*4; d=sin(r*2.5);
x=cos(r)*d; y=sin(r)*d;
for the traditional rectangular scope then setup is, i will use "y=sin(x)" for this setup;:
init:
n=w;
pixel:
x=i*2-1; y=sin(x);
remember that avs uses radians instead of degrees, the "zoom" of the avs window is like ZTrig (in radian mode)