summaryrefslogtreecommitdiffhomepage
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html62
1 files changed, 58 insertions, 4 deletions
diff --git a/index.html b/index.html
index 3d25082..b618856 100644
--- a/index.html
+++ b/index.html
@@ -48,14 +48,56 @@
</section>
<section>
- <h3>Koch Fraktal</h3>
- <div id="iterationCtr"></div>
- <div class="flexContainer">
- <canvas id="koch"></canvas>
+ <!-- Vorstellung -->
+ <section>
+ <h3>Regeln</h3>
+ <ol>
+ <li>Mit einer geraden Linie starten</li>
+ <li>Linie in drei Teile aufteilen</li>
+ <li>Den mittleren Teil der Linie "radieren"</li>
+ <li>Den mittleren Teil zu einem gleichseitigen Dreieck verbinden</li>
+ </ol>
+ </section>
+ <section>
+ <div id="iterationCtr"></div>
+ <div class="flexContainer">
+ <canvas id="koch"></canvas>
+ </div>
+ </section>
+ </section>
+
+ <section>
+ <!-- Mit zwei browsern visualisieren (tiling!) -->
+ <h3>Umfang des Koch Fraktals</h3>
+ <div class="fragment fade-right" style="float: left;">
+ <p>Anzahl der Linien:</p>
+ <p>\[ N_n = N_{n-1} \cdot 4 = 4^n \]</p>
+ </div>
+ <div class="fragment fade-left" style="float: right;">
+ <p>Länge der Linien:</p>
+ <p>\[ S_n = \frac{S_{n-1}}{3} = \frac{s}{3^n} \]</p>
+ </div>
+ <div class="fragment fade-up" style="float: left;">
+ <p>Umfang:</p>
+ <p>\[ P_n = N_n\cdot S_n = s\cdot\left(\frac{4}{3}\right)^n \]</p>
+ </div>
+ <div class="fragment fade-up" style="float: right;">
+ <p>Limes:</p>
+ <p>\[ \lim_{n\to\infty}P_n = \infty \]</p>
</div>
</section>
<section>
+ <h3>Varianten des Koch Fraktals</h3>
+ <img
+ class="plain"
+ style="background: none;"
+ src="imgs/KochFlake.svg"
+ alt="Hier könnte ihre Werbung stehen!"
+ />
+ </section>
+
+ <section>
<h3>Summenzeichen</h3>
<h1>\[ \sum_{n=-\infty}^{+\infty} f(x) \]</h1>
</section>
@@ -63,6 +105,18 @@
<section>
<h3>Fläche des Koch Fraktals</h3>
</section>
+
+ <section>
+ <h3>Quellen</h3>
+ <p>Bilder</p>
+ <a href="https://en.wikipedia.org/wiki/Koch_snowflake#/media/File:KochFlake.svg" target="_blank">
+ https://en.wikipedia.org/wiki/Koch_snowflake#/media/File:KochFlake.svg
+ </a>
+ <p>Wissen</p>
+ <a href="https://en.wikipedia.org/wiki/Koch_snowflake" target="_blank">
+ https://en.wikipedia.org/wiki/Koch_snowflake
+ </a>
+ </section>
</div>
</div>