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:
Code:
@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))
Code:
@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))
Code:
@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())
Code:
@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)
Code:
@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))
Code:
@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)
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
In that case, I'll post 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))
And another!

(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))
Bookmarks