home *** CD-ROM | disk | FTP | other *** search
- // -------------------------------------------------------------------
- // Basic file for Object Replicator
- // -------------------------------------------------------------------
-
- #include "colors.inc"
- #include "textures.inc"
- #include "shapes.inc"
-
- camera {
- location <0, 5,-50>
- direction <0, 0, 1>
- up <0, 1, 0>
- right <4/3, 0, 0>
- look_at <0, 5, -24>
-
- translate <50 0 0 >
- }
-
- light_source {<50, 50, -100> color White}
-
- light_source {<-50, 50, -100> color White}
-
- // Sky sphere
- sphere { <0, 0, 0>, 10000
- pigment {color blue 1}
- finish {Luminous}
- }
-
- // Floor plane
- plane { y, 0
- pigment {checker color Black color Gray
- scale <10, 10, 10 > rotate <0, 35, 0 >
- }
- finish {ambient 0.45 diffuse 0.75}
- }
-