Lines Matching refs:point
67 for (auto point = linePointsList.begin(), prePoint = point; point != linePointsList.end(); point++) {
68 if (lux < point->x) {
69 if (point->x < prePoint->x || IsEqualF(point->x, prePoint->x)) {
72 brightnessLevel = ((point->y - prePoint->y) / (point->x - prePoint->x) * (lux - prePoint->x))
77 prePoint = point;