Home
last modified time | relevance | path

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

/CTR-SDK-0.14.21/include/nn/math/
Dmath_Matrix23.h28 struct MTX23;
34 NN_MATH_INLINE MTX23* MTX23Copy(MTX23* pOut, const MTX23* p);
35 NN_MATH_INLINE MTX23* MTX23Zero(MTX23* pOut);
36 NN_MATH_INLINE MTX23* MTX23Identity(MTX23* pOut);
37 NN_MATH_INLINE bool MTX23IsIdentity(const MTX23* p);
38 NN_MATH_INLINE MTX23* MTX23Add(MTX23* pOut, const MTX23* p1, const MTX23* p2);
39 NN_MATH_INLINE MTX23* MTX23Sub(MTX23* pOut, const MTX23* p1, const MTX23* p2);
40 NN_MATH_INLINE MTX23* MTX23Mult(MTX23* pOut, const MTX23* p, f32 f);
41 NN_MATH_INLINE MTX23* MTX23Mult(MTX23* pOut, const MTX23* p1, const MTX23* p2);
42 NN_MATH_INLINE MTX23* MTX23Scale(MTX23* pOut, const MTX23* pM, const VEC2* pS);
[all …]
Dmath_Matrix22.h29 struct MTX23;
38 NN_MATH_INLINE MTX22* MTX23ToMTX22(MTX22* pOut, const MTX23* pM);
100 MTX22(const MTX23& rhs);
193 MTX22::MTX22(const MTX23& rhs) { MTX23ToMTX22(this, &rhs); } in MTX22()
198 inline MTX22* MTX23ToMTX22(MTX22* pOut, const MTX23& m) { return MTX23ToMTX22(pOut, &m); } in MTX23ToMTX22()
Dmath_Vector2.h29 struct MTX23;
40 NN_MATH_INLINE VEC2* VEC2Transform(VEC2* pOut, const MTX23* pM, const VEC2* pV);
405 inline VEC2* VEC2Transform(VEC2* pOut, const MTX23& m, const VEC2& v) { return VEC2Transform( pOut,… in VEC2Transform()
/CTR-SDK-0.14.21/include/nn/math/inline/
Dmath_Matrix23.ipp20 MTX23
36 NN_MATH_INLINE MTX23*
37 MTX23Copy(MTX23* pOut, const MTX23* p)
57 NN_MATH_INLINE MTX23*
58 MTX23Zero(MTX23* pOut)
75 NN_MATH_INLINE MTX23*
76 MTX23Identity(MTX23* pOut)
80 MTX23Copy(pOut, MTX23::Identity());
93 MTX23IsIdentity(const MTX23* p)
110 NN_MATH_INLINE MTX23*
[all …]
Dmath_Types.ipp33 MTX23ToMTX22(MTX22* pOut, const MTX23* pM)
57 VEC2Transform(VEC2* pOut, const MTX23* pM, const VEC2* pV)
/CTR-SDK-0.14.21/sources/libraries/math/
Dmath_Matrix23.cpp41 MTX23::Report(bool bNewline, const char* name) const in Report()