Matrix2x4::AppendTranslation

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

AppendTranslation appends a translation to the matrix. When performing transformations, the matrix performs the translation changes after other transformations.

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