package rebelsky.mug; /** * Areas in three-space * * @author CSC152 2004F */ public class Cuboid { int x; int y; int z; int width; int height; int depth; // more to come } // class Cuboid