Home | History | Annotate | Download | only in Imath

Lines Matching refs:Vec2

228     void                multVecMatrix(const Vec2<S> &src, Vec2<S> &dst) const;
231 void multDirMatrix(const Vec2<S> &src, Vec2<S> &dst) const;
324 const Matrix33 & setScale (const Vec2<S> &s);
332 const Matrix33 & scale (const Vec2<S> &s);
340 const Matrix33 & setTranslation (const Vec2<S> &t);
347 Vec2<T> translation () const;
355 const Matrix33 & translate (const Vec2<S> &t);
372 const Matrix33 & setShear (const Vec2<S> &h);
389 const Matrix33 & shear (const Vec2<S> &h);
843 const Vec2<S> & operator *= (Vec2<S> &v, const Matrix33<T> &m);
846 Vec2<S> operator * (const Vec2<S> &v, const Matrix33<T> &m);
1340 Matrix33<T>::multVecMatrix(const Vec2<S> &src, Vec2<S> &dst) const
1355 Matrix33<T>::multDirMatrix(const Vec2<S> &src, Vec2<S> &dst) const
1739 Matrix33<T>::setScale (const Vec2<S> &s)
1752 Matrix33<T>::scale (const Vec2<S> &s)
1768 Matrix33<T>::setTranslation (const Vec2<S> &t)
1786 inline Vec2<T>
1789 return Vec2<T> (x[2][0], x[2][1]);
1795 Matrix33<T>::translate (const Vec2<S> &t)
1827 Matrix33<T>::setShear (const Vec2<S> &h)
1865 Matrix33<T>::shear (const Vec2<S> &h)
3328 inline const Vec2<S> &
3329 operator *= (Vec2<S> &v, const Matrix33<T> &m)
3342 inline Vec2<S>
3343 operator * (const Vec2<S> &v, const Matrix33<T> &m)
3349 return Vec2<S> (x / w, y / w);