blob: 9ceaaf0106390faf66e461340f31f1cc689a0b5a [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Specification at:
// https://w3c.github.io/orientation-sensor/
typedef (Float32Array or Float64Array or DOMMatrix) RotationMatrixType;
[
RuntimeEnabled=Sensor,
] interface OrientationSensor : Sensor {
[CachedAttribute=isReadingDirty] readonly attribute FrozenArray<double>? quaternion;
[RaisesException, MeasureAs=OrientationSensorPopulateMatrix] void populateMatrix(RotationMatrixType targetBuffer);
};