Home
last modified time | relevance | path

Searched refs:thisPoint (Results 1 – 4 of 4) sorted by relevance

/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
DBezierLineAndPointRenderer.java32 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()
DLineAndPointRenderer.java73 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()
DStepRenderer.java34 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/
DSkFontHost_win.cpp1447 const POINTFX* thisPoint = fCurPoint; in next() local
1449 return thisPoint; in next()