package bk; /** * There are four types of layouts, based on iteration order and median alignment. * Additionally there is one layout for the combined coordinates. * @author kolja * */ public enum LayoutType{ TOP_BOTTOM_LEFT, TOP_BOTTOM_RIGHT, BOTTOM_TOP_LEFT, BOTTOM_TOP_RIGHT, COMBINED }