POV-Ray : Newsgroups : povray.unofficial.patches : Glows can't be the last thing in a scene??? : Glows can't be the last thing in a scene??? Server Time
1 Sep 2024 20:15:05 EDT (-0400)
  Glows can't be the last thing in a scene???  
From: Zeger Knaepen
Date: 8 Nov 2000 01:53:59
Message: <3a08f887$1@news.povray.org>
Well, at least in MegaPovPlus 032
Example:
This doens't work:
( <----ERROR
C:\Mijn documenten\POV-Ray\Scenes\t.pov:21: error: object or directive
expected but End of File found instead.
Returned from renderer (non-zero return value)
)
#version unofficial MegaPov 0.5;
camera {
 location <1,3,-5>
 angle 70
 look_at y*5
}
light_source {
 <5000,50,-500>
 rgb 1
}
sphere {
 0,.5
 pigment {rgb 1}
}
glow {size .125
 type 0
 location x
 color red 1
}

But this does:

#version unofficial MegaPov 0.5;
camera {
 location <1,3,-5>
 angle 70
 look_at 0
}
light_source {
 <5000,50,-500>
 rgb 1
}
glow {size .125
 type 0
 location x
 color red 1
}
sphere {
 0,.5
 pigment {rgb 1}
}


Post a reply to this message

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