36 lines
529 B
POVRay
36 lines
529 B
POVRay
#include "colors.inc"
|
|
#include "shapes.inc"
|
|
#include "textures.inc"
|
|
#include "metals.inc"
|
|
#include "stones.inc"
|
|
|
|
global_settings {
|
|
assumed_gamma 1.0
|
|
ambient_light rgb<0.5, 0.5, 0.5>
|
|
}
|
|
light_source {
|
|
<-200, 200, -200>
|
|
color White
|
|
}
|
|
light_source {
|
|
<0, 0, -10>
|
|
color White
|
|
}
|
|
camera {
|
|
location <-20, -3, -20>
|
|
look_at <-0, 0, -0>
|
|
}
|
|
|
|
#include "Hypertrop.pov"
|
|
|
|
object { Hypertrop }
|
|
|
|
|
|
//plane {
|
|
// <0, 1, 0>, 0.3
|
|
// pigment {
|
|
// checker color White*0.7, color White*0.5
|
|
// }
|
|
//}
|
|
|