POV-Ray : Newsgroups : povray.general : "The Last Guardian" cannot be rendered?? : Re: "The Last Guardian" cannot be rendered?? Server Time
30 Jul 2024 22:15:09 EDT (-0400)
  Re: "The Last Guardian" cannot be rendered??  
From: Tim Attwood
Date: 2 Apr 2008 01:52:49
Message: <47f32d41$1@news.povray.org>
> Thanks for trying, Vincent.  Can anybody else figure it out?  Perhaps Mr. 
> Yip is
> still out there...

1. Render base_terrain_v2.pov with the command line
+W1280 +H1024 +FN +A0.3 +R3
This will create a PNG for the height_field.

2. Move base_terrain_v2.png to where you want it, (688k)

3. Modify terrain.inc to refer the height_field path...
(Line 216 - 223), only the png portion really matters,
but make sure to move terrain_file into the #ifdef
so it doesn't raise an error. Like this...

#declare base_terrain = height_field {
   #ifdef (USE_PNG_HF)
      png "full file path\base_terrain_v2.png"
   #else
      sys terrain_file
   #end

4. Render povcomp.pov with the command line
+W960 +H1280 +FN +A0.4 +R3 +WL0 Declare=USE_HIGHRES_HF=1 
Declare=USE_PNG_HF=1
This should render the final image.
Eventually.
It's really, really slow.


Post a reply to this message

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