XRRay: direction property
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
Thuộc tính chỉ đọc direction của giao diện XRRay là một DOMPointReadOnly biểu diễn vectơ hướng 3 chiều của tia, được chuẩn hóa thành vectơ đơn vị có độ dài 1.0.
Giá trị
Một đối tượng DOMPointReadOnly.
Ví dụ
>Sử dụng thuộc tính direction
Thuộc tính direction chứa vectơ hướng 3 chiều đã được chuẩn hóa của tia.
js
let origin = { x: 10.0, y: 10.0, z: 10.0, w: 1.0 };
let direction = { x: 10.0, y: 0.0, z: 0.0, w: 0.0 };
let ray = new XRRay(origin, direction);
ray.direction;
// returns DOMPointReadOnly {x : 1.0, y : 0.0, z : 0.0, w : 0.0}
Thông số kỹ thuật
| Specification |
|---|
| WebXR Hit Test Module> # dom-xrray-direction> |