kleine Quizfrage, was stellt folgendes dar? Tip: Ist nicht so abwegig wie es scheinen mag
2 background { color White }
3
4//Camera Normal View
5// camera {
6// location <2, 2, -6>
7// look_at <0, 0, 0>
8// }
9
10
11// Camera Top View
12//camera {
13// location <0, 9, 2>
14// look_at <0, 0, 2>
15// }
16
17
18//Camera Front View
19camera {
20 location <0, 0, -9>
21 look_at <0, 0, 2>
22 }
23
24
25 intersection {
26 sphere {
27 <0, 1, 2>, 1
28
29 }
30
31 cylinder {
32 <0, 1, 2>, // Center of one end
33 <0, 2, 2>, // Center of other end
34 1 // Radius
35
36
37 }
38 texture {
39 pigment { color rgb <0.66, 0.77, 0.22> }
40 }
41 }
42
43
44
45
46
47
48 cylinder {
49
50 <0, 0.9, 2>, // Center of one end
51 <0, -1, 2>, // Center of other end
52 1 // Radius
53
54 texture {
55 pigment { color rgb <0.66, 0.77, 0.22> }
56 }
57
58 }
59
60
61
62
63 union {
64
65 sphere {
66 <2, 1, 2>, 0.2
67
68
69
70 }
71 cylinder {
72
73 <2, 1, 2>, // Center of one end
74 <2, -0.2, 2>, // Center of other end
75 0.2 // Radius
76
77
78 }
79
80 sphere {
81 <2, -0.2, 2>, 0.2
82
83
84 }
85
86 texture {
87 pigment { color rgb <0.66, 0.77, 0.22> }
88 }
89 scale <0,-0.9,0>
90 translate -3.2*x
91 translate 0.4*y
92 }
93
94
95
96
97 union {
98
99 sphere {
100 <2, 1, 2>, 0.2
101
102
103
104 }
105 cylinder {
106
107 <2, 1, 2>, // Center of one end
108 <2, -0.2, 2>, // Center of other end
109 0.2 // Radius
110
111
112 }
113
114 sphere {
115 <2, -0.2, 2>, 0.2
116
117
118 }
119 texture {
120 pigment { color rgb <0.66, 0.77, 0.22> }
121 }
122 scale <0,-0.9,0>
123
124 //Zum Ursprung, rotieren und zurück
125 translate -<0,0,2>
126 rotate <65,0,0>
127 translate <0,0,2>
128 translate -0.8*x
129 translate 0.4*y
130
131
132 }
133
134
135
136
137
138
139union {
140
141 sphere {
142 <2, 1, 2>, 0.2
143
144
145
146 }
147 cylinder {
148
149 <2, 1, 2>, // Center of one end
150 <2, -0.2, 2>, // Center of other end
151 0.2 // Radius
152
153
154 }
155
156 sphere {
157 <2, -0.2, 2>, 0.2
158
159
160 }
161
162 texture {
163 pigment { color rgb <0.66, 0.77, 0.22> }
164 }
165 scale <0,-1,0>
166 translate -2.5*x
167 translate -0.5*y
168 }
169
170
171 union {
172
173
174 sphere {
175 <2, 1, 2>, 0.2
176
177
178
179 }
180 cylinder {
181
182 <2, 1, 2>, // Center of one end
183 <2, -0.2, 2>, // Center of other end
184 0.2 // Radius
185
186
187 }
188
189 sphere {
190 <2, -0.2, 2>, 0.2
191
192
193 }
194
195 texture {
196 pigment { color rgb <0.66, 0.77, 0.22> }
197 }
198 scale <0,-1,0>
199 translate -1.5*x
200 translate -0.5*y
201 }
-----
lg Voss - Ach ja und noch was, unsere AndroidPIT-Regeln ლ(╹◡╹ლ)






