home *** CD-ROM | disk | FTP | other *** search
- // Mike Williams
- // 111 Evering Road
- // LONDON N16 7SL
-
- #include "colors"
- #include "textures"
- #include "shapes"
-
- camera {
- location <-10 0 -20>
- direction <0 0 1> // FOV control
- up <0 1 0>
- right <1.25 0 0>
- look_at <0 0 0>
- }
-
- object { light_source { <-50 100 -50> color White }}
- object { light_source { < 50 100 -50> color White }}
-
- //Floor
- object
- { plane {<0 1 0> -6 }
- texture { colour Gray40 }
- colour Gray40
- }
-
- // Sky Sphere
- object
- { sphere {<0 0 0> 1000}
- texture { colour SkyBlue }
- colour SkyBlue
- }
-
- #default { texture { phong 1 phong_size 50 ambient 0.5 diffuse 0.5}}
-
- #declare Train = composite {
- object
- { union
- { intersection {Disk_X scale <7 3 3>}
- box {<-6 -5 -3><3 -3 3>}
- box {<4 -5 -3><13 -1 3>}
- box {<7 6 -3><12 7 3>}
- difference
- { box {<7 -2 -3><8 7 3>}
- quadric {Cylinder_X translate <0 4.5 -1.5>}
- quadric {Cylinder_X translate <0 4.5 1.5>}
- }
- quadric {Ellipsoid scale <1.5 2.5 1.5> translate <1.5 2.5 0>}
- quadric {Ellipsoid scale <1 3 3> translate <-7 0 0>}
- }
- texture {colour Red}
- colour Red
- }
- object
- { union
- { intersection {Disk_Z scale <2 2 -.2> translate <-5 -4 -3.3>}
- intersection {Disk_Z scale <2 2 -.2> translate <-5 -4 3.3>}
- intersection {Disk_Z scale <2 2 -.2> translate < 1 -4 -3.3>}
- intersection {Disk_Z scale <2 2 -.2> translate < 1 -4 3.3>}
- intersection {Disk_Z scale <3 3 -.2> translate < 9 -3 -3.3>}
- intersection {Disk_Z scale <3 3 -.2> translate < 9 -3 3.3>}
-
- intersection {Disk_Y scale <1 3 1> translate <-5 2.5 0>}
- }
- texture {colour Gray20}
- colour Black
- }
- bounded_by {box {<-8 -6 -4><12 7 4>}}
- }
-
-
- composite {Train}
-
-
-