
Hierarchy
Animate something that exemplifies a hierarchical model. For example, a solar system in which moons orbit planets which orbit the sun, as well as spinning on their own axes. An amusement park ride also typically employs rotations heaped upon rotations in an attempt to make the rider sick. In general, you can pick one of the following four types of thing to animate (or create your own):
- a solar system
- an amusement park ride
- a hanging mobile
- an robot moving in a coordinated way
All data regarding your model (radius of orbit, number of cars, length of bar or bone, etc.) should be given as parameters that can be easily changed. Do not hard-code them. In the past, students have read the data in from a file or declared constants within a global header file. Your hierarchical model should be at least three "levels" deep (sun, planet, moon or shoulder, elbow, hand, etc.); however, the data structure for your model must be easily extendible to an arbitrary hierarchical depth (moons orbiting moons, fingers on hands, etc.).
The user of your program should be able to control a variety of options within your simulation using the keyboard. You may choose which keys control which functions, but make sure they are clearly documented in your README file.
Allow the user the following controls
- start/stop the animation
- show/hide the arc of movement (orbits, etc)
- move around within the simulation, i.e., zoom in/out, move left/right/up/down
- reset the view of the simulation
- restart the simulation
- quit the simulation
Extra Credit
There are many parts of the project that are open ended. You can earn bonus points with extremely creative or artistic solutions. Make sure that you mention your assumptions, extra features, and how to run your program (especially with regard to command line arguments) in your README file.
To get you started, here are some extra credit ideas:
- Use textures and materials on your objects
- Make your model extremely physically accurate (e.g., based on actual physical data or equations)
- Allow the user to zoom in on a specific piece of the model (either by clicking on it or via the keyboard)
- Animate an additional model within your scene that does not follow the hierarchical motion (a spaceship, fly, loose change, etc.)
- Allow the user to follow the additional model with the camera as it moves through the scene
|
|