Searched refs:LineRegion (Results 1 – 5 of 5) sorted by relevance
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/ |
D | LineRegionTest.java | 39 LineRegion lr = new LineRegion(0d, 0d); in testConstructor() 43 lr = new LineRegion(1.5d, -2d); in testConstructor() 47 lr = new LineRegion(10d, 20d); in testConstructor() 60 LineRegion line1 = new LineRegion(1, 10); in testIntersects() 61 LineRegion line2 = new LineRegion(11, 20); in testIntersects() 78 LineRegion lr = new LineRegion(0, 10); in testLength() 81 lr = new LineRegion(-5, 5); in testLength()
|
D | RegionTest.java | 44 LineRegion line1 = new LineRegion(1, 10); in testIntersects() 45 LineRegion line2 = new LineRegion(11, 20); in testIntersects()
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ |
D | LineRegion.java | 23 public class LineRegion { class 27 public LineRegion(Number val1, Number v2) { in LineRegion() method in LineRegion 38 return new LineRegion(val1, val2).length(); in measure() 54 public boolean intersects(LineRegion lineRegion) { in intersects()
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/ |
D | RectRegion.java | 21 import com.androidplot.LineRegion; 33 LineRegion xLineRegion; 34 LineRegion yLineRegion; 45 xLineRegion = new LineRegion(minX, maxX); in RectRegion() 46 yLineRegion = new LineRegion(minY, maxY); in RectRegion()
|
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/ |
D | BarPlotExampleActivity.java | 42 import com.androidplot.LineRegion; 330 LineRegion.measure(x, thisX).doubleValue(); in onPlotClicked() 332 LineRegion.measure(y, thisY).doubleValue(); in onPlotClicked()
|