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