By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
World of SoftwareWorld of SoftwareWorld of Software
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Search
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
Reading: Coding a Fractal Tree With JavaScript and HTML5 | HackerNoon
Share
Sign In
Notification Show More
Font ResizerAa
World of SoftwareWorld of Software
Font ResizerAa
  • Software
  • Mobile
  • Computing
  • Gadget
  • Gaming
  • Videos
Search
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Have an existing account? Sign In
Follow US
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
World of Software > Computing > Coding a Fractal Tree With JavaScript and HTML5 | HackerNoon
Computing

Coding a Fractal Tree With JavaScript and HTML5 | HackerNoon

News Room
Last updated: 2025/10/10 at 8:50 PM
News Room Published 10 October 2025
Share
SHARE

Fractals, those enigmatic figures that are everywhere but can not be seen by the untrained eye. Today we’ll draw one of the best-known Fractals, using only Vanilla JS and the HTML5 Canvas API. Let’s code!

What You’ll Learn

  • What is a Fractal Tree?
  • Writing the Fractal Tree in Vanilla JS
  • Beyond the Fractal Tree

What is a Fractal Tree?

To define a Fractal Tree, first, we must know the definition of Fractal, of course.

Fractals are never-ending patterns created by repeating mathematical equations, which, on any scale, on any level of zoom, look roughly the same. In other words, a geometric object which’s basic structure, rough or fragmented, repeats itself in different scales.

So if we split a Fractal, we’ll see a reduced-size copy of the whole.

Benoit Mandelbrot, who coined the term Fractal in 1975, said:

A Fractal is a shape made of parts similar to the whole in some way.

Pretty clear, right?

Here are some examples:

Animated Sierpinski Carpet

Now, what is a Fractal Tree?

Imagine a branch, and branches coming out of it, and then two branches coming out of each branch, and so on… that’s what a Fractal Tree looks like.

Its form comes from the Sierpinski triangle (or Sierpinski gasket).

As you can see, one becomes the other when changing the angle between branches:

From Sierpinski Triangle to Fractal

Today, we’ll end up with a figure similar to the final form of that GIF.

Writing the Fractal Tree in Vanilla JS

First of all, here’s the final product (you can tweak it along the way):

Final Fractal Tree

Now let’s draw that, step by step.

First of all, we initialize our index.html file with a canvas of any reasonable dimensions and a script tag where all our JS code will be.

<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
  </head>
  <body>
    <canvas id="my_canvas" width="1000" height="800"></canvas>
    <script></script>
  </body>
</html>

Then, we start writing our JavaScript.

We initialize our canvas element on JS, by accessing it through the myCanvas variable and creating the 2D rendering context with the ctx (context) variable.

<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
  </head>
  <body>
    <canvas id="my_canvas" width="1000" height="800"></canvas>
    <script>
      var myCanvas = document.getElementById("my_canvas");
      var ctx = myCanvas.getContext("2d");
    </script>
  </body>
</html>

So yeah, the getContext method adds properties and methods that allow you to draw, in this case, in 2D.

Now it’s time to think. How can we define the algorithm to draw a Fractal tree? Hm… 🤔

Let’s see, we know that the branches keep becoming smaller. And that each branch ends with two branches coming out of it, one to the left and one to the right.

In other words, when a branch is long enough, attach two smaller branches to it. Repeat.

It kinda sounds like we should use some recursive statement somewhere, isn’t it?

Back to the code, we now define our function fractalTree that should take at least four arguments: the X and Y coordinates where the branch starts, the length of its branch, and its angle.

Inside our function, we begin the drawing with the beginPath() method, and then save the state of the canvas with the save() method.

<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
  </head>
  <body>
    <canvas id="my_canvas" width="1000" height="800"></canvas>
    <script>
      var myCanvas = document.getElementById("my_canvas");
      var ctx = myCanvas.getContext("2d");
      function draw(startX, startY, len, angle) {
          ctx.beginPath();
          ctx.save();
      }
    </script>
  </body>
</html>

The beginPath method is often used when you start a new line or figure that has a fixed style, like the same color along the entire line, or the same width. The save method just saves the entire state of the canvas by pushing the current state onto a stack.

Now we’ll draw our Fractal Tree by drawing a line (branch), rotating the canvas, drawing the next branch, and so on. It goes like this (I’ll explain each method below the code sample):

<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
  </head>
  <body>
    <canvas id="my_canvas" width="1000" height="800"></canvas>
    <script>
      var myCanvas = document.getElementById("my_canvas");
      var ctx = myCanvas.getContext("2d");
      function draw(startX, startY, len, angle) {
          ctx.beginPath();
          ctx.save();

          ctx.translate(startX, startY);
          ctx.rotate(angle * Math.PI/180);
          ctx.moveTo(0, 0);
          ctx.lineTo(0, -len);
          ctx.stroke();

          if(len < 10) {
              ctx.restore();
              return;
          }

          draw(0, -len, len*0.8, -15);
          draw(0, -len, len*0.8, +15);

          ctx.restore();
      }
      draw(400, 600, 120, 0)
    </script>
  </body>
</html>

So we first add three methods, translate, rotate, and moveTo, which “moves” the canvas, its origin, and our “pencil” so we can draw the branch in our desired angle. It’s like we are drawing a branch, then centering this branch (by moving the whole canvas), and then drawing a new branch from the end of our previous branch.

The last two methods before the if statement are lineTo and stroke; the first adds a straight line to the current path, and the second one renders it. You can think of it like this: lineTo gives the order, and stroke executes it.

