Elm – fun with L-System (Part 2)

Yan Cui

I help clients go faster for less using serverless technologies.

Series:

  1. Algae
  2. Pythagoras Tree (this)
  3. Cantor Dust
  4. Koch Curve
  5. Sierpinski Triangle
  6. Dragon Curve
  7. Fractal Plant

 

Last time out we implemented the Algae example from the L-System wikipedia page.

Frankly, it wasn’t very exciting at all, but still we needed to lay the ground work for stuff we’ll be looking at today. In this post (and the subsequent posts in the series) we’ll make use of the Core module that we had established in Part 1.

 

Example 2 : Pythagoras Tree

Starting from this example, things get interesting as we need to draw things on the screen, yay!

First, we need to define our L-System:

image

and a couple of type aliases:

image

Notice that we’re going to use a linked-list as the LIFO stack to record the position and angle. Because that’s how this particular L-System work:

image

Next, let’s add 2 helper functions for working with the stack:

image

 

Now, before we get into the drawing part, let’s take a quick refresher on how the coordinate system works in Elm (when you’re working with a collage at least).

image

Here, (0, 0) is at the centre of the collage. For every object, its position is also determined by its centre point.

This coordinate system works great in some cases, but having been used to most other coordinate systems (that places (0, 0) at the top-left corner) this can take a while to get used to.

 

Next, let’s add another helper function that takes the current position of the path, and work out the next position based on the rotation angle (in radians) and the length of the new segment.

image

image

Next, let’s add a createSegments function that takes in:

  • the starting position (at the base of the tree);
  • the length of a line segment not ending in a leaf, with the assumption that line segments ending in a leaf is half as long;
  • the current state of the tree

and returns a list of line segments.

image

The above code is a pretty literal translation of the instructions:

image

However, for those of you coming from F#, you might notice that I used newRotation’ when popping from the stack, but then used newRotation on the next line:

image

This is because shadowing is not allowed in Elm.

 

All that is left to do now, is to collect the line segments and put them inside a collage that covers the entire window.

image

As I experimented with a number of length settings it became clear that the length really needs to change along with the generations.

I thought of two approaches:

  1. use a simple formula to calculate the length based on a baseline value and the current generation number;
  2. use the same length throughout, then scale the whole tree back to fit into collage

In the end, I opted for the first approach for simplicity and for this example it works sufficiently well.

 

Finally, to tie everything together:

image

 

Live Demo (here)

Use LEFT and RIGHT arrow keys to evolve/devolve the L-System.

 

Source Code (here)

 

Next : Cantor Dust

 

Links


 

Whenever you’re ready, here are 4 ways I can help you:

  1. If you want a one-stop shop to help you quickly level up your serverless skills, you should check out my Production-Ready Serverless workshop. Over 20 AWS Heroes & Community Builders have passed through this workshop, plus 1000+ students from the likes of AWS, LEGO, Booking, HBO and Siemens.
  2. If you want to learn how to test serverless applications without all the pain and hassle, you should check out my latest course, Testing Serverless Architectures.
  3. If you’re a manager or founder and want to help your team move faster and build better software, then check out my consulting services.
  4. If you just want to hang out, talk serverless, or ask for help, then you should join my FREE Community.

 


2 thoughts on “Elm – fun with L-System (Part 2)”

  1. Pingback: Elm – fun with L-System (Part 3) | theburningmonk.com

  2. Pingback: Elm – fun with L-System (Part 6) | theburningmonk.com

Leave a Comment

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