mirror of
https://git.coom.tech/drummyfish/raycastlib.git
synced 2024-11-21 20:29:59 +01:00
Fix len function
This commit is contained in:
parent
680e5b23a8
commit
e1a285c7c4
1 changed files with 10 additions and 8 deletions
16
raycastlib.h
16
raycastlib.h
|
@ -34,7 +34,7 @@
|
|||
#else
|
||||
#define UNITS_PER_SQUARE 128
|
||||
typedef int16_t Unit;
|
||||
#define UNIT_INFINITY 32767;
|
||||
#define UNIT_INFINITY 32000;
|
||||
#define USE_DIST_APPROX 2
|
||||
#endif
|
||||
|
||||
|
@ -516,12 +516,13 @@ Unit dist(Vector2D p1, Vector2D p2)
|
|||
b = dy;
|
||||
}
|
||||
|
||||
result = (a * 1007) + (b * 441);
|
||||
result = a + (44 * b) / 102;
|
||||
|
||||
if (a < (b << 4))
|
||||
result -= (a * 40);
|
||||
result -= (5 * a) / 128;
|
||||
|
||||
return result;
|
||||
|
||||
return ((result + 512 ) >> 10);
|
||||
#else
|
||||
dx = dx * dx;
|
||||
dy = dy * dy;
|
||||
|
@ -534,10 +535,11 @@ Unit len(Vector2D v)
|
|||
{
|
||||
profileCall(len);
|
||||
|
||||
v.x *= v.x;
|
||||
v.y *= v.y;
|
||||
Vector2D zero;
|
||||
zero.x = 0;
|
||||
zero.y = 0;
|
||||
|
||||
return sqrtInt(((Unit) v.x) + ((Unit) v.y));
|
||||
return dist(zero,v);
|
||||
}
|
||||
|
||||
int8_t pointIsLeftOfRay(Vector2D point, Ray ray)
|
||||
|
|
Loading…
Reference in a new issue