POV-Ray : Newsgroups : povray.binaries.images : Odd Transformation : Re: Odd Transformation Server Time
12 Aug 2024 19:33:47 EDT (-0400)
  Re: Odd Transformation  
From: ABX
Date: 16 Jul 2003 09:42:46
Message: <iclahv828bjo9tkrmgk2cefgf93bcb9sb5@4ax.com>
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

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.