30 lines
395 B
POVRay
30 lines
395 B
POVRay
#include "colors.inc"
|
|
|
|
global_settings {
|
|
assumed_gamma 1.0
|
|
}
|
|
|
|
|
|
light_source {
|
|
<2000, 2000, -2000>
|
|
color White
|
|
}
|
|
|
|
camera {
|
|
location <90, 0.000000, 0.00000>
|
|
look_at <0, 0, 0>
|
|
angle 10
|
|
orthographic
|
|
}
|
|
|
|
superellipsoid {
|
|
<0.25, 0.25>
|
|
scale <2.5, 1, 3>
|
|
pigment {
|
|
checker color Yellow, color Red
|
|
scale 10
|
|
}
|
|
}
|
|
|
|
background { color rgb<0.2, 0.4, 0.8> }
|