POV-Ray : Newsgroups : povray.general : Invisible prism : Re: Invisible prism Server Time
5 Aug 2024 04:15:16 EDT (-0400)
  Re: Invisible prism  
From: Slime
Date: 11 Dec 2002 15:16:46
Message: <3df79d2e$1@news.povray.org>
>         #local v3 = vrotate(<0, 2.91>, y*3.5);
>         #local v4 = vrotate(<0, 3.03>, y*3.5);


This is the same as

>         #local v3 = vrotate(<0, 2.91,0>, y*3.5);
>         #local v4 = vrotate(<0, 3.03,0>, y*3.5);

and both the X and Z of the resulting vectors are zero.

what you meant to do was

>         #local v3 = vrotate(<0, 0, 2.91>, y*3.5);
>         #local v4 = vrotate(<0, 0, 3.03>, y*3.5);

 - Slime
[ http://www.slimeland.com/ ]


Post a reply to this message

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