XRFrame.fillJointRadii()
The fillJointRadii() method of the XRFrame interface populates a Float32Array with radii for a list of hand joint spaces and returns true if successful for all spaces.
Syntax
fillJointRadii(jointSpaces, radii)
Parameters
jointSpaces-
An array of
XRJointSpaceobjects for which to obtain the radii. radii-
A
Float32Arraythat is populated with the radii of thejointSpaces.
Return value
A boolean indicating if all of the spaces have a valid pose.
Exceptions
- Throws a
TypeErrorif the length ofjointSpacesis larger than the number of elements inradii.
Examples
Obtaining radii for all joints of a hand
To efficiently get all radii for all 25 joints of each XRHand, you can use the fillJointRadii() method.
let radii1 = new Float32Array(25); let radii2 = new Float32Array(25); function onXRFrame(xrFrame, renderer) { let hand1 = xrFrame.session.inputSources[0].hand; xrFrame.fillJointRadii(hand1.values(), radii1); let hand2 = xrFrame.session.inputSources[1].hand; xrFrame.fillJointRadii(hand2.values(), radii2); }
Specifications
No specification data found for api.XRFrame.fillJointRadii.
Check for problems with this page or contribute a missing spec_url to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.
Browser compatibility
No compatibility data found for api.XRFrame.fillJointRadii.
Check for problems with this page or contribute missing data to mdn/browser-compat-data.
See also
© 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/fillJointRadii