PNGTuber/Streamer, Game Developer (Nightdive Studios, KEX Team)
Fan/Art Tag: #ARTazimuth
PFP/Model: qwarq.io
Stream: https://www.twitch.tv/altazimuth
He/Him
All views expressed here are my own
That's a lot of ratios to lose precision with.
That's a lot of ratios to lose precision with.
dst->x = (2 * v->x - x) / y;
This gets you a value of -1.32638884.
pos_to_absolute with the prior result as v->x:
dst->x = (v->x * y + x) / 2;
This gets you a value of 325.000061.
IEEE754 precision loss strikes again! All f32
dst->x = (2 * v->x - x) / y;
This gets you a value of -1.32638884.
pos_to_absolute with the prior result as v->x:
dst->x = (v->x * y + x) / 2;
This gets you a value of 325.000061.
IEEE754 precision loss strikes again! All f32
Still, though, I'm uncertain what I need to do to repro the weird phantom float fuckery if ignoring the nudge.
Still, though, I'm uncertain what I need to do to repro the weird phantom float fuckery if ignoring the nudge.
Drink scotch whiskey all night long
And dine behind the wheel
Drink scotch whiskey all night long
And dine behind the wheel