Home
last modified time | relevance | path

Searched refs:currentAngle (Results 1 – 3 of 3) sorted by relevance

/frameworks/libs/systemui/iconloaderlib/src/com/android/launcher3/icons/
DIconNormalizer.java378 float currentAngle = (xCoordinates[i] - xCoordinates[last]) / (i - last); in convertToConvexArray() local
382 if ((currentAngle - lastAngle) * direction < 0) { in convertToConvexArray()
385 currentAngle = (xCoordinates[i] - xCoordinates[start]) / (i - start); in convertToConvexArray()
386 if ((currentAngle - angles[start]) * direction >= 0) { in convertToConvexArray()
/frameworks/base/packages/SystemUI/unfold/src/com/android/systemui/unfold/updates/
DDeviceFoldStateProvider.kt173 private fun isClosingThresholdMet(currentAngle: Float): Boolean { in isClosingThresholdMet()
175 return closingThreshold == null || currentAngle < closingThreshold in isClosingThresholdMet()
/frameworks/base/core/java/com/android/internal/app/
DSimpleIconFactory.java637 float currentAngle = (xCoordinates[i] - xCoordinates[last]) / (i - last); in convertToConvexArray() local
641 if ((currentAngle - lastAngle) * direction < 0) { in convertToConvexArray()
644 currentAngle = (xCoordinates[i] - xCoordinates[start]) / (i - start); in convertToConvexArray()
645 if ((currentAngle - angles[start]) * direction >= 0) { in convertToConvexArray()