OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // http://mozvr.github.io/webvr-spec/webvr.html#vrpose |
| 6 [ |
| 7 RuntimeEnabled=WebVR, |
| 8 ] interface VRPose { |
| 9 readonly attribute double timeStamp; |
| 10 readonly attribute Float32Array? position; |
| 11 readonly attribute Float32Array? linearVelocity; |
| 12 readonly attribute Float32Array? linearAcceleration; |
| 13 readonly attribute Float32Array? orientation; |
| 14 readonly attribute Float32Array? angularVelocity; |
| 15 readonly attribute Float32Array? angularAcceleration; |
| 16 }; |
OLD | NEW |