1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
// XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
// Persistence of Vision 3.1 Scene Description File
// File: TREE.pov
// Desc: TREEGENERATOR EXAMPLE SCENE FILE
// Date: MARCH 2000
// Auth: AUST
// XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
// XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
//**********************************************GLOBAL SETTINGS
#default{texture{pigment{color rgb <1,1,1>}finish{ambient 0.0}}}
sky_sphere{pigment{color rgb 1}}
//*****************************************************INCLUDES
//*****************************************************TEXTURES
//*******************************************************BLOCKS
//*******************************************************CAMERA
camera
{
direction 1.5*z
right 1*x
location <0,500,-1700>
look_at <0,500,0>
}
//********************************************************LIGHT
light_source
{
<0,500,-1000>
color rgb <.3,.25,.2>
shadowless
}
light_source
{
<100000,180000,-100000>
color rgb <2,2,2>
}
//***************************************************ATMOSPHERE
//*************************************************************
//*************************************************************
//*******************************************************ACTION
#include "PALM.inc"
#include "TOMTREE.inc"
object
{
TREE
scale 1000
}
//**********************************************************END
//*************************************************************
|