home *** CD-ROM | disk | FTP | other *** search
- // ActiveVRML 1.0 ASCII
- // Saucer1 Sample Script
-
- // The first step is to import the raw media for our sample
- ship = first (import ("shipred.gif"));
- mountain = first (import("mountain.gif"));
- clouds = first (import("clouds.gif"));
-
- // Define a 2D transformation to describe the saucer's position
- movement = translate (0.005, 0.007);
-
- // Define a new saucer object that has movement applied to it
- saucer = transformImage (movement, ship);
-
- // Define the expression used for display output
- model = mountain over saucer over clouds;