Intestine

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
romulusnr
Posts: 13
Joined: Wed Jul 06, 2005 2:50 pm
Location: Seattle

Intestine

Post by romulusnr »

This was an entirely unexpected shape... it looks a bit like an intestine, or some other disturbing primordial tentacled thing.

startshape THING

rule THING {
MOVE {}
}


rule MOVE {
STRIPE {}
MOVE { r 20 x .7 y .1 s .9}
}

rule MOVE {
STRIPE {}
MOVE { r -20 x .7 y -.1 s .9}
}

rule MOVE .05 {
STRIPE {}
MOVE { r 20 x .5 s .9}
MOVE { r -20 x .5 s .9}
}

//rule MOVE .05 {
// STRIPE {}
// MOVE { r -20 x .5 s .9}
// MOVE { r -20 x .5 s .9}
//}


rule STRIPE {
CIRCLE {}
CIRCLE { s .7 b 1 }
CIRCLE { x .1 s .7 b 1 }
CIRCLE { x -.1 s .7 b 1 }
CIRCLE { x .2 s .7 b 1 }
CIRCLE { x -.2 s .7 b 1 }
}

Post Reply