Searched refs:lastPoint (Results 1 – 6 of 6) 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() 38 path.quadTo((lastPoint.x + mid.x) / 2, lastPoint.y, mid.x, mid.y); 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 81 PointF lastPoint = null; in drawSeries() local 118 if(lastPoint != null) { in drawSeries() 119 appendToPath(path, thisPoint, lastPoint); in drawSeries() 122 lastPoint = thisPoint; in drawSeries() 124 if(lastPoint != null) { in drawSeries() 125 renderPath(canvas, plotArea, path, firstPoint, lastPoint, formatter); in drawSeries() 128 lastPoint = null; in drawSeries() 132 renderPath(canvas, plotArea, path, firstPoint, lastPoint, formatter); in drawSeries() 155 …ath(Canvas canvas, RectF plotArea, Path path, PointF firstPoint, PointF lastPoint, LineAndPointFor… in renderPath() argument [all …]
|
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()
|
/external/replicaisland/tools/ |
D | ExtractPoints.js | 73 var lastPoint = points[(y + 1) % points.length]; variable 80 edge.endX = lastPoint.anchor[0]; 81 edge.endY = lastPoint.anchor[1];
|
/external/skia/src/gpu/batches/ |
D | GrAAConvexTessellator.cpp | 654 if (!duplicate_pt(newPt, fCandidateVerts.lastPoint())) { in createInsetRing() 672 bool dupPrev = duplicate_pt(newPt, fCandidateVerts.lastPoint()); in createInsetRing() 684 … bool dupPrevVsNext = duplicate_pt(fCandidateVerts.firstPoint(), fCandidateVerts.lastPoint()); in createInsetRing() 827 if (this->numPts() > 0 && duplicate_pt(p, this->lastPoint())) { in lineTo() 842 if (duplicate_pt(p, this->lastPoint())) { in lineTo() 902 SkPoint lastPoint = *(quads++); in conicTo() local 906 quadPts[0] = lastPoint; in conicTo() 910 lastPoint = quadPts[2]; in conicTo()
|
D | GrAAConvexTessellator.h | 51 const SkPoint& lastPoint() const { return fPts.top(); } in lastPoint() function 73 const SkPoint& lastPoint() const { return fPts.top().fPt; } in lastPoint() function
|