Lines Matching defs:other
41 T Dot(const Vector3<T>& other) const;
42 Vector3 Cross(const Vector3<T>& other) const;
49 Vector3& operator*=(const Vector3<T>& other);
52 Vector3 operator+(const Vector3<T>& other) const;
53 Vector3& operator+=(const Vector3<T>& other);
54 Vector3& operator=(const Vector3<T>& other);
55 Vector3 operator-(const Vector3<T>& other) const;
58 bool operator==(const Vector3& other) const;
106 T Vector3<T>::Dot(const Vector3<T>& other) const
108 const T* oData = other.data_;
116 Vector3<T> Vector3<T>::Cross(const Vector3<T>& other) const
121 const T* oData = other.data_;
175 Vector3<T>& Vector3<T>::operator*=(const Vector3<T>& other)
177 const T* oData = other.data_;
206 Vector3<T> Vector3<T>::operator+(const Vector3<T>& other) const
209 rVec += other;
214 Vector3<T>& Vector3<T>::operator+=(const Vector3<T>& other)
216 data_[0] += other.data_[0];
217 data_[1] += other.data_[1];
218 data_[2] += other.data_[2];
223 Vector3<T>& Vector3<T>::operator=(const Vector3<T>& other)
225 data_[0] = other.data_[0];
226 data_[1] = other.data_[1];
227 data_[2] = other.data_[2];
232 Vector3<T> Vector3<T>::operator-(const Vector3<T>& other) const
236 const T* oData = other.data_;
256 inline bool Vector3<T>::operator==(const Vector3& other) const
258 const T* oData = other.data_;