Searched refs:firstPoint (Results 1 – 9 of 9) sorted by relevance
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/ |
D | LineAndPointRenderer.java | 82 PointF firstPoint = null; in drawSeries() local 110 if(firstPoint == null) { in drawSeries() 112 firstPoint = thisPoint; in drawSeries() 115 path.moveTo(firstPoint.x, firstPoint.y); in drawSeries() 125 renderPath(canvas, plotArea, path, firstPoint, lastPoint, formatter); in drawSeries() 127 firstPoint = null; in drawSeries() 131 if(linePaint != null && firstPoint != null) { in drawSeries() 132 renderPath(canvas, plotArea, path, firstPoint, lastPoint, formatter); in drawSeries() 155 …protected void renderPath(Canvas canvas, RectF plotArea, Path path, PointF firstPoint, PointF last… in renderPath() argument 164 path.lineTo(firstPoint.x, plotArea.bottom); in renderPath() [all …]
|
/external/fonttools/Lib/fontTools/pens/ |
D | pointInsidePen.py | 51 self.firstPoint = None 55 if self.firstPoint is not None: 79 if self.firstPoint is not None: 83 self.firstPoint = point 186 if self._getCurrentPoint() != self.firstPoint: 187 self.lineTo(self.firstPoint) 188 self.firstPoint = None
|
/external/replicaisland/tools/ |
D | ExtractPoints.js | 72 var firstPoint = points[y]; variable 77 edge.startX = firstPoint.anchor[0]; 78 edge.startY = firstPoint.anchor[1];
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/ |
D | KMeansPlusPlusClusterer.java | 168 final T firstPoint = pointSet.remove(random.nextInt(pointSet.size())); in chooseInitialCenters() local 169 resultSet.add(new Cluster<T>(firstPoint)); in chooseInitialCenters()
|
/external/skia/src/gpu/ops/ |
D | GrAAConvexTessellator.h | 77 const SkPoint& firstPoint() const { return fPts[0].fPt; } in firstPoint() function
|
D | GrQuadPerEdgeAA.cpp | 317 SkPoint firstPoint = {0.f, 0.f}; in get_exact_coverage() local 330 firstPoint = p; in get_exact_coverage() 445 accumulate(firstPoint); in get_exact_coverage()
|
D | GrAAConvexTessellator.cpp | 755 bool dupNext = duplicate_pt(newPt, fCandidateVerts.firstPoint()); in createInsetRing() 766 … bool dupPrevVsNext = duplicate_pt(fCandidateVerts.firstPoint(), fCandidateVerts.lastPoint()); in createInsetRing()
|
/external/skqp/src/gpu/ops/ |
D | GrAAConvexTessellator.h | 77 const SkPoint& firstPoint() const { return fPts[0].fPt; } in firstPoint() function
|
D | GrAAConvexTessellator.cpp | 755 bool dupNext = duplicate_pt(newPt, fCandidateVerts.firstPoint()); in createInsetRing() 766 … bool dupPrevVsNext = duplicate_pt(fCandidateVerts.firstPoint(), fCandidateVerts.lastPoint()); in createInsetRing()
|