Matrix2x4::Transform

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

Transform transforms the point by the matrix.

Parameters
Parameters 
Description 
Point<T>* result 
The 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. 
Return Value

A Point value containing the result of the transformation.