Lines Matching refs:dir
984 VEC3 dir; in IntersectionSegment3Plane() local
985 VEC3Sub(&dir, &S->P1, &S->P0); in IntersectionSegment3Plane()
986 f32 P0P1 = FSqrt(dir.LenSq()); in IntersectionSegment3Plane()
987 LINE3 L(S->P0, dir); in IntersectionSegment3Plane()
1138 VEC3 dir; in IntersectionSegment3Sphere() local
1139 VEC3Sub(&dir, &S->P1, &S->P0); in IntersectionSegment3Sphere()
1140 f32 P0P1 = FSqrt(dir.LenSq()); in IntersectionSegment3Sphere()
1141 LINE3 L(S->P0, dir); in IntersectionSegment3Sphere()
1210 IntersectionRay3AABB_(f32 min, f32 max, f32 o, f32 dir, f32& tNear, f32& tFar) in IntersectionRay3AABB_() argument
1212 if (FAbs(dir) < internal::epsilon) in IntersectionRay3AABB_()
1221 f32 inv_dir = 1.f / dir; in IntersectionRay3AABB_()