All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.gsi.chart.ui.geometry.Corner Maven / Gradle / Ivy

package de.gsi.chart.ui.geometry;

/**
 * Enum for which edge of a rectangle something should be. @see also Side
 *
 * @author rstein
 */
public enum Corner {
    /**
     * Represents top-left edge of a rectangle.
     */
    TOP_LEFT,

    /**
     * Represents top-right edge of a rectangle.
     */
    TOP_RIGHT,

    /**
     * Represents bottom-left edge of a rectangle.
     */
    BOTTOM_LEFT,

    /**
     * Represents top-right edge of a rectangle.
     */
    BOTTOM_RIGHT
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy