Lines Matching refs:polyLine
752 void UIChartPolyline::FindCrossPoints(const ChartLine& line, const ChartLine& polyLine, CrossPointSet& cross)
754 if (GetLineCrossPoint(line.start, line.end, polyLine.start, polyLine.end, cross.nextFirst)) {
755 if (enableReverse_ && (MATH_MIN(line.start.y, line.end.y) >= MATH_MAX(polyLine.start.y, polyLine.end.y))) {
757 if (polyLine.start.y < polyLine.end.y) {
767 if (polyLine.start.y > polyLine.end.y) {
775 if (polyLine.start.y < polyLine.end.y) {
787 if (polyLine.start.y > polyLine.end.y) {
806 ChartLine polyLine = {{0}};
835 polyLine = {start, end};
836 FindCrossPoints(linePoints, polyLine, cross);