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 53
|
// This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
// To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ or send a
// letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
// Persistence Of Vision Raytracer sample file.
//
// -w320 -h240
// -w800 -h600 +a0.3
#version 3.6;
global_settings {
assumed_gamma 2.2
max_trace_level 5
}
#include "colors.inc"
#include "shapes.inc"
#include "metals.inc"
#declare T01 = texture { T_Brass_1A }
#declare T02 = texture { T_Brass_1B }
#declare T03 = texture { T_Brass_1C }
#declare T04 = texture { T_Brass_1D }
#declare T05 = texture { T_Brass_1E }
#declare T06 = texture { T_Brass_2A }
#declare T07 = texture { T_Brass_2B }
#declare T08 = texture { T_Brass_2C }
#declare T09 = texture { T_Brass_2D }
#declare T10 = texture { T_Brass_2E }
#declare T11 = texture { T_Brass_3A }
#declare T12 = texture { T_Brass_3B }
#declare T13 = texture { T_Brass_3C }
#declare T14 = texture { T_Brass_3D }
#declare T15 = texture { T_Brass_3E }
#declare T16 = texture { T_Brass_4A }
#declare T17 = texture { T_Brass_4B }
#declare T18 = texture { T_Brass_4C }
#declare T19 = texture { T_Brass_4D }
#declare T20 = texture { T_Brass_4E }
#declare T21 = texture { T_Brass_5A }
#declare T22 = texture { T_Brass_5B }
#declare T23 = texture { T_Brass_5C }
#declare T24 = texture { T_Brass_5D }
#declare T25 = texture { T_Brass_5E }
//#include "stage_xy.inc"
#include "stage_xz.inc"
|