Modify PF_findradius to not use sqrtf

This commit is contained in:
cypress 2023-07-22 12:10:46 -04:00
parent d23aa08f8c
commit d274e43580
1 changed files with 5 additions and 2 deletions

View File

@ -1106,7 +1106,9 @@ void PF_findradius (void)
chain = (edict_t *)sv.edicts;
org = G_VECTOR(OFS_PARM0);
rad = G_FLOAT(OFS_PARM1);
rad *= rad;
ent = NEXT_EDICT(sv.edicts);
for (i=1 ; i<sv.num_edicts ; i++, ent = NEXT_EDICT(ent))
@ -1116,8 +1118,9 @@ void PF_findradius (void)
if (ent->v.solid == SOLID_NOT)
continue;
for (j=0 ; j<3 ; j++)
eorg[j] = org[j] - (ent->v.origin[j] + (ent->v.mins[j] + ent->v.maxs[j])*0.5);
if (Length(eorg) > rad)
eorg[j] = org[j] - (ent->v.origin[j] + (ent->v.mins[j] + ent->v.maxs[j])*0.5);
if (DotProduct(eorg, eorg) > rad)
continue;
ent->v.chain = EDICT_TO_PROG(chain);