Home
last modified time | relevance | path

Searched refs:dotAngleRadians (Results 1 – 4 of 4) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/timer/
DTimerCircleView.java142 final double dotAngleRadians = Math.toRadians(dotAngleDegrees); in onDraw() local
143 final float dotX = xCenter + (float) (radius * Math.cos(dotAngleRadians)); in onDraw()
144 final float dotY = yCenter + (float) (radius * Math.sin(dotAngleRadians)); in onDraw()
DTimerCircleView.kt144 val dotAngleRadians = Math.toRadians(dotAngleDegrees.toDouble()) in onDraw() constant
145 val dotX = xCenter + (radius * cos(dotAngleRadians)).toFloat() in onDraw()
146 val dotY = yCenter + (radius * sin(dotAngleRadians)).toFloat() in onDraw()
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchCircleView.java159 final double dotAngleRadians = Math.toRadians(dotAngleDegrees); in onDraw() local
160 final float dotX = xCenter + (float) (radius * Math.cos(dotAngleRadians)); in onDraw()
161 final float dotY = yCenter + (float) (radius * Math.sin(dotAngleRadians)); in onDraw()
DStopwatchCircleView.kt155 val dotAngleRadians = Math.toRadians(dotAngleDegrees.toDouble()) in onDraw() constant
156 val dotX = xCenter + (radius * cos(dotAngleRadians)).toFloat() in onDraw()
157 val dotY = yCenter + (radius * sin(dotAngleRadians)).toFloat() in onDraw()