mirror of
https://github.com/firewalkwithm3/qmk_firmware.git
synced 2024-11-22 11:30:30 +08:00
Refactor times inverse of sqrt 2 calculation (#21293)
This commit is contained in:
parent
a0ea7a6b17
commit
9b3ac793bc
|
@ -25,11 +25,16 @@
|
||||||
#include "mousekey.h"
|
#include "mousekey.h"
|
||||||
|
|
||||||
static inline int8_t times_inv_sqrt2(int8_t x) {
|
static inline int8_t times_inv_sqrt2(int8_t x) {
|
||||||
// 181/256 is pretty close to 1/sqrt(2)
|
// 181/256 (0.70703125) is used as an approximation for 1/sqrt(2)
|
||||||
// 0.70703125 0.707106781
|
// because it is close to the exact value which is 0.707106781
|
||||||
// 1 too small for x=99 and x=198
|
const int16_t n = x * 181;
|
||||||
// This ends up being a mult and discard lower 8 bits
|
const uint16_t d = 256;
|
||||||
return (x * 181) >> 8;
|
|
||||||
|
// To ensure that the integer result is rounded accurately after
|
||||||
|
// division, check the sign of the numerator:
|
||||||
|
// If negative, subtract half of the denominator before dividing
|
||||||
|
// Otherwise, add half of the denominator before dividing
|
||||||
|
return n < 0 ? (n - d / 2) / d : (n + d / 2) / d;
|
||||||
}
|
}
|
||||||
|
|
||||||
static report_mouse_t mouse_report = {0};
|
static report_mouse_t mouse_report = {0};
|
||||||
|
|
Loading…
Reference in a new issue