small update on mandelbrot

This commit is contained in:
tTh
2025-01-20 21:31:20 +01:00
parent 2c187e01bc
commit c3f27c9843
3 changed files with 5 additions and 5 deletions

View File

@@ -23,7 +23,7 @@ program mkmandel
write(0, *) "-------- making some mandelbrot -------"
allocate(pic(640, 480))
allocate(pic(1920, 1080))
do angle = 0, 2000
@@ -35,8 +35,8 @@ program mkmandel
! filename = trim(filename)
write(0,*) "passe ", angle, radangle, trim(filename)
stx = radius * (sin(radangle*4.07) + 0.2131*sin(radangle*11.36))
sty = radius * (cos(radangle*6.21) + 0.2725*cos(radangle*10.99))
stx = radius * (sin(radangle*4.07) + 0.2131*cos(radangle*11.36))
sty = radius * (sin(radangle*6.21) + 0.2725*cos(radangle*10.99))
call mandelbrot_one(pic, complex(stx, sty))
call rgbpix_spit_as_pnm_8 (pic, trim(filename))