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

  /packages/apps/Camera/src/com/android/camera/ui/
ZoomControlWheel.java 62 private double mWheelRadius; // in pixel
82 mWheelRadius = mShutterButtonRadius + mStrokeWidth * 0.5;
141 int x = mCenterX + (int)(mWheelRadius * Math.cos(radian));
142 int y = mCenterY - (int)(mWheelRadius * Math.sin(radian));
193 mWheelRadius, TRAIL_COLOR, TRAIL_WIDTH);
IndicatorControlWheel.java 110 private double mWheelRadius; // in pixel
214 mWheelRadius = mShutterButtonRadius + mStrokeWidth * 0.5;
388 if ((centerToTouchPoint <= (mWheelRadius + mStrokeWidth))
497 int x = mCenterX + (int)(mWheelRadius * Math.cos(radian));
498 int y = mCenterY - (int)(mWheelRadius * Math.sin(radian));
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
ZoomControlWheel.java 62 private double mWheelRadius;
83 mWheelRadius = mShutterButtonRadius + mStrokeWidth * 0.5;
126 int x = mCenterX + (int)(mWheelRadius * Math.cos(radian));
127 int y = mCenterY - (int)(mWheelRadius * Math.sin(radian));
177 mWheelRadius, TRAIL_COLOR, TRAIL_WIDTH);
IndicatorControlWheel.java 79 private double mWheelRadius;
161 mWheelRadius = mShutterButtonRadius + mStrokeWidth * 0.5;
264 if ((radius <= (mWheelRadius + mStrokeWidth)) && (radius > mShutterButtonRadius)) {
360 int x = mCenterX + (int)(mWheelRadius * Math.cos(radian));
361 int y = mCenterY - (int)(mWheelRadius * Math.sin(radian));

Completed in 45 milliseconds