XRDepthInformation:width 属性
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
XRDepthInformation 接口的 width 只读属性包含深度缓冲区的宽度(列数)。
值
无符号长整型。
示例
使用 XRFrame.getDepthInformation()(CPU)或 XRWebGLBinding.getDepthInformation()(WebGL)获取深度信息。返回的对象将包含深度缓冲区的 width,可用于进一步的计算。
js
const smallerDepthDimension = Math.min(depthInfo.width, depthInfo.height);
const largerDepthDimension = Math.max(depthInfo.width, depthInfo.height);
规范
| Specification |
|---|
| WebXR Depth Sensing Module> # dom-xrdepthinformation-width> |
浏览器兼容性
Loading…