-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.pov
More file actions
51 lines (45 loc) · 1.08 KB
/
base.pov
File metadata and controls
51 lines (45 loc) · 1.08 KB
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
#include "textures.inc"
camera { location <5, 0, 0> look_at<0, 0, 0> }
light_source {
<0,-10,0>
color rgb<2, 2, 2>
}
light_source {
<20, 15, 0>
color rgb <1, 1, 1>
}
object {
difference {
object {
union {
sphere{
<0, 0, 0>, 2
color rgb<1, 1, 1>
pigment { rgb <1, 1, 1> }
}
sphere{
<1.3, 0, 0>, 1
color rgb<1, 1, 1>
pigment { rgb <0, 1, 0> }
}
}
}
object{
intersection {
cone {
<4, 0, 0>, 0
<1.87, 0, 0>, 0.5
pigment { rgb <0.5, 0, 0> }
}
sphere {
<1.87,0,0>, 0.5
color rgb <0.5, 0, 0>
}
}
}
}
}
sphere {
<0, 0 , 0>, 2.155
texture{NBglass}
}