[lifeblog holiday]

This blog will only be update about once a month.

I've decided that the time I spent blogging will now be spent mostly on new hobbies; if a jar is full you have to take out something old in order to put in something new.

I'll be back to regular updates in 2011.

Context Free Art

--
I've been playing with an algorithmic art generator called Context Fee Art. You make a little program like this:


startshape circle

background { b -0.35 }

rule circle {
60 * { r 6 } circlet { y 10 s 1.1b 0.7 }
}

// solid circle bit
rule circlet 10 { ss { } }

// skip bit
rule circlet { }

// oversized
rule circlet { CIRCLE { s 1.5 } }

// undersized
rule circlet { ss { s 0.75 } }

// stemming
rule circlet 0.5 {
ss { s 1.5 }
ss { s 0.3 10 y 5 }
circle { s 0.5 y 15 }
}


rule ss { SQUARE { } }




and it makes a variety of pictures like this (click to biggify):



For more information see the Context Free Art site.

0 comments: