POV-Ray : Newsgroups : povray.binaries.images : Whats Next : Re: Whats Next Server Time
6 May 2024 08:09:46 EDT (-0400)
  Re: Whats Next  
From: Jim Holsenback
Date: 13 Sep 2017 06:36:54
Message: <59b90a46$1@news.povray.org>
On 9/12/2017 7:53 AM, Norbert Kern wrote:
> Therefore I prefer hdr lighting or at least a combination of a normal
> lightsource and hdr.

here's a link to some pretty good hdr images:
http://www.hdrlabs.com/sibl/archive.html

i've been getting a lot of mileage out of papermill ruins E but playa is 
also pretty cool. the apartment at the top of the list is great for an 
inside env.

i prefer the ones where you can actually see the sun or light source. 
basically here's how i place the light source. with the image on a small 
sphere and the camera somewhere -z ... i rotate the sphere until the sun 
spot lines up with 0*y then i use a crude grid at <0,0,0> that i rotate 
in the x dir to get the elevation. a few hints ... the papermill ruins E 
lines up at y*33 and x*30.5 so i use those as offsets in my env and 
light source setup:

#declare Environment =
sphere { 0, 1 hollow on
   material {
     texture { uv_mapping
       pigment {
         image_map {
           hdr "PaperMill_E_3k.hdr"
           map_type 0
           interpolate 2
           once
           }
         }
       finish { ... }
       }
     interior { ior 1.0 }
     }
   rotate y*33
   no_shadow
   }

#local R_Fact = 30;
#local S_Fact = 30;

considering the above the light source is initially placed <0,0,-29.9> 
then transformed like this:

object { Environment scale S_Fact rotate y*R_Fact }
object { Key_Light rotate x*30.5 rotate y*R_Fact }


Post a reply to this message

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