Lines Matching refs:VEC2
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);
145 NN_MATH_INLINE MTX23* MTX23RotCenterFIdx(MTX23* pOut, const VEC2* pCenter, f32 fIdx);
166 NN_MATH_INLINE MTX23* MTX23Scale(MTX23* pOut, const MTX23* pM, const VEC2* pS);
187 NN_MATH_INLINE MTX23* MTX23Translate(MTX23* pOut, const VEC2* pT);
310 VEC2 GetColumn(int index) const in GetColumn()
313 VEC2 column; in GetColumn()
320 void SetColumn(int index, const VEC2& column) in SetColumn()
386 self_type& SetupScale(const MTX23& matrix, const VEC2& scale) in SetupScale()
396 self_type& SetupTranslate(const MTX23& matrix, const VEC2& translate) in SetupTranslate()
416 self_type& SetupRotate(const VEC2& center, f32 rotate) in SetupRotate()
468 inline MTX23* MTX23Scale(MTX23* pOut, const MTX23& m, const VEC2& vS) { return MTX23Scale( pOut, &m… in MTX23Scale()
469 inline MTX23* MTX23Translate(MTX23* pOut, const VEC2& vT) { return MTX23Translate( pOut, &vT); } in MTX23Translate()
470 inline MTX23* MTX23MultTranslate(MTX23* pOut, const MTX23& m, const VEC2& vT) { return MTX23MultTra… in MTX23MultTranslate()
471 inline MTX23* MTX23MultTranslate(MTX23* pOut, const VEC2& vT, const MTX23& m) { return MTX23MultTra… in MTX23MultTranslate()
472 inline MTX23* MTX23RotCenterFIdx(MTX23* pOut, const VEC2& vCenter, f32 fIdx) { return MTX23RotCente… in MTX23RotCenterFIdx()