XR_BIAS a regole di conversione float
Questa sezione si applica solo ai sistemi operativi Windows 7 e versioni successive.
Il codice seguente illustra come convertire XR_BIAS in float:
float XRtoFloat( UINT XRComponent ) {
// The & 0x3ff shows that only 10 bits contribute to the conversion.
return (float)( (XRComponent & 0x3ff) - 0x180 ) / 510.f;
}