![JAR search and dependency download from the Maven repository](/logo.png)
de.gsi.chart.ui.geometry.Corner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chartfx-chart Show documentation
Show all versions of chartfx-chart Show documentation
This charting library ${project.artifactId}- is an extension
in the spirit of Oracle's XYChart and performance/time-proven JDataViewer charting functionalities.
Emphasis was put on plotting performance for both large number of data points and real-time displays,
as well as scientific accuracies leading to error bar/surface plots, and other scientific plotting
features (parameter measurements, fitting, multiple axes, zoom, ...).
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 - 2025 Weber Informatics LLC | Privacy Policy