From cb50a66fbb3f7d14c0135cde24fdf55a2d7d0739 Mon Sep 17 00:00:00 2001 From: Sven Riwoldt Date: Sat, 24 Jan 2026 11:58:25 +0100 Subject: [PATCH] Ich will es jetzt in JS --- Mandelbrot.html | 134 ++++++++++++++++++++++++++++++++++++++++++++++++ Mandelbrot.jl | 3 +- 2 files changed, 136 insertions(+), 1 deletion(-) create mode 100644 Mandelbrot.html diff --git a/Mandelbrot.html b/Mandelbrot.html new file mode 100644 index 0000000..afa3e09 --- /dev/null +++ b/Mandelbrot.html @@ -0,0 +1,134 @@ + + + + + Interaktives Mandelbrot + + + +
+

Mandelbrot Explorer

+

Links-Klick Zoom In

+

Rechts-Klick Zoom Out

+ Berechne... +
+ + + + + \ No newline at end of file diff --git a/Mandelbrot.jl b/Mandelbrot.jl index 6db6153..db9766c 100644 --- a/Mandelbrot.jl +++ b/Mandelbrot.jl @@ -20,5 +20,6 @@ function draw() # Zeichnet einen einzelnen Punkt (Pixel) bei x=200, y=200 # Da ein Pixel winzig ist, nutzt man oft ein kleines Rechteck # oder die Point-Funktion. - draw(Rect(200, 200, 1, 1), :red, fill=true) + draw(Rect((200, 200), (1, 1)), colorant"red", fill=true) + end \ No newline at end of file