'zmeyrus.bas Danilin copy 2021-01-25 and b+ mod
_TITLE "b+ mod of Danilin Matrix Diagonal Snake"
n = 40 ' change as needed
b$ = "SNAKE,"
s$ = s$ + b$
x = n: y = 1: s = -1 ' <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< oh dang! you do x,y backwards!!!
lastx = (y - 1) * 16 + 4: lasty = (x - 1) * 16 + 8
k = k + 1
thic lastx, lasty, (y - 1) * 16 + 4, (x - 1) * 16 + 8, 4, &HAAFFFF00
lastx = (y - 1) * 16 + 4: lasty = (x - 1) * 16 + 8
x = x + s: y = y + s
IF x
< 1 THEN x
= 1: y
= y
+ 2 IF y
> n
THEN x
= x
- 2: y
= n
s = -s
PD2 = 1.570796326794897
t2 = thick / 2
x3
= x1
+ t2
* COS(a
+ PD2
) y3
= y1
+ t2
* SIN(a
+ PD2
) x4
= x1
+ t2
* COS(a
- PD2
) y4
= y1
+ t2
* SIN(a
- PD2
) x5
= x2
+ t2
* COS(a
+ PD2
) y5
= y2
+ t2
* SIN(a
+ PD2
) x6
= x2
+ t2
* COS(a
- PD2
) y6
= y2
+ t2
* SIN(a
- PD2
) ftri x6, y6, x4, y4, x3, y3, K
ftri x3, y3, x5, y5, x6, y6, K
'2019-12-16 fix by Steve saves some time with STATIC and saves and restores last dest
_BLEND a&
'<<<< new 2019-12-16 fix