Lines Matching refs:tmp
149 AABB tmp; in Set() local
150 tmp.Set(arrayPoint, numPoints); in Set()
151 VEC3Lerp(&C, &tmp.Pmin, &tmp.Pmax, 0.5f); in Set()
326 VEC3 tmp; in DistSqPoint3ToPlane() local
327 VEC3Sub(Q, P, VEC3Scale(&tmp, &J->N, k)); in DistSqPoint3ToPlane()
664 VEC3 tmp; in DistSqLine3ToRay3() local
665 VEC3Add(&v, &L->P, VEC3Scale(&tmp, &L->d, s_)); in DistSqLine3ToRay3()
667 VEC3Sub(&v, &v, VEC3Scale(&tmp, &R->d, t_)); in DistSqLine3ToRay3()
731 VEC3 tmp; in DistSqLine3ToSegment3() local
732 VEC3Add(&v, &L0->P, VEC3Scale(&tmp, &L0->d, s_)); in DistSqLine3ToSegment3()
734 VEC3Sub(&v, &v, VEC3Scale(&tmp, &segDir, t_)); in DistSqLine3ToSegment3()
806 VEC3 tmp; in DistSqRay3ToRay3() local
807 VEC3Add(&v, &R0->P, VEC3Scale(&tmp, &R0->d, s_)); in DistSqRay3ToRay3()
809 VEC3Sub(&v, &v, VEC3Scale(&tmp, &R1->d, t_)); in DistSqRay3ToRay3()
898 VEC3 tmp; in DistSqRay3ToSegment3() local
899 VEC3Add(&v, &R0->P, VEC3Scale(&tmp, &R0->d, s_)); in DistSqRay3ToSegment3()
901 VEC3Sub(&v, &v, VEC3Scale(&tmp, &segDir, t_)); in DistSqRay3ToSegment3()
934 VEC3 tmp; in IntersectionLine3Plane() local
936 VEC3Add(I, &L->P, VEC3Scale(&tmp, &L->d, t_)); in IntersectionLine3Plane()
1168 f32 tmp = 1.f / P0P1; in IntersectionSegment3Sphere() local
1171 *t0 = t0_ * tmp; in IntersectionSegment3Sphere()
1173 *t1 = t1_ * tmp; in IntersectionSegment3Sphere()