XRRay: origin 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 origin của giao diện XRRay là một DOMPointReadOnly biểu diễn điểm 3 chiều trong không gian mà tia xuất phát từ đó, tính bằng mét.
Giá trị
Một đối tượng DOMPointReadOnly.
Ví dụ
>Sử dụng thuộc tính origin
Thuộc tính origin chứa điểm 3 chiều trong không gian mà tia xuất phát từ đó, tính bằng mét.
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.origin;
// returns DOMPointReadOnly {x : 10.0, y : 10.0, z : 10.0, w : 1.0}
Thông số kỹ thuật
| Specification |
|---|
| WebXR Hit Test Module> # dom-xrray-origin> |