Home
last modified time | relevance | path

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

/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/
Dmath_Matrix22.h28 struct MTX22;
34 NN_MATH_INLINE MTX22* MTX22Identity(MTX22* pOut);
35 NN_MATH_INLINE bool MTX22IsIdentity(const MTX22* p);
36 NN_MATH_INLINE MTX22* MTX22Copy(MTX22* pOut, const MTX22* p);
37 NN_MATH_INLINE MTX22* MTX22Zero(MTX22* pOut);
38 NN_MATH_INLINE MTX22* MTX23ToMTX22(MTX22* pOut, const MTX23* pM);
39 NN_MATH_INLINE MTX22* MTX22MAdd(MTX22* pOut, f32 t, const MTX22* p1, const MTX22* p2);
72 struct MTX22 : public MTX22_ struct
79 static const MTX22& Identity() in Identity() argument
81 static const MTX22 identity( in Identity()
[all …]
Dmath_Matrix23.h29 struct MTX22;
48 NN_MATH_INLINE MTX23* MTX22ToMTX23(MTX23* pOut, const MTX22* pM);
106 MTX23(const MTX22& rhs) { MTX22ToMTX23(this, &rhs); } in MTX23()
279 inline MTX23* MTX22ToMTX23(MTX23* pOut, const MTX22& m) { return MTX22ToMTX23( pOut, &m ); } in MTX22ToMTX23()
/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/inline/
Dmath_Matrix22.ipp19 MTX22
34 MTX22IsIdentity(const MTX22* p)
48 NN_MATH_INLINE MTX22*
49 MTX22Copy(MTX22* pOut, const MTX22* p)
69 NN_MATH_INLINE MTX22*
70 MTX22Zero(MTX22* pOut)
86 NN_MATH_INLINE MTX22*
87 MTX22Identity(MTX22* pOut)
91 MTX22Copy(pOut, MTX22::Identity());
106 NN_MATH_INLINE MTX22*
[all …]
Dmath_Types.ipp32 NN_MATH_INLINE MTX22*
33 MTX23ToMTX22(MTX22* pOut, const MTX23* pM)
Dmath_Matrix23.ipp382 MTX22ToMTX23(MTX23* pOut, const MTX22* pM)
/CTR-SDK-1.0.0/CTR_SDK/sources/libraries/math/
Dmath_Matrix22.cpp41 MTX22::Report(bool bNewline, const char* name) const in Report()