org.omegahat.Graphics.Plots.DataStructures
Interface HistogramBinInt
- All Known Subinterfaces:
- DynamicHistogramBinInt
- All Known Implementing Classes:
- HistogramBin
- public interface HistogramBinInt
Interface describing a bin within a histogram, providing information about the
start and end points of the bin and its height.
|
Field Summary |
static int |
MAX
Used to identify the left or minimum value of the range in the array
returned by range() |
static int |
MIN
Used to identify the right or maximum value of the range in the array
returned by range() |
|
Method Summary |
double |
height()
The height of the bin, or y coordinate of the top of the bin. |
double[] |
range()
The start and end point of the bin. |
MAX
public static final int MAX
- Used to identify the left or minimum value of the range in the array
returned by
range()
MIN
public static final int MIN
- Used to identify the right or maximum value of the range in the array
returned by
range()
range
public double[] range()
- The start and end point of the bin.
height
public double height()
- The height of the bin, or y coordinate of the top of the bin.