Lines Matching refs:t1
1016 IntersectionLine3Sphere(const LINE3* L, const SPHERE* sphere, f32* t0, f32* t1) in IntersectionLine3Sphere() argument
1035 if (t1) in IntersectionLine3Sphere()
1037 *t1 = (-b + sq) * 0.5f/* inv(2 * a) */; in IntersectionLine3Sphere()
1059 IntersectionRay3Sphere(const RAY3* R, const SPHERE* sphere, f32* t0, f32* t1) in IntersectionRay3Sphere() argument
1088 if (t1) in IntersectionRay3Sphere()
1089 *t1 = t1_; in IntersectionRay3Sphere()
1136 IntersectionSegment3Sphere(const SEGMENT3* S, const SPHERE* sphere, f32* t0, f32* t1) in IntersectionSegment3Sphere() argument
1172 if (t1) in IntersectionSegment3Sphere()
1173 *t1 = t1_ * tmp; in IntersectionSegment3Sphere()
1223 f32 t1 = (max - o) * inv_dir; in IntersectionRay3AABB_() local
1225 if (t0 > t1) in IntersectionRay3AABB_()
1226 ::std::swap(t0, t1); in IntersectionRay3AABB_()
1230 if (t1 < tFar) in IntersectionRay3AABB_()
1231 tFar = t1; in IntersectionRay3AABB_()