Gimp.Matrix3.prototype.affine
function affine(a: Number(gdouble), b: Number(gdouble), c: Number(gdouble), d: Number(gdouble), e: Number(gdouble), f: Number(gdouble)): void {
// Gjs wrapper for gimp_matrix3_affine()
}
Applies the affine transformation given by six values to matrix. The six values form define an affine transformation matrix as illustrated below:
( a c e ) ( b d f ) ( 0 0 1 )
- a
the 'a' coefficient
- b
the 'b' coefficient
- c
the 'c' coefficient
- d
the 'd' coefficient
- e
the 'e' coefficient
- f
the 'f' coefficient