Lines Matching refs:I
914 IntersectionLine3Plane(const LINE3* L, const PLANE* J, f32* t, VEC3* I) in IntersectionLine3Plane() argument
928 if (I != NULL || t != NULL) in IntersectionLine3Plane()
932 if (I) in IntersectionLine3Plane()
936 VEC3Add(I, &L->P, VEC3Scale(&tmp, &L->d, t_)); in IntersectionLine3Plane()
949 IntersectionRay3Plane(const RAY3* R, const PLANE* J, f32* t, VEC3* I) in IntersectionRay3Plane() argument
954 result = IntersectionLine3Plane((const LINE3*)R, J, &t_, (I != NULL ? &I_ : NULL)); in IntersectionRay3Plane()
963 if (I) in IntersectionRay3Plane()
964 *I = I_; in IntersectionRay3Plane()
980 IntersectionSegment3Plane(const SEGMENT3* S, const PLANE* J, f32* t, VEC3* I) in IntersectionSegment3Plane() argument
990 result = IntersectionLine3Plane(&L, J, &t_, (I != NULL ? &I_ : NULL)); in IntersectionSegment3Plane()
999 if (I) in IntersectionSegment3Plane()
1000 *I = I_; in IntersectionSegment3Plane()