~haggai-eran/nux/rtl-rebased

« back to all changes in this revision

Viewing changes to NuxCore/Math/Matrix4.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:
55
55
      T a30, T a31, T a32, T a33);
56
56
 
57
57
    Matrix4x4<T>& operator = (const Matrix4x4<T>&);
58
 
    t_bool operator == (const Matrix4x4<T>&);
 
58
    bool operator == (const Matrix4x4<T>&);
59
59
    Matrix4x4<T> operator * (const Matrix4x4<T>&) const;
60
60
    Matrix4x4<T> operator + (const Matrix4x4<T>&) const;
61
61
    Matrix4x4<T> operator - (const Matrix4x4<T>&) const;
264
264
  }
265
265
 
266
266
  template <typename T>
267
 
  t_bool Matrix4x4<T>::operator == (const Matrix4x4<T>& M)
 
267
  bool Matrix4x4<T>::operator == (const Matrix4x4<T>& M)
268
268
  {
269
269
    for (int i = 0; i < 4; i++)
270
270
      for (int j = 0; j < 4; j++)