export const enum EQuadrant {
    TOP = (1 << 0),
    RIGTH = (1 << 1),
    BOTTOM = (1 << 2),
    LEFT = (1 << 3)
};
