Lines Matching defs:point
142 // So the slope of the tangent line at point (x, x^2) is 2x.
444 // The y-value(equal to x*x) of intersection point for the kVerticalLine intersection type.
507 const SkPoint& point,
524 if ((rowData.fQuadXDirection == -1 && segment.fPts[0].fY <= point.fY &&
526 (rowData.fQuadXDirection == 1 && segment.fPts[2].fY <= point.fY &&
530 if ((rowData.fQuadXDirection == -1 && segment.fPts[2].fY <= point.fY &&
532 (rowData.fQuadXDirection == 1 && segment.fPts[0].fY <= point.fY &&
555 // The path start or end at the tangent point.
556 if (segment.fPts[0].fY == point.fY) {
558 } else if (segment.fPts[2].fY == point.fY) {
567 static float distance_to_segment(const SkPoint& point,
573 const DPoint xformPt = segment.fXformMatrix.mapPoint(point);
587 if (between_closed_open(point.fY, segment.fBoundingBox.fTop,
615 if (between_closed_open(point.fY, segment.fBoundingBox.fTop,
617 *side = calculate_side_of_quad(segment, point, xformPt, rowData);
673 const SkPoint point = SkPoint::Make(pX, pY);
688 float currDistSq = distance_to_segment(point, segment, rowData, &side);