~haggai-eran/nux/rtl-rebased

« back to all changes in this revision

Viewing changes to NuxCore/Math/Matrix3.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:
43
43
      T a20, T a21, T a22);
44
44
 
45
45
    Matrix3x3<T>&   operator = (const Matrix3x3<T>&);
46
 
    t_bool          operator == (const Matrix3x3<T>&);
 
46
    bool          operator == (const Matrix3x3<T>&);
47
47
    Matrix3x3<T>    operator * (const Matrix3x3<T>&) const;
48
48
    Matrix3x3<T>    operator + (const Matrix3x3<T>&) const;
49
49
    Matrix3x3<T>    operator - (const Matrix3x3<T>&) const;
195
195
  }
196
196
 
197
197
  template <typename T>
198
 
  t_bool Matrix3x3<T>::operator == (const Matrix3x3<T>& M)
 
198
  bool Matrix3x3<T>::operator == (const Matrix3x3<T>& M)
199
199
  {
200
200
    for (int i = 0; i < 3; i++)
201
201
      for (int j = 0; j < 3; j++)