' BASIC Anywhere Machine version of Spinny Cube by Dean Belfield
' As presented in Paul Dunn's "Spinny Cube" video ([youtube]https://www.youtube.com/watch?v=bXC9qy4dGeE[/youtube])
the = 0.00 : psi = 0.00 : phi = 0.00
xd = 0 : yd = 0 : xo = 0 : yo = 0
sd = 640 : od = 480
sw = 200 : sh = 200
30 the = 0 : psi = 0 : phi = 0
the = the + .01 : psi = psi + .03 : phi = phi - .02
xx = shape_pts(i,0) : yy = shape_pts(i,1) : zz = shape_pts(i,2)
y
= yy
*cos(phi
) - zz
*sin(phi
) : zz
= yy
*sin(phi
) + zz
*cos(phi
) x
= xx
*cos(the
) - zz
*sin(the
) : zz
= xx
*sin(the
) + zz
*cos(the
) xx = xx + xo + xd : yy = yy + yo + yd
a(i) = sw + xx * sd / (od - zz )
b(i) = sh + yy * sd / (od - zz )
x1 = a(shape(i,0)) : x2=a(shape(i,1)) : x3 = a(shape(i, 2)) : x4 = a(shape(i,3))
y1 = b(shape(i,0)) : y2=b(shape(i,1)) : y3 = b(shape(i, 2)) : y4 = b(shape(i,3))
if x1
*(y2
-y3
) + x2
*(y3
-y1
) + x3
*(y1
-y2
) <= 0 then line (x1
, y1
) - (x2
, y2
), 13 line (x2
, y2
) - (x3
, y3
), 13 line (x3
, y3
) - (x4
, y4
), 13 line (x4
, y4
) - (x1
, y1
), 13 '
'
'
50 data -20,20,20,20,20,20,-20,-20,20,20,-20,20,-20,20,-20,20,20,-20,-20,-20,-20,20,-20,-20 60 data 0,1,3,2,6,7,5,4,1,5,7,3,2,6,4,0,2,3,7,6,0,4,5,1