XRRigidTransform.inverse is now a lazy attribute

This commit is contained in:
Manish Goregaokar 2019-04-03 11:33:06 -07:00
parent fcec93ae16
commit eb837d1ed7
2 changed files with 6 additions and 2 deletions

View file

@ -10,5 +10,5 @@ interface XRRigidTransform {
readonly attribute DOMPointReadOnly position;
readonly attribute DOMPointReadOnly orientation;
// readonly attribute Float32Array matrix;
XRRigidTransform inverse();
readonly attribute XRRigidTransform inverse;
};