Align Poly Verts (alignPolyVerts.mel)

Aligns poly verts on 1, 2, or 3 axes by moving them all to the average coordinates in world space. I usually save this as a shelf item for easy access.

Threaded Auto Save (autosave.py)

This is an autosave script for Maya that runs in a background thread. The main advantage of using threads is that it does not rely on common, though often problematic, triggers such as tool or selection changes. userSetup.py will need to be updated/created to import this file and call autosave.sched() for it to start automatically. Otherwise this can be sourced through the script editor manually.

OBJ Importer (Obj.zip)

Includes Obj.cpp and Obj.h. This loads an OBJ file and provides a generic render function using OpenGL for the static mesh. Currently does not support materials. Work in progress!