Matrix2x4::PrependTranslation

Matrix2x4::PrependTranslation
inline Matrix2x4& PrependTranslation(T sx, T sy);
inline Matrix2x4& PrependTranslation(Point<T> pt);
Description

PrependTranslation prepends a translation to the matrix. When performing transformations, the matrix performs the translation changes before other transformations.

Parameters
Parameters 
Description 
T sx 
Translation value along the X axis. 
T sy 
Translation value along the Y axis. 
Point<T> pt 
The translation point.