зеркало из https://github.com/mozilla/pjs.git
Bug 705009: Report DeviceMotion values in units of m/s^2, not Gs, per current spec. r=dougt
This commit is contained in:
Родитель
4691b5b384
Коммит
caf751cdaf
|
@ -148,9 +148,9 @@ public class GeckoEvent {
|
|||
|
||||
if (s.sensor.getType() == Sensor.TYPE_ACCELEROMETER) {
|
||||
mType = ACCELERATION_EVENT;
|
||||
mX = s.values[0] / SensorManager.GRAVITY_EARTH;
|
||||
mY = s.values[1] / SensorManager.GRAVITY_EARTH;
|
||||
mZ = s.values[2] / SensorManager.GRAVITY_EARTH;
|
||||
mX = s.values[0];
|
||||
mY = s.values[1];
|
||||
mZ = s.values[2];
|
||||
}
|
||||
else {
|
||||
mType = ORIENTATION_EVENT;
|
||||
|
|
Загрузка…
Ссылка в новой задаче