~haggai-eran/nux/rtl-rebased

« back to all changes in this revision

Viewing changes to NuxCore/Math/Matrix2.h

  • Committer: Jay Taoko
  • Date: 2011-10-21 23:49:15 UTC
  • mfrom: (508.1.2 nux-20)
  • Revision ID: jay.taoko@canonical.com-20111021234915-hnzakb5ndebica8i
* Removed custom Nux types: t_u32, t_s32, t_bool, ...

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
    Matrix2x2<T> (const Matrix2x2<T>&);
40
40
    Matrix2x2<T>&   operator = (const Matrix2x2<T>&);
41
 
    t_bool          operator == (const Matrix2x2<T>&);
 
41
    bool          operator == (const Matrix2x2<T>&);
42
42
    Matrix2x2<T>    operator * (const Matrix2x2<T>&) const;
43
43
    Matrix2x2<T>    operator + (const Matrix2x2<T>&) const;
44
44
    Matrix2x2<T>    operator - (const Matrix2x2<T>&) const;
187
187
  }
188
188
 
189
189
  template <typename T>
190
 
  t_bool Matrix2x2<T>::operator == (const Matrix2x2<T>& M)
 
190
  bool Matrix2x2<T>::operator == (const Matrix2x2<T>& M)
191
191
  {
192
192
    for (int i = 0; i < 2; i++)
193
193
      for (int j = 0; j < 2; j++)