|
|
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
|
|