Home
last modified time | relevance | path

Searched refs:sinAngle (Results 1 – 2 of 2) sorted by relevance

/frameworks/libs/systemui/toruslib/torus-math/src/main/java/com/google/android/torus/math/
DRotationQuaternion.kt99 val sinAngle = sin(angleRad) constant in com.google.android.torus.math.RotationQuaternion
101 x = sinAngle * this.direction.x
102 y = sinAngle * this.direction.y
103 z = sinAngle * this.direction.z
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
DZigZagClassifier.java208 double sinAngle = Math.sin(angle); in rotateMotionEvents() local
215 double rotatedX = cosAngle * x + sinAngle * y + offsetX; in rotateMotionEvents()
216 double rotatedY = -sinAngle * x + cosAngle * y + offsetY; in rotateMotionEvents()