Lines Matching full:leftshift
31 // The plots are animated by rotating the data points by leftShift.
36 int leftShift,
47 leftShift %= topData.count();
50 // Account for the leftShift using two loops
51 int shiftToEndCount = topData.count() - leftShift;
52 plot->moveTo(x, topData[leftShift]);
53 fill->moveTo(x, topData[leftShift]);
56 plot->lineTo(x, topData[i + leftShift]);
57 fill->lineTo(x, topData[i + leftShift]);
61 for (int i = 0; i < leftShift; ++i) {
70 // area (and account for leftShift).
71 for (int i = 0; i < leftShift; ++i) {
73 fill->lineTo(x, (*bottomData)[leftShift - 1 - i]);