Home
last modified time | relevance | path

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

/CTR-SDK-4.2.8-20130828/include/nn/math/
Dmath_Matrix22.h28 struct MTX22;
47 NN_MATH_INLINE MTX22* MTX22Copy(MTX22* pOut, const MTX22* p);
56 NN_MATH_INLINE MTX22* MTX22Identity(MTX22* pOut);
65 NN_MATH_INLINE bool MTX22IsIdentity(const MTX22* p);
77 NN_MATH_INLINE MTX22* MTX22MAdd(MTX22* pOut, f32 t, const MTX22* p1, const MTX22* p2);
86 NN_MATH_INLINE MTX22* MTX22Zero(MTX22* pOut);
92 NN_MATH_INLINE MTX22* MTX23ToMTX22(MTX22* pOut, const MTX23* pM);
137 class MTX22 : public MTX22_
144 static const MTX22& Identity() in Identity()
146 static const MTX22 identity( in Identity()
[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_Matrix23.h31 struct MTX22;
202 NN_MATH_INLINE MTX23* MTX22ToMTX23(MTX23* pOut, const MTX22* pM);
274 explicit MTX23(const MTX22& rhs) { MTX22ToMTX23(this, &rhs); } in MTX23()
/CTR-SDK-4.2.8-20130828/include/nn/math/inline/
Dmath_Matrix22.ipp19 MTX22
21 NN_MATH_INLINE MTX22*
22 MTX22Copy(MTX22* pOut, const MTX22* p)
35 NN_MATH_INLINE MTX22*
36 MTX22Identity(MTX22* pOut)
40 MTX22Copy(pOut, MTX22::Identity());
46 MTX22IsIdentity(const MTX22* p)
52 NN_MATH_INLINE MTX22*
53 MTX22MAdd(MTX22* pOut, f32 t, const MTX22* p1, const MTX22* p2)
68 NN_MATH_INLINE MTX22*
[all …]
Dmath_Types.ipp20 MTX22ToMTX23(MTX23* pOut, const MTX22* pM)
34 NN_MATH_INLINE MTX22*
35 MTX23ToMTX22(MTX22* pOut, const MTX23* pM)
/CTR-SDK-4.2.8-20130828/sources/libraries/math/
Dmath_Matrix22.cpp41 MTX22::Report(bool bNewline, const char* name) const in Report()