Searched refs:line2Max (Results 1 - 1 of 1) sorted by relevance

/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/
H A DLineRegion.java61 * @param line2Max
64 public boolean intersects(Number line2Min, Number line2Max) { argument
70 //double l2max = line2Max == null ? Double.POSITIVE_INFINITY : line2Max.doubleValue();
74 if(line2Min.doubleValue() <= this.minVal.doubleValue() && line2Max.doubleValue() >= this.maxVal.doubleValue()) {
77 } else return contains(line2Min) || contains(line2Max);

Completed in 84 milliseconds