Page 1 of 1

sorry another one

Posted: Thu Jan 05, 2006 9:12 pm
by ladykassie
how do I make the cross bigger and randomize this as well

startshape SCENE
background { b -1 }

rule SCENE { NEURAL { hue 70 sat 0.9 b 0.9 }}




rule NEURAL {

TRIANGLE { s -0.5 10 x 3 y -0.1 r -90}
TRIANGLE { s -0.5 10 x 3 y -0.1 r -180}
TRIANGLE { s -0.5 10 x 3 y -0.1 r -0}
TRIANGLE { s -0.5 10 x 3 y -0.1 r 90}
Swirl { x 3 r 90 s 0.60 }
LINE {x 1 r 1.5 size 0.9953}
}
rule LINE {
SQUARE {size 0.8}
LINE {x 1 r 1.5 size 0.9953}
}

rule Swirl {
Line { }
Swirl { x 3 r 90 s 0.8 }

}



thanks!

Posted: Fri Jan 06, 2006 10:34 am
by MtnViewJohn
The easiest way to make the cross bigger is to shrink the spiral. The whole scene will then scale up in size and the cross will be bigger:

Code: Select all

rule NEURAL { 

TRIANGLE { s -0.5 10 x 3 y -0.1 r -90} 
TRIANGLE { s -0.5 10 x 3 y -0.1 r -180} 
TRIANGLE { s -0.5 10 x 3 y -0.1 r -0} 
TRIANGLE { s -0.5 10 x 3 y -0.1 r 90} 
Swirl { x 3 r 90 s 0.60 } 
LINE {x 1 r 1.5 size 0.3} // The size is smaller now
} 
You can use the same tricks from my other post to randomize this one.

Posted: Sat Jan 07, 2006 2:54 pm
by MtnViewJohn
Or you could randomize the spiral itself by using this

Code: Select all

rule LINE 0.01 { 
    LINE { flip 0 } 
    LINE {}
}
or just this

Code: Select all

rule LINE 0.01 { 
    LINE { flip 0 }
}
or both.

Posted: Wed Jan 18, 2006 4:34 am
by ladykassie
sweet..

thank you so much!