Both sides previous revisionPrevious revisionNext revision | Previous revision |
projects:carpet [2021/04/24 00:26] – Owen Mellema | projects:carpet [2021/04/24 00:37] (current) – Owen Mellema |
---|
====== Carpet ====== | ====== Carpet ====== |
//Download it [[https://github.com/architectdrone/carpet | here ]]// | //Download it [[https://github.com/architectdrone/carpet |here]]. You'll need [[https://processing.org/|Processing]] installed.// |
| |
Carpet is a very simple program for exploring variations of the [[https://en.wikipedia.org/wiki/Sierpi%C5%84ski_carpet|Sierpenski Carpet]]. You may know of the Sierpenski Carpet as the 2D version of the [[https://en.wikipedia.org/wiki/Menger_sponge|Menger sponge]]. Here is a gif of it's construction from Wikipedia: | Carpet is a very simple program for exploring variations of the [[https://en.wikipedia.org/wiki/Sierpi%C5%84ski_carpet|Sierpenski Carpet]]. You may know of the Sierpenski Carpet as the 2D version of the [[https://en.wikipedia.org/wiki/Menger_sponge|Menger sponge]]. Here is a gif of it's construction from Wikipedia: |
</code> | </code> |
| |
Now, the Sierpenski's Carpet is cool and all, but why stop with just that one rule? We can do SO much more. Enter Carpet. Carpet allows you to explore every possible variation of fractal carpets interactively. When the user starts the program, they are greeted by the familiar Sierpenski's Carpet: | Now, the Sierpenski's Carpet is cool and all, but why stop with just that one rule? We can do SO much more. Enter Carpet. Carpet allows you to explore every possible variation of fractal carpets interactively. When the user starts the program, they are greeted by the familiar Sierpenski's Carpet (Click on the image for a higher resolution image): |
{{ :projects:s_carpet.png?400 |}} | {{ :projects:s_carpet.png?400 |}} |
| Left-clicking on a ninth of the window toggles the "on" rule for that ninth. For example, if the user clicked on the upper-left ninth of the screen, the transition rule would become: |
| <code> |
| ### .## |
| ### -> #.# |
| ### ### |
| ... ... |
| ... -> ... |
| ... ... |
| </code> |
| And the window would look like: |
| {{ :projects:l_carpet.png?400 |}} |
| Similarly, right-clicking toggles the "off" rule: |
| <code> |
| ### ### |
| ### -> #.# |
| ### ### |
| ... #.. |
| ... -> ... |
| ... ... |
| </code> |
| {{ :projects:r_carpet.png?400 |}} |
| |
| Pretty cool, eh? Here's some images that I got from clicking around a bit: |
| {{ :projects:1_carpet.png?400 |}} |
| {{ :projects:2_carpet.png?400 |}} |
| {{ :projects:3_carpet.png?400 |}} |