fooling around with halftones ...

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
megaduck0
Posts: 13
Joined: Wed Jul 06, 2005 3:36 pm

fooling around with halftones ...

Post by megaduck0 »

... during some idle lunchtime. It could be a psychological examination or photographic evidence of Bigfoot. Just lean back and squint...
-m

Code: Select all

startshape Blobs

rule Blobs{
	Blob{}
	Blob{r 90}
	Blob{r 180}
	Blob{r 270}
}
rule Blob{Splat{} Blob{}}
rule Blob{Blob{y 1}}
rule Blob 2 {Blob{r -90}}
rule Blob 0.003{}

rule Splat{
	RandomCircleBig{}
	RandomCircle{x 1}
	RandomCircle{y 1}
	RandomCircle{x -1}
	RandomCircle{y -1}
	RandomCircleSmall{x 1 y 1}
	RandomCircleSmall{y -1 x -1}
	RandomCircleSmall{x -1 y 1}
	RandomCircleSmall{y -1 x 1}
	RandomCircleSmall{y -2}
	RandomCircleSmall{y 2}
	RandomCircleSmall{x -2}
	RandomCircleSmall{x 2}
}

rule RandomCircle  3 {RandomCircle{s 0.75}}
rule RandomCircle{CIRCLE{}}
rule RandomCircleSmall{RandomCircle{s 0.75}}
rule RandomCircleBig{RandomCircle{s 1.333}}

robo git
Posts: 47
Joined: Sat Jul 09, 2005 11:36 pm
Location: looking for his marbles
Contact:

Post by robo git »

Heh... I've seen bands with album-covers that look like they're trying to achieve this effect. Clean and simple look, but nice ;-)

odinsdream
Posts: 12
Joined: Sat Jul 09, 2005 2:18 pm

Post by odinsdream »

AWN: an elephant on its hind legs.
QRE: scorpion.
XVG: snowmobile.

What modifications would be necessary to make the resulting image larger, with more detail... i.e., more "spread out" ?

megaduck0
Posts: 13
Joined: Wed Jul 06, 2005 3:36 pm

Post by megaduck0 »

Either increase the y offset in the second Blob rule (ie rule Blob{Blob{y 3}} ) or decrease the chance of the terminating rule (currently 0.003)...

The terminating rule needs to be there since, for this type of design, the size never shrinks to nothingness...

Post Reply