package js.html;
/**
This WebVR API interface represents the state of a VR sensor at a given timestamp (which includes orientation, position, velocity, and acceleration information.)
**/
@:native("VRPose") extern class VRPose {
function new();
final angularAcceleration : Null;
final angularVelocity : Null;
final linearAcceleration : Null;
final linearVelocity : Null;
final orientation : Null;
final position : Null;
final timestamp : Float;
static var prototype : VRPose;
}