XRFrame.getViewerPose()
The getViewerPose()
method, a member of the XRFrame
interface, returns a XRViewerPose
object which describes the viewer's pose (position and orientation) relative to the specified reference space.
See the getPose()
method for a way to calculate a pose that represents the difference between two spaces.
Syntax
getViewerPose(referenceSpace)
Parameters
referenceSpace
-
An
XRReferenceSpace
object specifying the space to use as the reference point or base for the computation of the viewer's current pose.
Return value
A XRViewerPose
describing the viewer's position and orientation relative to the specified reference space.
Exceptions
InvalidStateError
-
A
DOMException
indicating thatgetViewerPose()
was not called within the context of a callback to a session'sXRSession.requestAnimationFrame()
.
Examples
In this callback function for requestAnimationFrame()
, the XRViewerPose
describing the viewer's viewpoint on the world is obtained by calling getViewerPose()
on the XRFrame
passed into the callback.
viewerPose = xrFrame.getViewerPose(xrReferenceSpace); if (viewerPose) { /* render the pose's views */ }
To see a complete example, take a look at Movement, orientation, and motion.
Specifications
Specification |
---|
WebXR Device API # dom-xrframe-getviewerpose |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
getViewerPose |
79 |
79 |
No |
No |
No |
No |
No |
79 |
No |
No |
No |
11.2 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/XRFrame/getViewerPose