small update on mandelbrot
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user