pickover++

This commit is contained in:
tth
2022-02-16 00:18:35 +01:00
parent 8ac3e43c6b
commit 8905cf858b
4 changed files with 81 additions and 6 deletions

31
Fraktalism/pickover.f90 Normal file
View File

@@ -0,0 +1,31 @@
!
! this is the main programm
!
!-----------------------------------------------------
program pickover
use spitpgm
use fraktals
implicit none
integer, dimension(800, 600) :: picz
integer :: argc
character(200) :: filename
argc = IARGC()
if (1 .NE. argc) then
STOP ": PICKOVER NEED A FILENAME !"
endif
call getarg(1, filename)
write (0, "(A)") "Pickover -> "//trim(filename)
call pickover_0(picz, 50000)
call spit_as_pgm_8(picz, trim(filename))
end program
!-----------------------------------------------------