Home
last modified time | relevance | path

Searched refs:I (Results 1 – 5 of 5) sorted by relevance

/CTR-SDK-2.4.0/build/omake/platforms/CTR/
DCTR.commondefs.gl.om32 # Include directory passed with -I to the assembler/linker
36 private.PREFIXED_SHADER_INCLUDES = $`(addprefix -I, $(set $(absname $(SHADER_INCLUDES))))
116 # (When relying on -I, no rebuild occurs when a built .obj is updated.)
/CTR-SDK-2.4.0/sources/libraries/math/
Dmath_Geometry.cpp914 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()
[all …]
/CTR-SDK-2.4.0/build/omake/compilers/
Dcommondefs.cctype.GCC.om72 INCLUDES_OPT = -I
Dcommondefs.cctype.RVCT.om193 this.INCLUDES_OPT = -I
/CTR-SDK-2.4.0/include/nn/math/
Dmath_Geometry.h477 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);