Lines Matching refs:t

235 DistSqPoint3ToLine3(const VEC3* P, const LINE3* L, f32* t)  in DistSqPoint3ToLine3()  argument
250 if (t) in DistSqPoint3ToLine3()
251 *t = t_; in DistSqPoint3ToLine3()
257 DistSqPoint3ToRay3(const VEC3* P, const RAY3* R, f32* t) in DistSqPoint3ToRay3() argument
274 if (t) in DistSqPoint3ToRay3()
275 *t = t_; in DistSqPoint3ToRay3()
280 DistSqPoint3ToSegment3(const VEC3* P, const SEGMENT3* S, f32* t) in DistSqPoint3ToSegment3() argument
292 if (t) in DistSqPoint3ToSegment3()
293 *t = 0.f; in DistSqPoint3ToSegment3()
301 if (t) in DistSqPoint3ToSegment3()
302 *t = 1.f; in DistSqPoint3ToSegment3()
310 if (t) in DistSqPoint3ToSegment3()
311 *t = t_ / P0P1; in DistSqPoint3ToSegment3()
487 DistSqLine3ToLine3(const LINE3* L0, const LINE3* L1, f32* s, f32* t) in DistSqLine3ToLine3() argument
508 if (t) in DistSqLine3ToLine3()
509 *t = e; in DistSqLine3ToLine3()
523 if (t) in DistSqLine3ToLine3()
524 *t = t_; in DistSqLine3ToLine3()
537 DistSqSegment3ToSegment3(const SEGMENT3* S1, const SEGMENT3* S2, f32* s, f32* t) in DistSqSegment3ToSegment3() argument
605 if (t) in DistSqSegment3ToSegment3()
606 *t = tc; in DistSqSegment3ToSegment3()
616 DistSqLine3ToRay3(const LINE3* L, const RAY3* R, f32* s, f32* t) in DistSqLine3ToRay3() argument
659 if (t) in DistSqLine3ToRay3()
660 *t = t_; in DistSqLine3ToRay3()
673 DistSqLine3ToSegment3(const LINE3* L0, const SEGMENT3* S, f32* s, f32* t) in DistSqLine3ToSegment3() argument
727 if (t) in DistSqLine3ToSegment3()
728 *t = t_; in DistSqLine3ToSegment3()
741 DistSqRay3ToRay3(const RAY3* R0, const RAY3* R1, f32* s, f32* t) in DistSqRay3ToRay3() argument
801 if (t) in DistSqRay3ToRay3()
802 *t = t_; in DistSqRay3ToRay3()
815 DistSqRay3ToSegment3(const RAY3* R0, const SEGMENT3* S, f32* s, f32* t) in DistSqRay3ToSegment3() argument
893 if (t) in DistSqRay3ToSegment3()
894 *t = t_; in DistSqRay3ToSegment3()
914 IntersectionLine3Plane(const LINE3* L, const PLANE* J, f32* t, VEC3* I) in IntersectionLine3Plane() argument
928 if (I != NULL || t != NULL) in IntersectionLine3Plane()
939 if (t) in IntersectionLine3Plane()
940 *t = t_; in IntersectionLine3Plane()
949 IntersectionRay3Plane(const RAY3* R, const PLANE* J, f32* t, VEC3* I) in IntersectionRay3Plane() argument
961 if (t) in IntersectionRay3Plane()
962 *t = t_; in IntersectionRay3Plane()
980 IntersectionSegment3Plane(const SEGMENT3* S, const PLANE* J, f32* t, VEC3* I) in IntersectionSegment3Plane() argument
997 if (t) in IntersectionSegment3Plane()
998 *t = t_ / P0P1; in IntersectionSegment3Plane()
1243 IntersectionRay3AABB(const RAY3* R, const AABB* box, f32* t) in IntersectionRay3AABB() argument
1261 if (t) in IntersectionRay3AABB()
1264 *t = tNear; in IntersectionRay3AABB()
1266 *t = tFar; in IntersectionRay3AABB()