Matrix2x4::TransformByInverse

Matrix2x4::TransformByInverse
SF_EXPORT void TransformByInverse(Point<T>* result, const Point<T>& p) const;
inline Point<T> TransformByInverse(const Point<T>& p) const;
inline void TransformByInverse(T* x, T* y) const;
Description

TransformByInverse transforms the point by the inverse of the matrix.

Parameters
Parameters 
Description 
Point<T>* result 
Result of the transformation by the matrix. 
const Point<T>& p 
Reference to the point which is to be transformed. 
T* x 
The x coordinate of the point which is to be transformed. 
T* y 
The y coordinate of the point which is to be transformed.