Class Matrix

java.lang.Object
All Implemented Interfaces:
Proxy

@Generated("io.github.jwharm.JavaGI") public class Matrix extends ProxyInstance
A PangoMatrix specifies a transformation between user-space and device coordinates.

The transformation is given by


 x_device = x_user * matrix->xx + y_user * matrix->xy + matrix->x0;
 y_device = x_user * matrix->yx + y_user * matrix->yy + matrix->y0;