Neurospicy (autistic & schizophrenic) | Husband | Suicide survivor | Veteran
Since 2014 I've been using Excel to create math art. Post-processing in Krita.
Two ring tori with opposite directions of rotation.
(46)
#CreativeCoding #DigitalArt #MathArt #MathSky #SciArt
Two ring tori with opposite directions of rotation.
(46)
#CreativeCoding #DigitalArt #MathArt #MathSky #SciArt
Coiled torus with four sets of two strands.
(31)
#CreativeCoding #DigitalArt #MathArt #MathSky #SciArt
Coiled torus with four sets of two strands.
(31)
#CreativeCoding #DigitalArt #MathArt #MathSky #SciArt
Lobed torus with ten strands and sinusoidally modulated radius. Created in Excel.
(74a)
#CreativeCoding #DigitalArt #MathArt #MathSky #SciArt
Lobed torus with ten strands and sinusoidally modulated radius. Created in Excel.
(74a)
#CreativeCoding #DigitalArt #MathArt #MathSky #SciArt
Lobed torus with ten strands and sinusoidally modulated radius.
(75b)
#CreativeCoding #DigitalArt #MathArt #MathSky #SciArt
Lobed torus with ten strands and sinusoidally modulated radius.
(75b)
#CreativeCoding #DigitalArt #MathArt #MathSky #SciArt
Lobed torus with ten strands and sinusoidally modulated radius.
(75a)
#CreativeCoding #DigitalArt #MathArt #MathSky #SciArt
Lobed torus with ten strands and sinusoidally modulated radius.
(75a)
#CreativeCoding #DigitalArt #MathArt #MathSky #SciArt
f(n,r,s,t)=⌊n/(r*s)⌋ mod t
Creates a sequence of integers from 0 to t-1 that repeats each digit r*s number of times.
In Excel: MOD(INT(n/(r*s)),t)
f(n,r,s,t)=⌊n/(r*s)⌋ mod t
Creates a sequence of integers from 0 to t-1 that repeats each digit r*s number of times.
In Excel: MOD(INT(n/(r*s)),t)
f(n,s,t)=⌊n/t⌋ mod s
Creates a repeating sequence of integers from 0 to s-1 where each integer is repeated t number of times.
Excel formula: MOD(INT(n/t),s)
f(n,s,t)=⌊n/t⌋ mod s
Creates a repeating sequence of integers from 0 to s-1 where each integer is repeated t number of times.
Excel formula: MOD(INT(n/t),s)
f(n,t)=⌊n/t⌋
Creates a sequence starting at 0 where each integer is repeated t number of times.
In Excel: INT(n/t)
f(n,t)=⌊n/t⌋
Creates a sequence starting at 0 where each integer is repeated t number of times.
In Excel: INT(n/t)
f(n,t)=n mod t
Creates a repeating sequence of integers from 0 to t-1.
In Excel: MOD(n,t)
f(n,t)=n mod t
Creates a repeating sequence of integers from 0 to t-1.
In Excel: MOD(n,t)
#MathArt
#MathArt
2*((n mod t) mod 2)-1
A sequence of -1,1,... that progresses t number of times before starting over.
In Excel: 2*MOD(MOD(n,t),2)-1
2*((n mod t) mod 2)-1
A sequence of -1,1,... that progresses t number of times before starting over.
In Excel: 2*MOD(MOD(n,t),2)-1
b=1 (strands/vertices in polygon 2)
c=.35 (radius of polygon 1)
d=.175 (radius of polygon 2)
f=.525 (torus major radius)
g=0 (twist rate for polygon 1)
h=4 (twist rate for polygon 2)
#MathArt
b=1 (strands/vertices in polygon 2)
c=.35 (radius of polygon 1)
d=.175 (radius of polygon 2)
f=.525 (torus major radius)
g=0 (twist rate for polygon 1)
h=4 (twist rate for polygon 2)
#MathArt
b=4
c=.2
d=.05
e=.0075
f=.8
g=5
h=30
k=(π/180)
n=0,1,2,3,...
p=⌊(n/(a*b))⌋
r=(n mod a)*(2*π/a)
s=(n mod b)*(2*π/b)
t=n*e*k
u=⌊(n/a)⌋
v=⌊(n/b)⌋
i=t*g
j=t*h
x=((.5*f+c*cos(i+u*r))+(.5*f+d*cos(j+v*s)))*cos(t)
y=((.5*f+c*cos(i+u*r))+(.5*f+d*cos(j+v*s)))*sin(t)
z=c*sin(i+u*r)+d*sin(j+v*s)
b=4
c=.2
d=.05
e=.0075
f=.8
g=5
h=30
k=(π/180)
n=0,1,2,3,...
p=⌊(n/(a*b))⌋
r=(n mod a)*(2*π/a)
s=(n mod b)*(2*π/b)
t=n*e*k
u=⌊(n/a)⌋
v=⌊(n/b)⌋
i=t*g
j=t*h
x=((.5*f+c*cos(i+u*r))+(.5*f+d*cos(j+v*s)))*cos(t)
y=((.5*f+c*cos(i+u*r))+(.5*f+d*cos(j+v*s)))*sin(t)
z=c*sin(i+u*r)+d*sin(j+v*s)
b=4
c=.2
d=.1
e=.0075
f=.8
g=5
h=30
k=(π/180)
n=0,1,2,3,...
p=⌊(n/(a*b))⌋
r=(p mod a)*(2*π/a)
s=(n mod b)*(2*π/b)
t=n*e*k
u=⌊(n/a)⌋
v=⌊(n/b)⌋
i=n*e*g*k
j=n*e*h*k
x=((.5*f+c*cos(i+u*r))+(.5*f+d*cos(j+v*s)))*cos(t)
y=((.5*f+c*cos(i+u*r))+(.5*f+d*cos(j+v*s)))*sin(t)
z=c*sin(i+u*r)+d*sin(j+v*s)
b=4
c=.2
d=.1
e=.0075
f=.8
g=5
h=30
k=(π/180)
n=0,1,2,3,...
p=⌊(n/(a*b))⌋
r=(p mod a)*(2*π/a)
s=(n mod b)*(2*π/b)
t=n*e*k
u=⌊(n/a)⌋
v=⌊(n/b)⌋
i=n*e*g*k
j=n*e*h*k
x=((.5*f+c*cos(i+u*r))+(.5*f+d*cos(j+v*s)))*cos(t)
y=((.5*f+c*cos(i+u*r))+(.5*f+d*cos(j+v*s)))*sin(t)
z=c*sin(i+u*r)+d*sin(j+v*s)