POV-Ray : Newsgroups : povray.text.scene-files : Relationship pigment made of two functions : Re: Relationship pigment made of two functions Server Time
5 Jul 2024 07:48:47 EDT (-0400)
  Re: Relationship pigment made of two functions  
From: Brendan Ryan
Date: 13 Jul 2002 21:41:52
Message: <3D30D4C4.6060003@global2000.net>
> Where is your website ?
> 

http://www.geocities.com/bryanhf2002


> Your scrript results as black image. Should be something added to it to
> render?


I used the camera and light_source from one of the insert menu entries 
as a base because I was trying out different new features of povray 3.5. 
  If you read the script, you would see that it's a sphere at the origin 
and with a radius of 1, and then put in whatever camera and light_source 
you prefer to use for such scenes.

camera {
   location  <0.0, 2.0, 2.0>
   look_at   <0.0, 0.0,  0.0>
   right     x*image_width/image_height
}

//background { color rgb <0,1,1> }

// create a regular point light source
light_source {
   0*x                  // light's position (translated below)
   color rgb <1,1,1>    // light's color
   translate <1, 20, 30>
}


Brendan


Post a reply to this message

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