mirror of
https://github.com/servo/servo.git
synced 2025-07-01 04:23:39 +01:00
21 lines
765 B
Text
21 lines
765 B
Text
typedef (Float32Array or Float64Array or DOMMatrix) RotationMatrixType;
|
|
|
|
[SecureContext, Exposed=Window]
|
|
interface OrientationSensor : Sensor {
|
|
readonly attribute FrozenArray<double>? quaternion;
|
|
void populateMatrix(RotationMatrixType targetMatrix);
|
|
};
|
|
|
|
enum OrientationSensorLocalCoordinateSystem { "device", "screen" };
|
|
|
|
dictionary OrientationSensorOptions : SensorOptions {
|
|
OrientationSensorLocalCoordinateSystem referenceFrame = "device";
|
|
};
|
|
|
|
[Constructor(optional OrientationSensorOptions sensorOptions), SecureContext, Exposed=Window]
|
|
interface AbsoluteOrientationSensor : OrientationSensor {
|
|
};
|
|
|
|
[Constructor(optional OrientationSensorOptions sensorOptions), SecureContext, Exposed=Window]
|
|
interface RelativeOrientationSensor : OrientationSensor {
|
|
};
|