POV-Ray : Newsgroups : povray.general : Can't Figure out trace() : Re: Can't Figure out trace() Server Time
6 Aug 2024 10:23:28 EDT (-0400)
  Re: Can't Figure out trace()  
From:
Date: 5 Apr 2002 19:18:49
Message: <lifsau8rnnp34sapm2j5cdiu5nmeqlvia2@4ax.com>
On Fri, 5 Apr 2002 18:12:23 -0600, "How Camp" <kro### [at] hotmailcom> wrote:
> Help!  What am I doing wrong?

As I understand You are making something like this (in shortcut):

#local MySphere=sphere{ Center Radius }
object{MySphere translate <3,3,3>}
#local Intersection = trace( MySphere , ...);

while you should do rather:

#local MySphere=sphere{ Center Radius }
#local MyNewSphere=object{MySphere translate <3,3,3>}
#local Intersection = trace( MyNewSphere , ...);

ABX


Post a reply to this message

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