XRDepthInformation:width 属性
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);
规范
规范 |
---|
WebXR 深度感知模块 # dom-xrdepthinformation-width |
浏览器兼容性
BCD 表格仅在启用了 JavaScript 的浏览器中加载。