2020-09-20 21:49:36 +00:00
|
|
|
%import textio
|
|
|
|
%import floats
|
2020-08-29 21:55:26 +00:00
|
|
|
%zeropage basicsafe
|
|
|
|
|
|
|
|
main {
|
|
|
|
const uword width = 60
|
|
|
|
const uword height = 50
|
|
|
|
const ubyte max_iter = 16
|
|
|
|
|
|
|
|
sub start() {
|
|
|
|
txt.print("calculating mandelbrot fractal...\n\n")
|
|
|
|
|
|
|
|
ubyte pixelx
|
|
|
|
ubyte pixely
|
|
|
|
|
|
|
|
for pixely in 0 to height-1 {
|
2020-08-30 17:31:20 +00:00
|
|
|
float yy = (pixely as float)/0.40/height - 1.3
|
2020-08-29 21:55:26 +00:00
|
|
|
|
|
|
|
for pixelx in 0 to width-1 {
|
2020-08-30 17:31:20 +00:00
|
|
|
float xx = (pixelx as float)/0.32/width - 2.2
|
2020-08-29 21:55:26 +00:00
|
|
|
|
|
|
|
float xsquared = 0.0
|
|
|
|
float ysquared = 0.0
|
|
|
|
float x = 0.0
|
|
|
|
float y = 0.0
|
|
|
|
ubyte iter = 0
|
|
|
|
|
|
|
|
while iter<max_iter and xsquared+ysquared<4.0 {
|
|
|
|
y = x*y*2.0 + yy
|
|
|
|
x = xsquared - ysquared + xx
|
|
|
|
xsquared = x*x
|
|
|
|
ysquared = y*y
|
|
|
|
iter++
|
|
|
|
}
|
|
|
|
txt.color2(1, max_iter-iter)
|
2021-01-14 21:51:09 +00:00
|
|
|
txt.spc()
|
2020-08-29 21:55:26 +00:00
|
|
|
}
|
2021-01-08 15:56:17 +00:00
|
|
|
txt.nl()
|
2020-08-29 21:55:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|