|
|
◆ vkvg_matrix_init()
| void vkvg_matrix_init |
( |
vkvg_matrix_t * |
matrix, |
|
|
float |
xx, |
|
|
float |
yx, |
|
|
float |
xy, |
|
|
float |
yy, |
|
|
float |
x0, |
|
|
float |
y0 |
|
) |
| |
Initialize members of the supplied matrix to the values passed as arguments. Resulting matrix will hold an affine transformation defined by the parameters. - Parameters
-
| matrix | a valid vkvg_matrix_t pointer |
| xx | xx component of the affine transformation |
| yx | yx component of the affine transformation |
| xy | xy component of the affine transformation |
| yy | yy component of the affine transformation |
| x0 | X translation component of the affine transformation |
| y0 | Y translation component of the affine transformation |
|