HomeSort by relevance Sort by last modified time
    Searched refs:mChildRadians (Results 1 - 2 of 2) sorted by null

  /packages/apps/LegacyCamera/src/com/android/camera/ui/
IndicatorControlWheel.java 80 private double mChildRadians[];
183 mChildRadians = new double[getChildCount()];
220 if ((delta >= (mChildRadians[startIndex] - halfTouchSectorRadians)) &&
221 (delta <= (mChildRadians[endIndex] + halfTouchSectorRadians))) {
224 index = (int) ((delta - mChildRadians[startIndex])
231 if (delta <= (mChildRadians[startIndex + index]
235 if (delta >= (mChildRadians[startIndex + index + 1]
320 - mChildRadians[mSecondLevelStartIndex];
321 for (int i = 0 ; i < getChildCount(); ++i) mChildRadians[i] += increment;
324 mZoomControl.rotate(mChildRadians[0
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
IndicatorControlWheel.java 111 private double mChildRadians[];
246 mChildRadians = new double[getChildCount()];
290 startRadians = mChildRadians[startIndex] - halfTouchSectorRadians;
293 startRadians = mChildRadians[startIndex] - halfTouchSectorRadians;
298 startRadians = mChildRadians[startIndex] - halfTouchSectorRadians;
303 double endRadians = mChildRadians[endIndex] + halfTouchSectorRadians;
327 index = (int) ((delta - rebase(mChildRadians[startIndex], offset))
335 if (delta >= (rebase(mChildRadians[startIndex], offset)
340 if (delta <= (rebase(mChildRadians[startIndex + index], offset)
344 if (delta >= (rebase(mChildRadians[startIndex + index + 1], offset
    [all...]

Completed in 43 milliseconds