Home
last modified time | relevance | path

Searched defs:p1 (Results 1 – 7 of 7) sorted by relevance

/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/
Dmath_Vector2.h233 VEC2Add(VEC2* pOut, const VEC2* p1, const VEC2* p2) in VEC2Add()
253 VEC2Sub(VEC2* pOut, const VEC2* p1, const VEC2* p2) in VEC2Sub()
273 VEC2Mult(VEC2* pOut, const VEC2* p1, const VEC2* p2) in VEC2Mult()
311 VEC2Lerp(VEC2* pOut, const VEC2* p1, const VEC2* p2, f32 t) in VEC2Lerp()
329 VEC2Dot(const VEC2* p1, const VEC2* p2) in VEC2Dot()
370 VEC2DistSq(const VEC2* p1, const VEC2* p2) { VEC2 tmp; return VEC2LenSq(VEC2Sub(&tmp, p1, p2)); } in VEC2DistSq()
391 inline VEC2* VEC2Add(VEC2* pOut, const VEC2& p1, const VEC2& p2) { return VEC2Add(pOut, &p1, &p2); } in VEC2Add()
Dmath_Vector3.h260 VEC3Add(VEC3* pOut, const VEC3* p1, const VEC3* p2) in VEC3Add()
279 VEC3Sub(VEC3* pOut, const VEC3* p1, const VEC3* p2) in VEC3Sub()
297 VEC3Mult(VEC3* pOut, const VEC3* p1, const VEC3* p2) in VEC3Mult()
334 VEC3Lerp(VEC3* pOut, const VEC3* p1, const VEC3* p2, f32 t) in VEC3Lerp()
351 VEC3Dot(const VEC3* p1, const VEC3* p2) in VEC3Dot()
395 VEC3Dist( const VEC3* p1, const VEC3* p2 ) in VEC3Dist()
Dmath_Matrix33.h48 MTX33Mult(TMatrix* pOut, const TMatrix* p1, const TMatrix* p2) in MTX33Mult()
259 MTX33MAdd(MTX33* pOut, f32 t, const MTX33* p1, const MTX33* p2) in MTX33MAdd()
Dmath_Matrix43.h243 MTX43Add(MTX43* pOut, const MTX43* p1, const MTX43* p2) in MTX43Add()
294 MTX43Mult(MTX43* pOut, const MTX43* p1, const MTX43* p2) in MTX43Mult()
Dmath_Matrix34.h530 MTX34Mult(MTX34* pOut, const MTX34* p1, const MTX34* p2) in MTX34Mult()
580 MTX34Add(MTX34* pOut, const MTX34* p1, const MTX34* p2) in MTX34Add()
733 MTX34MAdd(MTX34* pOut, f32 t, const MTX34* p1, const MTX34* p2) in MTX34MAdd()
Dmath_Matrix44.h526 MTX44Add(MTX44* pOut, const MTX44* p1, const MTX44* p2) in MTX44Add()
631 MTX44Mult(MTX44* pOut, const MTX44* __restrict p1, const MTX44* __restrict p2) in MTX44Mult()
/CTR-SDK-1.0.0/CTR_SDK/sources/libraries/math/
Dmath_Arithmetic.cpp511 f32 Bezier(f32 p1, f32 p2, f32 p3, f32 p4, f32 s) in Bezier()
540 f32 CatmullRom(f32 p0, f32 p1, f32 p2, f32 p3, f32 s) in CatmullRom()