Skip to content

Commit

Permalink
Merge pull request #1065 from nature-of-code/notion-update-docs
Browse files Browse the repository at this point in the history
[Notion] mandelbrot code reference update
  • Loading branch information
shiffman authored Feb 12, 2025
2 parents 3b0c246 + cd77561 commit 3ac62e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion content/08_fractals.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ <h2 id="what-is-a-fractal">What Is a Fractal?</h2>
<div data-type="note">
<h3 id="the-mandelbrot-set">The Mandelbrot Set</h3>
<p>One of the most well-known and recognizable fractal patterns is named for Mandelbrot himself. Generating the <strong>Mandelbrot set</strong> involves testing the properties of complex numbers after they’re passed through an iterative function. Do they tend to infinity? Do they stay bounded?</p>
<p>While a fascinating mathematical discussion, this escape-time algorithm is a less practical method for generating fractals than the recursive techniques we’ll examine in this chapter. However, code for generating the Mandelbrot set is included in the online examples. </p>
<p>While a fascinating mathematical discussion, this escape-time algorithm is a less practical method for generating fractals than the recursive techniques we’ll examine in this chapter. For more on how to visualize the Mandelbrot set with p5.js, you can check out the related <a href="https://thecodingtrain.com/challenges/21-mandelbrot-set-with-p5js">Coding Challenge page on the Coding Train website</a>.</p>
<figure>
<img src="images/08_fractals/08_fractals_7.png" alt="">
<figcaption></figcaption>
Expand Down
2 changes: 1 addition & 1 deletion content/xx_2_resources.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h1 id="additional-resources-1">Additional Resources</h1>
<h2 id="ports-of-code-examples-to-other-languages">Ports of Code Examples to Other Languages</h2>
<ul>
<li><a href="https://github.com/nature-of-code/noc-2-processing-port">Official port of all examples to Processing</a></li>
<li><a href="https://github.com/nature-of-code/noc-2-processing-port">Processing (Java) port</a></li>
<li><a href="https://github.com/Hohnik/noc-examples-pygame">Python port with pygame</a></li>
<li>If you are working on a port, please <a href="https://github.com/nature-of-code/noc-book-2/issues">open an issue on GitHub</a> with links and other relevant information!</li>
</ul>
Expand Down

0 comments on commit 3ac62e8

Please sign in to comment.