my first ever tree

If you have a design you're proud of, share the cfdg file here. It's also a good place to ask for feedback and collaborate.

Moderators: MtnViewJohn, chris, mtnviewmark

Post Reply
headhammer
Posts: 3
Joined: Thu Jun 09, 2005 1:34 am

my first ever tree

Post 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}
}

User avatar
mtnviewmark
Site Admin
Posts: 81
Joined: Wed May 04, 2005 12:46 pm
Location: Mountain View, CA
Contact:

Post by mtnviewmark »

You've got it! Very nice design. Reminds me of 50's formica coffee table patterns, which I've always liked!
I'm the "m" in "mtree.cfdg"

bigelectricat
Posts: 19
Joined: Fri May 06, 2005 8:43 am

Post by bigelectricat »

reminds me of the works of kandinsky. very nice!

User avatar
aaronstj
Posts: 66
Joined: Wed Jul 06, 2005 11:34 am
Location: Seattle

Post 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.

Post Reply