|
|
On Wed, 16 Jul 2003 08:32:30 -0500, Ghost <flu### [at] duratechindustriesnet> wrote:
> translate rand(R4)*1.5+z*Rad
this line means in fact
#local temp=rand(R4);
translate <temp,temp,temp>*1.5+z*Rad
which means
#local temp=rand(R4);
translate <temp*1.5,temp*1.5,temp*1.5+Rad>*1.5
so as you seen there is translation along y axis.
ABX
Post a reply to this message
|
|