Searched refs:J (Results 1 – 2 of 2) sorted by relevance
| /CTR-SDK-0.14.4/sources/libraries/math/ |
| D | math_Geometry.cpp | 319 DistSqPoint3ToPlane(const VEC3* P, const PLANE* J, VEC3* Q) in DistSqPoint3ToPlane() argument 322 f32 k = J->Test(*P); in DistSqPoint3ToPlane() 327 VEC3Sub(Q, P, VEC3Scale(&tmp, &J->N, k)); in DistSqPoint3ToPlane() 335 DistSqSphereToPlane(const SPHERE* S, const PLANE* J) in DistSqSphereToPlane() argument 337 f32 distance = J->Test(S->C); in DistSqSphereToPlane() 914 IntersectionLine3Plane(const LINE3* L, const PLANE* J, f32* t, VEC3* I) in IntersectionLine3Plane() argument 917 denom = VEC3Dot(&L->d, &J->N); in IntersectionLine3Plane() 921 if (FAbs(VEC3Dot(&J->N, &L->P) + J->d) < internal::epsilon) in IntersectionLine3Plane() 930 f32 t_ = -(VEC3Dot(&J->N, &L->P) + J->d) / denom; in IntersectionLine3Plane() 949 IntersectionRay3Plane(const RAY3* R, const PLANE* J, f32* t, VEC3* I) in IntersectionRay3Plane() argument [all …]
|
| /CTR-SDK-0.14.4/include/nn/math/ |
| D | math_Geometry.h | 456 f32 DistSqPoint3ToPlane(const VEC3* P, const PLANE* J, VEC3* Q); 457 f32 DistSqSphereToPlane(const SPHERE* S, const PLANE* J); 477 IntersectionResult IntersectionLine3Plane(const LINE3* L, const PLANE* J, f32* t, VEC3* I); 478 IntersectionResult IntersectionRay3Plane(const RAY3* R, const PLANE* J, f32* t, VEC3* I); 479 IntersectionResult IntersectionSegment3Plane(const SEGMENT3* S, const PLANE* J, f32* t, VEC3* I); 490 bool IntersectionPlaneAABB(const PLANE* J, const AABB* B); 495 bool IntersectionPlaneCapsule(const PLANE* J, const CAPSULE* C);
|