POV-Ray : Newsgroups : povray.beta-test : disappearing objects with orthographic : Re: disappearing objects with orthographic Server Time
30 Jul 2024 04:16:32 EDT (-0400)
  Re: disappearing objects with orthographic  
From: Alf Peake
Date: 27 Apr 2002 16:15:59
Message: <3ccb06ff$1@news.povray.org>
"Tom Melly" <tom### [at] tomandlucouk> wrote in message
news:3c7a4060@news.povray.org...
> I'm fairly sure that this has been reported before, but I can't see
it mentioned
[snip]

I think I've just encountered something similar in 3.5, my pruned
scene is below.

Gergely Vandor posted an ortho report 29/10/2001 and thread suggested
bug existed in 3.1g but with me 3.1g and Megapov 0.7 are OK although
angle is ignored with orthographic (angle seems to work with
orthographic in RC2).

Version 3.5.beta.RC2.msvc.win32.  Win98SE, Celeron 500, 160 MB

Alf

/*
 Is this an orthographic problem? Stats say 10 objects but none
rendered.
 Increase angle to 6, or comment orthographic, or comment yellow
spheres to show red sphere.
*/

#version 3.5;
camera { orthographic
         location <1.4, -0.05,-14>
         angle 5 look_at <1.4, -0.05, 0> }
light_source {-100*z rgb 1 }

#declare EEdata = array[9]
{
<1.601820,0.020981,0.000000>,
<1.501000,-0.006115,0.000000>,
<1.430000,-0.026420,0.000000>,
<1.380000,-0.039967,0.000000>,
<1.35, -0.066, 0>,
<1.380000,-0.093944,0.000000>,
<1.430000,-0.097113,0.000000>,
<1.501000,-0.096865,0.000000>,
<1.601820,-0.093170,0.000000>
}

sphere{ <1.35, -0.066, 0>, 0.035 pigment{ rgb <1,0,0> } }

#declare Cnt = 0;
#while (Cnt<9)
   sphere{ EEdata[Cnt], 0.03 pigment{ rgb <1,1,0> } }
   #declare Cnt = Cnt + 1;
#end


Post a reply to this message

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