Home
last modified time | relevance | path

Searched refs:tilt (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/tools/orientationplot/
DREADME.txt35 filtered accelerometer data, measured tilt and orientation angle, confidence
74 4. The orientation angle is not measured when the tilt is too close to 90 or -90
79 5. Each orientation has its own bound on allowable tilt angles. It's a good idea to
80 verify that these limits are being enforced by gradually varying the tilt of
86 can be a bit unusual. The tilt is a good indicator of whether the device is
/frameworks/base/services/input/
DInputReader.cpp2371 info->addMotionRange(mOrientedRanges.tilt); in populateDeviceInfo()
2815 mOrientedRanges.tilt.axis = AMOTION_EVENT_AXIS_TILT; in configureSurface()
2816 mOrientedRanges.tilt.source = mSource; in configureSurface()
2817 mOrientedRanges.tilt.min = 0; in configureSurface()
2818 mOrientedRanges.tilt.max = M_PI_2; in configureSurface()
2819 mOrientedRanges.tilt.flat = 0; in configureSurface()
2820 mOrientedRanges.tilt.fuzz = 0; in configureSurface()
3811 float tilt; in cookPointerData() local
3817 tilt = acosf(cosf(tiltXAngle) * cosf(tiltYAngle)); in cookPointerData()
3819 tilt = 0; in cookPointerData()
[all …]
DInputReader.h1250 InputDeviceInfo::MotionRange tilt; member
/frameworks/base/docs/html/sdk/
Dandroid-2.3-highlights.jd251 to recognize complex user gestures and motions, such as tilt, spin, thrust, and
Dandroid-4.0-highlights.jd889 <p>Android 4.0 includes full support for stylus input events, including tilt and
Dandroid-4.0.jd1576 devices also report the distance between the stylus tip and the digitizer, the stylus tilt angle,
/frameworks/base/services/input/tests/
DInputReader_test.cpp3137 float tilt = acosf(cosf(tiltXAngle) * cosf(tiltYAngle)); in TEST_F() local
3150 ASSERT_EQ(tilt, args.pointerCoords[0].getAxisValue(AMOTION_EVENT_AXIS_TILT)); in TEST_F()