Page 1 of 1

my first ever tree

Posted: Thu Jun 09, 2005 1:43 am
by headhammer
i think i'm beginning to understand how this is working now.
this is my first ever branching structure. i tried to do something a bit different with it.

I don't have the means to post an image yet, so here's the code.
variations LAW and LBS are quite good. (well, in the eyes of a first timer, anyway.)

Code: Select all

startshape START

rule START{
	CIRCLE{s 5}
	LINE{}
}

rule LINE 0.05{
	SQUARE{}
	LINE{x 1}
}

rule LINE 0.0001{
	CIRCLE{s 5}
}

rule LINE 0.001{
	CORNER{}
}

rule LINE 0.00008{
	FORK{}
}

rule CORNER 1{
	LINE{r 91}
}

rule CORNER 1{
	LINE{r -91}
}

rule CORNER 0.5{
	LINE{r 90}
}

rule CORNER 0.5{
	LINE{r 90}
}

rule FORK 0.5{
	LINE{}
	LINE{r 91}
}

rule FORK 0.5{
	LINE{}
	LINE{r -91}
}

rule FORK 1{
	LINE{r -92}
	LINE{r 90}
}

Posted: Thu Jun 09, 2005 9:49 am
by mtnviewmark
You've got it! Very nice design. Reminds me of 50's formica coffee table patterns, which I've always liked!

Posted: Sat Jun 11, 2005 6:50 am
by bigelectricat
reminds me of the works of kandinsky. very nice!

Posted: Wed Jul 06, 2005 11:54 am
by aaronstj
Very cool, my favorite on the board so far. It's cool to see that Context Free can make such mechanical looking designs, when most of the designs lean towards the organic.