POV-Ray : Newsgroups : povray.text.scene-files : Fractal Reflections : Fractal Reflections Server Time
2 Jul 2024 02:36:35 EDT (-0400)
  Fractal Reflections  
From: Samuel Benge
Date: 8 Jun 2002 19:53:14
Message: <3D014BE6.3080603@caltel.com>
Ok, here is the code requested by Hershel Robinson. I recommend tracing 
it with the same width and height settings in the POV ini file, or throw 
this into the ini settings text bar at the top:

+w200 +h200

Enjoy!

//Based on the reflective tetrahedron of spheres, IRTC April-May 02
//Sam Benge June 2002

global_settings{
  ambient_light 0
  max_trace_level 75
}

camera{fisheye up y*.7 right x*.7
  location<0,0,-.01> look_at 0 angle 180
}

light_source{0,1}

#declare rd=15.915;
union{
  sphere{<-10,10,-10>,rd}
  sphere{<10,10,10>,rd}
  sphere{<10,-10,-10>,rd}
  sphere{<-10,-10,10>,rd}
  pigment{rgb 0}
  finish{
   specular 1 roughness .02
   reflection{0,1 falloff .2}
   irid{.5 thickness .31}
  }
  rotate y*45 rotate x*-35
}
-- 
Samuel Benge

sbe### [at] caltelcom


Post a reply to this message

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