File: orient.pov

package info (click to toggle)
povray 1%3A3.7.0.10-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 147,232 kB
  • sloc: cpp: 845,011; ansic: 122,118; sh: 34,204; pascal: 6,420; asm: 3,355; ada: 1,681; makefile: 1,389; cs: 879; awk: 590; perl: 245; xml: 95
file content (77 lines) | stat: -rw-r--r-- 1,963 bytes parent folder | download | duplicates (7)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// This work is licensed under the Creative Commons Attribution 3.0 Unported License.
// To view a copy of this license, visit http://creativecommons.org/licenses/by/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.
//
//Demonstration of the area_light "orient" keyword
//
// -w320 -h240
// -w800 -h600 +a0.3

#version 3.6;
global_settings {assumed_gamma 1.0}

#include "colors.inc"

camera {location <50,42,0> direction z*1 look_at <0,2,0>}

//lights
light_source {<0,15,8+3> White*1.5
              area_light x*1.5,z*1.5,4,4 jitter adaptive 2 
              circular
              orient //that's here !
              }

light_source {<0,15,8-30> White*1.5
              area_light x*1.5,z*1.5,4,4 jitter adaptive 2
              }

//objects
#declare With =
union {
 text {ttf "cyrvetic","orient",.05,0}
 text {ttf "cyrvetic","with",.05,0 translate y*1}
 pigment {SteelBlue*2}
 rotate <90,-90,0>
 scale 5
 }

#declare Without =
union {
 text {ttf "cyrvetic","orient",.05,0}
 text {ttf "cyrvetic","without",.05,0 translate y*1}
 pigment {SteelBlue*2}
 rotate <90,-90,0>
 scale 5
 }

#declare Object_4 =
union {
 #declare I=0;
 #while (I < 15)
  box {<0,0,0>,<1,.1,10> translate <-4,I,0>}
 #declare I=I+2;
 #end
rotate y*-20
pigment {OrangeRed}
}

object {With translate <10,8.5,5+3>}
object {Without translate <10,8.5,5-30>}
object {Object_4 translate <0,5,8-30>}
object {Object_4 translate <0,5,8+3>}

//markers to show where the light_sources are
sphere {<0,15,8+3>,.4 pigment {Green*2} finish {diffuse 0 ambient 1} no_shadow}
sphere {<0,15,8-30>,.4 pigment {Green*2} finish {diffuse 0 ambient 1} no_shadow}

//fill light
light_source {<100,150,10> White*.5 shadowless}

//context
fog {distance 200 Wheat*.5}
plane {y,0 pigment {rgb <.9,.9,1>*1.2}}
plane {x,-10 pigment {rgb <.9,.9,1>*1.2}}
box {<45,0,-.1>,<-150,40,.1> pigment {SteelBlue}}