Lines Matching defs:operator
52 Matrix3 operator+(const Matrix3& other) const;
53 Matrix3 operator-(const Matrix3& other) const;
54 Matrix3 operator-() const;
55 Matrix3 operator*(const Matrix3& other) const;
56 Vector3<T> operator*(const Vector3<T>& other) const;
57 Matrix3 operator*(T scale) const;
58 T* operator[](int col);
59 Matrix3& operator=(const Matrix3& other);
60 Matrix3& operator+=(const Matrix3& other);
61 Matrix3& operator-=(const Matrix3& other);
62 Matrix3& operator*=(const Matrix3& other);
63 Matrix3& operator*=(T scale);
64 bool operator==(const Matrix3& other) const;
65 bool operator!=(const Matrix3& other) const;
216 Matrix3<T> Matrix3<T>::operator+(const Matrix3<T>& other) const
236 Matrix3<T> Matrix3<T>::operator-(const Matrix3<T>& other) const
242 Matrix3<T> Matrix3<T>::operator-() const
261 Matrix3<T> Matrix3<T>::operator*(const Matrix3<T>& other) const
267 Vector3<T> Matrix3<T>::operator*(const Vector3<T>& other) const
281 Matrix3<T> Matrix3<T>::operator*(T scale) const
299 T* Matrix3<T>::operator[](int col)
305 Matrix3<T>& Matrix3<T>::operator=(const Matrix3<T>& other)
322 Matrix3<T>& Matrix3<T>::operator+=(const Matrix3<T>& other)
340 Matrix3<T>& Matrix3<T>::operator-=(const Matrix3<T>& other)
358 Matrix3<T>& Matrix3<T>::operator*=(const Matrix3<T>& other)
364 Matrix3<T>& Matrix3<T>::operator*=(T scale)
379 bool Matrix3<T>::operator==(const Matrix3& other) const
390 bool Matrix3<T>::operator!=(const Matrix3& other) const
392 return !operator==(other);