An experiment with skew

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
t3knomanser
Posts: 21
Joined: Wed Jul 06, 2005 4:53 pm

An experiment with skew

Post by t3knomanser »

A "twist" on the standard spiral pattern. *ahem*

Code: Select all

startshape SCENE

rule BASE {
	SQUARE {s 1.5 skew 12 12}
}

rule BASE {
	THING{}
}

rule THING {
	BASE{}
	THING {x -1}
}

rule THING {
	BASE{}
	THING {x -1 b .1}
}

rule THING 5 {
	BASE{b .3}
}

rule THING {
	THING {r -10 skew 1 1}
	THING {r 10 skew 1 4}
}

rule SCENE {
	THING{}
	THING{r 90}
	THING{s .5 1}
	SCENE {x 1 r -4 y -1 s .9 1 r 10 b .01}
}

rule SCENE {
	SCENE {skew -4 -1}
}

rule SCENE {
	SCENE {s 1.1 .9}
}

User avatar
LaT3x
Posts: 68
Joined: Wed Jul 06, 2005 3:11 pm
Location: Madrid, Spain

Post by LaT3x »

Cool...
psychodelic :) ....
Try this. It will see with skews, but different than the spiral structure

Code: Select all

startshape SCENE

rule BASE {
   SQUARE {s 1.5 skew 12 12}
}

rule BASE {
   THING{}
}

rule THING {
   BASE{}
   THING {x -1}
}

rule THING {
   BASE{}
   THING {x -1 b .1}
}

rule THING 5 {
   BASE{b .3}
}

rule THING {
   THING {r -10 skew 1 1}
   THING {r 10 skew 1 4}
}

rule SCENE {
   THING{}
   THING{r 90}
   THING{s .5 1}
   SCENE {x 1 r -4 y -1 s .9 1 r 45 b .01}
}

rule SCENE {
   SCENE {skew -4 -1 r -45}
}

rule SCENE {
   SCENE {s 1.1 .9 r 90}
}

Post Reply