home *** CD-ROM | disk | FTP | other *** search
- //
- // filename: F2PSCN1.POV
- //
- // Ellipsoid and plane.
- //
- // by David Grossman
- //
-
- #include "frct2pov.inc"
-
- camera { location < 0, 6, 7 >
- direction < 0, 0, 4.5 >
- up < 0, 1, 0 > // y is up
- right < -4/3, 0, 0 > // right handed system
- look_at < 0, .5, 0 >
- }
-
-
- object { sphere { < 0, 1, 0 >, 1 scale < 1,.5,.75 > }
- texture { frct2pov
- finish { ambient .4 diffuse .6 } rotate -90*x } }
-
- object { plane { y,0 }
- texture { frct2pov
- finish { ambient .4 diffuse .6 } rotate -90*x scale 2 } }
-
- object { light_source { < 10, 30, 20 > color rgb < 1, 1, 1 > } }
-
-
-
-
-
-