Home
last modified time | relevance | path

Searched refs:MTX23 (Results 1 – 8 of 8) sorted by relevance

/CTR-SDK-4.2.5/include/nn/math/
Dmath_Matrix23.h30 struct MTX23;
50 NN_MATH_INLINE MTX23* MTX23Add(MTX23* pOut, const MTX23* p1, const MTX23* p2);
60 NN_MATH_INLINE MTX23* MTX23Copy(MTX23* pOut, const MTX23* p);
69 NN_MATH_INLINE MTX23* MTX23Identity(MTX23* pOut);
78 NN_MATH_INLINE bool MTX23IsIdentity(const MTX23* p);
90 NN_MATH_INLINE MTX23* MTX23MAdd(MTX23* pOut, f32 t, const MTX23* p1, const MTX23* p2);
101 NN_MATH_INLINE MTX23* MTX23Mult(MTX23* pOut, const MTX23* p, f32 f);
112 NN_MATH_INLINE MTX23* MTX23Mult(MTX23* pOut, const MTX23* p1, const MTX23* p2);
123 NN_MATH_INLINE MTX23* MTX23MultTranslate(MTX23* pOut, const MTX23* pM, const VEC2* pT);
134 NN_MATH_INLINE MTX23* MTX23MultTranslate(MTX23* pOut, const VEC2* pT, const MTX23* pM);
[all …]
Dmath_Types.h68 NN_MATH_INLINE MTX22* MTX23ToMTX22(MTX22* pOut, const MTX23* pM);
78 NN_MATH_INLINE MTX23* MTX22ToMTX23(MTX23* pOut, const MTX22* pM);
299 inline MTX22* MTX23ToMTX22(MTX22* pOut, const MTX23& m) { return MTX23ToMTX22(pOut, &m); } in MTX23ToMTX22()
300 inline MTX23* MTX22ToMTX23(MTX23* pOut, const MTX22& m) { return MTX22ToMTX23( pOut, &m ); } in MTX22ToMTX23()
Dmath_Matrix22.h29 struct MTX23;
92 NN_MATH_INLINE MTX22* MTX23ToMTX22(MTX22* pOut, const MTX23* pM);
165 explicit MTX22(const MTX23& rhs);
269 MTX22::MTX22(const MTX23& rhs) { MTX23ToMTX22(this, &rhs); } in MTX22()
Dmath_Transform.h133 NN_MATH_INLINE VEC2* VEC2Transform(VEC2* pOut, const MTX23* pM, const VEC2* pV);
267 inline VEC2* VEC2Transform(VEC2* pOut, const MTX23& m, const VEC2& v) { return VEC2Transform( pOut,… in VEC2Transform()
Dmath_Vector2.h29 struct MTX23;
186 NN_MATH_INLINE VEC2* VEC2Transform(VEC2* pOut, const MTX23* pM, const VEC2* pV);
/CTR-SDK-4.2.5/include/nn/math/inline/
Dmath_Matrix23.ipp20 MTX23
22 NN_MATH_INLINE MTX23*
23 MTX23Add(MTX23* pOut, const MTX23* p1, const MTX23* p2)
40 NN_MATH_INLINE MTX23*
41 MTX23Copy(MTX23* pOut, const MTX23* p)
54 NN_MATH_INLINE MTX23*
55 MTX23Identity(MTX23* pOut)
59 MTX23Copy(pOut, MTX23::Identity());
65 MTX23IsIdentity(const MTX23* p)
73 NN_MATH_INLINE MTX23*
[all …]
Dmath_Types.ipp19 NN_MATH_INLINE MTX23*
20 MTX22ToMTX23(MTX23* pOut, const MTX22* pM)
35 MTX23ToMTX22(MTX22* pOut, const MTX23* pM)
47 VEC2Transform(VEC2* pOut, const MTX23* pM, const VEC2* pV)
/CTR-SDK-4.2.5/sources/libraries/math/
Dmath_Matrix23.cpp41 MTX23::Report(bool bNewline, const char* name) const in Report()