POV-Ray : Newsgroups : povray.advanced-users : Cabinet or 1/2 Cabinet Camera : Re: Cabinet or 1/2 Cabinet Camera Server Time
30 Jul 2024 10:13:47 EDT (-0400)
  Re: Cabinet or 1/2 Cabinet Camera  
From: ingo
Date: 7 Sep 1999 18:05:35
Message: <37d58c2f@news.povray.org>
PoD <pod### [at] merlinnetau> schreef in berichtnieuws >
>That should work but I wouldn't know how to get it lined up right :(

Something like this:

// Use -uv on commandline
#version 3.1;
global_settings {assumed_gamma 1.0}
light_source {<500, 500,-500>,1}
#declare Shear= transform {
   matrix <  1,  0,  0,
             0,  1,  0,
            .5,  0,  1,
             0,  0,  0 >
}
camera {
  location  <0.0, 0.5,-2.5>
  look_at   <0.0, 0.5, 0.0>
  angle 65
  transform Shear
}
box {
  <-0.5,0,-0.5>,<0.5,1,0.5>
  pigment {rgb 1}
}


Post a reply to this message

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