共用方式為


XR_BIAS至浮動轉換規則

本節僅適用于 Windows 7 和更新版本的作業系統。

下列程式碼示範如何將XR_BIAS轉換成 float:

float XRtoFloat( UINT XRComponent ) {
// The & 0x3ff shows that only 10 bits contribute to the conversion. 
 return (float)( (XRComponent & 0x3ff) - 0x180 ) / 510.f;
}