Lines Matching defs:operator
49 Vector3& operator*=(const Vector3<T>& other);
50 Vector3& operator*=(T s);
51 Vector3 operator*(T s) const;
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;
56 T operator[](int index) const;
57 T& operator[](int index);
58 bool operator==(const Vector3& other) const;
175 Vector3<T>& Vector3<T>::operator*=(const Vector3<T>& other)
185 Vector3<T>& Vector3<T>::operator*=(T s)
194 Vector3<T> Vector3<T>::operator*(T s) const
206 Vector3<T> Vector3<T>::operator+(const Vector3<T>& other) const
214 Vector3<T>& Vector3<T>::operator+=(const Vector3<T>& other)
223 Vector3<T>& Vector3<T>::operator=(const Vector3<T>& other)
232 Vector3<T> Vector3<T>::operator-(const Vector3<T>& other) const
244 T Vector3<T>::operator[](int index) const
250 T& Vector3<T>::operator[](int index)
256 inline bool Vector3<T>::operator==(const Vector3& other) const