Now we have an if statement that tells when to stop the recursion, when to stop drawing. The restore method, as stated in the MDN Docs, “restores the most recently saved canvas state by popping the top entry in the drawing state stack”.

After the if statement, we have the recursive call and another call to the restore method. And then a call to the function that we just finished.

Now run the code in your browser. You’ll see, finally, a Fractal Tree!

Fractal Tree First Iteration

Awesome, right? Now let’s make it even better.

We’ll add a new parameter to our draw function, branchWidth, to make our Fractal Tree more realistic.

<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
  </head>
  <body>
    <canvas id="my_canvas" width="1000" height="800"></canvas>
    <script>
      var myCanvas = document.getElementById("my_canvas");
      var ctx = myCanvas.getContext("2d");
      function draw(startX, startY, len, angle, branchWidth) {
          ctx.lineWidth = branchWidth;

          ctx.beginPath();
          ctx.save();

          ctx.translate(startX, startY);
          ctx.rotate(angle * Math.PI/180);
          ctx.moveTo(0, 0);
          ctx.lineTo(0, -len);
          ctx.stroke();

          if(len < 10) {
              ctx.restore();
              return;
          }

          draw(0, -len, len*0.8, angle-15, branchWidth*0.8);
          draw(0, -len, len*0.8, angle+15, branchWidth*0.8);

          ctx.restore();
      }
      draw(400, 600, 120, 0, 10)
    </script>
  </body>
</html>

So in every iteration, we are making each branch thinner. I’ve also changed the angle parameter in the recursive call to make a more “open” tree.

Now, let’s add some color! And shadows, why not.

<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
  </head>
  <body>
    <canvas id="my_canvas" width="1000" height="800"></canvas>
    <script>
      var myCanvas = document.getElementById("my_canvas");
      var ctx = myCanvas.getContext("2d");
      function draw(startX, startY, len, angle, branchWidth) {
          ctx.lineWidth = branchWidth;

          ctx.beginPath();
          ctx.save();

          ctx.strokeStyle = "green";
          ctx.fillStyle = "green";

          ctx.translate(startX, startY);
          ctx.rotate(angle * Math.PI/180);
          ctx.moveTo(0, 0);
          ctx.lineTo(0, -len);
          ctx.stroke();

          ctx.shadowBlur = 15;
          ctx.shadowColor = "rgba(0,0,0,0.8)";

          if(len < 10) {
              ctx.restore();
              return;
          }

          draw(0, -len, len*0.8, angle-15, branchWidth*0.8);
          draw(0, -len, len*0.8, angle+15, branchWidth*0.8);

          ctx.restore();
      }
      draw(400, 600, 120, 0, 10)
    </script>
  </body>
</html>

Both color methods are self-explanatory (strokeStyle and fillStyle). Also, the shadow ones, shadowBlur and shadowColor.

And that’s it! Save the file and open it with your browser to see the final product.

Now I encourage you to play with the code! Change the shadowColor, the fillStyle, make a shorter or longer Fractal Tree, change the angle, or try to add leaves, that should be challenging 😉

Beyond the Fractal Tree

As I showed you at the beginning of this post, there are different Fractals. Ain’t gonna be easy to make all those with the Canvas API, but it should be possible. I made some of those in the C programming language, and I’ve also played around with p5.js.

p5.js is an Open Source JavaScript library made by artists, for artists, based on the Processing language. You can draw or animate anything imaginable. If you are interested in making art with code, it’s a must. They have a great get-started page that you can check out here.


Well, that’s it for now! Thanks for reading, comment any questions, and see you in my next post!

Cover by socialtrendspr0 from Pixabay


Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Twitter Email Print
Share
What do you think?
Love0
Sad0
Happy0
Sleepy0
Angry0
Dead0
Wink0
Previous Article The Generalitat of Catalonia gives 370,000 euros to the Atenea Project to bring generative AI to home care
Next Article How bad is the Discord hack? What you need to know.
Leave a comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Stay Connected

248.1k Like
69.1k Follow
134k Pin
54.3k Follow

Latest News

Epic Sound and Savings for Movie Nights: Take 55% Off This Samsung Soundbar
News
Online merchants offer AI-driven services to “resurrect” loved ones raising data concerns · TechNode
Computing
Best drone deal: Save 20% on the DJI Mini 3 drone at Amazon
News
Some Los Angeles Lakers Games Will Get 3D Live Streams on Vision Pro
News

You Might also Like

Computing

Online merchants offer AI-driven services to “resurrect” loved ones raising data concerns · TechNode

1 Min Read
Computing

Huawei-BAIC first EV comes with ambitious target, global plans · TechNode

4 Min Read
Computing

Making It to HackerNoon’s Front Page — How Hard Is It, Really? | HackerNoon

5 Min Read
Computing

Kuaishou and Douyin both see e-commerce growth slow in first half of 2024: report · TechNode

1 Min Read
//

World of Software is your one-stop website for the latest tech news and updates, follow us now to get the news that matters to you.

Quick Link

  • Privacy Policy
  • Terms of use
  • Advertise
  • Contact

Topics

  • Computing
  • Software
  • Press Release
  • Trending

Sign Up for Our Newsletter

Subscribe to our newsletter to get our newest articles instantly!

World of SoftwareWorld of Software
Follow US
Copyright © All Rights Reserved. World of Software.
Welcome Back!

Sign in to your account

Lost your password?