Home
last modified time | relevance | path

Searched refs:DIST_EPSILON (Results 1 – 3 of 3) sorted by relevance

/external/quake/quake/src/QW/client/
Dpmovetst.c168 #define DIST_EPSILON (0.03125) macro
229 if ( (t1 >= DIST_EPSILON && t2 >= DIST_EPSILON) || (t2 > t1 && t1 >= 0) ) in PM_RecursiveHullCheck()
231 if ( (t1 <= -DIST_EPSILON && t2 <= -DIST_EPSILON) || (t2 < t1 && t1 <= 0) ) in PM_RecursiveHullCheck()
237 frac = (t1 + DIST_EPSILON)/(t1-t2); in PM_RecursiveHullCheck()
239 frac = (t1 - DIST_EPSILON)/(t1-t2); in PM_RecursiveHullCheck()
/external/quake/quake/src/QW/server/
Dworld.c525 #define DIST_EPSILON (0.03125) macro
586 if ( (t1 >= DIST_EPSILON && t2 >= DIST_EPSILON) || (t2 > t1 && t1 >= 0) ) in SV_RecursiveHullCheck()
588 if ( (t1 <= -DIST_EPSILON && t2 <= -DIST_EPSILON) || (t2 < t1 && t1 <= 0) ) in SV_RecursiveHullCheck()
594 frac = (t1 + DIST_EPSILON)/(t1-t2); in SV_RecursiveHullCheck()
596 frac = (t1 - DIST_EPSILON)/(t1-t2); in SV_RecursiveHullCheck()
/external/quake/quake/src/WinQuake/
Dworld.cpp573 #define DIST_EPSILON (0.03125) macro
634 if ( (t1 >= DIST_EPSILON && t2 >= DIST_EPSILON) || (t2 > t1 && t1 >= 0) ) in SV_RecursiveHullCheck()
636 if ( (t1 <= -DIST_EPSILON && t2 <= -DIST_EPSILON) || (t2 < t1 && t1 <= 0) ) in SV_RecursiveHullCheck()
642 frac = (t1 + DIST_EPSILON)/(t1-t2); in SV_RecursiveHullCheck()
644 frac = (t1 - DIST_EPSILON)/(t1-t2); in SV_RecursiveHullCheck()