December 8, 2012

eyes of the visitor


So, this portal opened in my room.



A creature of light emerged.



I looked at the sky through its eyes.



Their reality intertwines with ours.



In fire.



When looking at it right...


you can see them as the wisp fire entities.





Then I went to the park and took pictures.








true story.

September 29, 2011

A good day for patterns

I added a couple more rendering modes into a cellular automaton pattern generator I made in Processing. The results were amazing. Here is a slideshow showing some of the patterns. This is a neat way to visualize cellular automatons.





Here are a few highlights from the slide show:






September 14, 2011

More Voronoi

Some more Voronoi tessellations. These use non-random generating points (such as spirals, nested circles, and other curves), plus some good ol' Perlin noise in some cases.

While Voronoi tessellations look really cool, they are not the most visually intriguing patterns I've come across. My fascination with them lies more in the nature of what the patterns represent. They describe a kind of Utopian equilibrium among any group of points in space. Those points in space can be a generalization of real systems such as people in a crowd or cells in an organism.

September 5, 2011

my Voronoi

I recently learned of something known as a Voronoi tessellation. This is a really intriguing way of dividing a space up into a group of cells. The grid basically consists of a set of constructor points (the black dots in the pictures below) that are in some way distributed into the available space (randomly in this case). Each cell consists of all the points that are closer to a particular constructor than any other constructor. This creates natural divisions in the space that define the "personal space" of each constructor. This pattern represents a certain kind of equilibrium and is one of those things that occurs extensively in nature. In the crowding of cells for example. Understanding it allows those patterns to be uncovered and taken advantage of. I've read that it is used in determining which cell tower a cell phone is closest to (each tower being a constructor and the phone being a regular point in the grid).

In any case, I wanted to write my own algorithm to generate these patterns. I would have liked to have done this in a formal mathematical way. I settled for a more procedural approach. I wound up making two arrays. One to store the constructor points and one to store a random color for each constructor. I then iterate through every point in the grid. For each point I check its distance to every constructor and save the index of the nearest one. I then use that index to get a color and set the current pixel to that color.  This approach could be improved as it has some obvious inefficiencies. It's also not nearly as cool as defining the regions mathematically would be but it dose effectively display Voronoi tessellations for the given constructor points.

Here are some examples of the output:




 Read more to see more examples.

August 11, 2011

Tiny Patterns

I made a interactive pattern generator in Processing. Aspects of the pattern are controlled by moving the scrubs around the outside of the circle. It should be capable of generating over 4 billion unique patterns (some nicer than others). Here are a couple screen shots of it in action:















The patterns it produces tend to be quite intricate. You might need to look up close at your screen in order to really appreciate each pattern (not recommended with CRT's). These following images are the direct output from the program (click to see there full size (which actually isn't a whole lot bigger)).




Continue reading to see many more.