Home | History | Annotate | Download | only in cpp

Lines Matching refs:step

57     int step;
69 << state.step * state.direction << "\tLast change="
77 state.step = FOCUS_STEP;
94 * Minimal focus step depends on lens
121 cout << "Found minimal focus step = " << lStep << endl;
170 state.step /= 2;
176 state.step = FOCUS_STEP;
181 state.step = static_cast<int>(static_cast<double>(state.step) * 0.75);
186 || ((state.step < (state.minFocusStep * 1.5))
187 && state.stepToLastMax > state.step)))
190 state.step = static_cast<int>(static_cast<double>(state.step) * 0.75);
200 state.stepToLastMax -= state.direction * state.step;
201 return state.step;
225 "\t\t\tfor every minimum step),\n"
226 "\t-d INT\t\tset minimum focus step,\n"
289 cerr << "Invalid minimum focus step argument." << endl;
393 state.step = state.minFocusStep * 4;
394 cout << "In focus, you can press 'f' to improve with small step, "