Post your E2 shit here.
I'll start:
Quote:
Hi, I'm no math nut but when I tried making an EKG, I wanted to play around with some other equations I could use to make shapes on an oscilloscope. I've made plenty already but I will release them every few times. It doesn't exactly do much but look pretty. But some of you may make use of them someday. Like making something float over your head in some fancy way.
If you want to see the design, simply create an oscilloscope and wire the x and y values to that of the e2 chip.
Anyways, first few releases:
http://online.redwoods.cc.ca.us/inst...picycloid1.gif
http://img132.imageshack.us/img132/3...ructrc0000.jpg
http://202.38.126.65/mirror/www-hist.../Nephroid1.gifCode:@name Epicycloid(DEElekgolo)
@outputs X Y
@persist Time
runOnTick(1)
#Increase the Time Value for faster line draws.
Time+=1
#When editing A and B. Make sure that A+B is under 1, and that A and B arent the same.
A=0.6
B=0.2
X=((A+B)*cos(Time)) - (B*cos((A/B +1)*Time))
Y=((A+B)*sin(Time)) - (B*sin((A/B +1)*Time))
http://img196.imageshack.us/img196/1...uctrc0001t.jpg
http://www-groups.dcs.st-and.ac.uk/%...Lissajous1.gifCode:@name Nephroid(DEElekgolo)
@outputs X Y
@persist Time
runOnTick(1)
#Increase the Time value for faster line draws
Time+=1
#Make sure that A or B are not 0
A=0.2
B=0.2
X=A*(3*cos(Time) - cos(3*Time))
Y=A*(3*sin(Time) - sin(3*Time))
http://img29.imageshack.us/img29/996...ructrc0003.jpg
http://www-groups.dcs.st-and.ac.uk/%...itrochoid1.gifCode:@name Lissajous Curve(DEElekgolo)
@outputs X Y Timer
@persist Timer
runOnTick(1)
#Increase the Timer for faster line draws
Timer+=1
#Edit A and B to change the Lissajous ratio
#Values Must be under 1
#If ratio is 1:1 then a circle will be drawn
Scale=0.1
A=5*Scale
B=4*Scale
X=A*sin(A*Timer*pi())
Y=B*sin(B*Timer*pi())
http://img5.imageshack.us/img5/2172/...ructrc0004.jpg
http://www-groups.dcs.st-and.ac.uk/%...pocycloid1.gifCode:@name Epitrochoid(DEElekgolo)
@outputs X Y
@persist Time
runOnTick(1)
#Increase the Timer for faster line draws
Time+=1
#When editing A,B, and C. Make sure that A,B, and C aren't the same
Scale=0.1
A=6*Scale
B=1*Scale
C=3*Scale
X=((A+B)*cos(Time)) - C*cos((A/B+1)*Time)
Y=((A+B)*sin(Time)) - C*sin((A/B+1)*Time)
http://img44.imageshack.us/img44/180...ructrc0006.jpg
http://www-groups.dcs.st-and.ac.uk/%...yperbolic1.gifCode:@name Hypocycloid(DEElekgolo)
@outputs X Y
@persist Time
runOnTick(1)
#Increase the Timer for faster line draws
Time+=1
#Make sure that A does not equal B. And that A or B are not 0
A=0.5
B=0.3
X=((A - B)*cos(Time)) + (B*cos(((A/B) - 1)*Time))
Y=((A - B)*sin(Time)) - (B*sin(((A/B) - 1)*Time))
http://img10.imageshack.us/img10/611...ructrc0008.jpg
http://www-groups.dcs.st-and.ac.uk/%...s/Talbots1.gifCode:@name Hyperbolic Spiral(DEElekgolo)
@outputs X Y
@persist Time
runOnTick(1)
#Increase the Time value for faster line draws
Time+=1
A=200
X=A*(cos(Time)/Time)
Y=A*(sin(Time)/Time)
http://img40.imageshack.us/img40/521...ructrc0009.jpg
In that case, I'll post another!Code:@name Talbot(DEElekgolo)
@outputs X Y
@persist Time
runOnTick(1)
#Increase the Timer for faster line draws
Time+=3
Scale=0.8
A=1.1*Scale
B=1*Scale
F=1*Scale
X=(A^2 + F^2*sin(Time)^2)*cos(Time)/A
Y=(A^2 - 2*F^2*sin(Time)^2)*sin(Time)/B
http://www-groups.dcs.st-and.ac.uk/%...ricuspoid1.gif
http://img38.imageshack.us/img38/331...ructrc0010.jpg
And another!Code:@name Tricuspoid(DEElekgolo)
@outputs X Y
@persist Time
runOnTick(1)
#Increase the Timer for faster line draws
Time+=1
Scale=0.3
A=1.0*Scale
X=A*(2*cos(Time) + cos(2*Time))
Y=A*(2*sin(Time) - sin(2*Time))
http://www-groups.dcs.st-and.ac.uk/%.../Involute1.gif
http://img44.imageshack.us/img44/868...ructrc0011.jpg
(It spirals outwards)
Code:@name Involute of a Circle(DEElekgolo)
@outputs X Y
@persist Time
runOnTick(1)
#Increase the Timer Value to make it Faster
Time+=1
#Make sure that A does not equal B. And that A or B are not 0
Scale=0.001
A=1*Scale
X=A*(cos(Time) + Time*sin(Time))
Y=A*(sin(Time) - Time*cos(Time))