namespace Sog { /// /// Represents the 3 axis in world space. /// public enum Axis { /// /// No axis - we must have entered the fourth dimension /// None, /// /// The x axis /// X, /// /// The y axis /// Y, /// /// The z axis /// Z } }