Match parameters to FOP Hausübung for Julia

This commit is contained in:
joachimschmidt557 2019-02-21 21:25:03 +01:00
parent cf519dbb9a
commit 4df08e7665
2 changed files with 16 additions and 16 deletions

View file

@ -1,16 +1,16 @@
// Learn more about F# at http://fsharp.org // Learn more about F# at http://fsharp.org
open System open System
[<EntryPoint>] [<EntryPoint>]
let main argv = let main argv =
printfn "Mandelbrot!" printfn "Mandelbrot!"
let resultMandelbrot = MandelBrot.generate 800 600 150.0 32 570 let resultMandelbrot = MandelBrot.generate 800 600 150.0 32 570
resultMandelbrot.Save("mandelbrot.bmp") resultMandelbrot.Save("mandelbrot.bmp")
printfn "Julia!" printfn "Julia!"
let resultJulia = Julia.generate 800 600 150.0 32 570 let resultJulia = Julia.generate 800 600 250.0 2 250
resultJulia.Save("julia.bmp") resultJulia.Save("julia.bmp")
0 // return an integer exit code 0 // return an integer exit code

BIN
julia.bmp

Binary file not shown.

Before

Width:  |  Height:  |  Size: 103 KiB

After

Width:  |  Height:  |  Size: 224 KiB

Before After
Before After