getFixed top-level property
Implementation
Function getFixed = (dataView, offset) {
var decimal = dataView.getInt16(offset);
var fraction = dataView.getUint16(offset + 2);
return decimal + fraction / 65535;
};
Function getFixed = (dataView, offset) {
var decimal = dataView.getInt16(offset);
var fraction = dataView.getUint16(offset + 2);
return decimal + fraction / 65535;
};