This lecture was about using the 3D modeller, ArtOfIllusion. The modeller is in Java and can be downloaded for free from
 www.artofillusion.org
On studsys, you can run the modeller by typing
 java -jar ~mikes/174/ArtOfIllusion.jar

Here are some AOI files for intermediate steps in my space ship demo:

Here are the Wavefront .obj and .mtl files for the finished spaceship.

The demo ObjLoad.java shows how to load the model into a Java3D program by means of the ObjectFile class.

NOTE: ObjectFile seems to expect a path before the filename. So, if your obj file is in the current directory, use ./myfile.obj, rather than just myfile.obj .