16static auto no_deadzone(
const float deadzone,
const float value) ->
float
24 if(std::abs(value) >= deadzone)
42 const double length = std::sqrt(
x *
x +
y *
y);
47 const float nx =
x / length;
48 const float ny =
y / length;
52 if(length >= deadzone)