Searched refs:thisPoint (Results 1 – 4 of 4) sorted by relevance
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/ |
D | BezierLineAndPointRenderer.java | 32 protected void appendToPath(Path path, PointF thisPoint, PointF lastPoint) { in appendToPath() argument 37 mid.set((lastPoint.x + thisPoint.x) / 2, (lastPoint.y + thisPoint.y) / 2); in appendToPath() 40 path.quadTo((mid.x + thisPoint.x) / 2, lastPoint.y, thisPoint.x, thisPoint.y); in appendToPath()
|
D | LineAndPointRenderer.java | 73 protected void appendToPath(Path path, PointF thisPoint, PointF lastPoint) { in appendToPath() argument 75 path.lineTo(thisPoint.x, thisPoint.y); in appendToPath() 80 PointF thisPoint; in drawSeries() local 93 thisPoint = ValPixConverter.valToPix( in drawSeries() 101 points.add(new Pair<PointF, Integer>(thisPoint, i)); in drawSeries() 104 thisPoint = null; in drawSeries() 107 if(linePaint != null && thisPoint != null) { in drawSeries() 112 firstPoint = thisPoint; in drawSeries() 119 appendToPath(path, thisPoint, lastPoint); in drawSeries() 122 lastPoint = thisPoint; in drawSeries()
|
D | StepRenderer.java | 34 protected void appendToPath(Path path, PointF thisPoint, PointF lastPoint) { in appendToPath() argument 37 path.lineTo(thisPoint.x, lastPoint.y); in appendToPath() 38 path.lineTo(thisPoint.x, thisPoint.y); in appendToPath()
|
/external/skia/src/ports/ |
D | SkFontHost_win.cpp | 1447 const POINTFX* thisPoint = fCurPoint; in next() local 1449 return thisPoint; in next()
|