Page 1 of 1

Im New here

Posted: Mon Aug 15, 2005 12:38 pm
by Lilianna
I was just messing around/learning this fun little program.

Heres a short little thing I made :)

Code: Select all

startshape trail

rule trail {
	Move {}
}

rule Move {
	Car {}
	Move { x 1.5 r 5 s 0.995 }
}

rule Move {
	Car {}
	Move { x 1.5 r -5 s 0.995 }
}

rule Move 0.05 {
}

rule Car {
	TRIANGLE { r -30 x 0.5 y 0.1 s 0.2 b 0.5 }
	SQUARE { x -0.2 s 0.8 b 0.1 }
	SQUARE { x 0.3 s 0.4 b 0.1 }
	SQUARE { x 0.09 y 0.29 s 0.18 b 0.95 }
	CIRCLE { y -0.35 x -0.35 s 0.7 }
	CIRCLE { y -0.35 x 0.35 s 0.7 }
	CIRCLE { y -0.35 x -0.35 s 0.4 b 0.3 }
	CIRCLE { y -0.35 x 0.35 s 0.4 b 0.3 }
	CIRCLE { y -0.35 x -0.35 s 0.1 }
	CIRCLE { y -0.35 x 0.35 s 0.1 }
}
Its nothing really Spectacular, I have big plans, which I might start on tonight :)

TTFN

~Lili

Posted: Mon Aug 15, 2005 5:38 pm
by chris
Really cool!

Can't wait to see what your big plans are.