ImageEn, unit iexDefs

TIEMatrix

TIEMatrix

Declaration

  TIEMatrix = record
    a: Single;
    b: Single;
    c: Single;
    d: Single;
    e: Single;
    f: Single;
  end;

Description

Matrix for transformation, in the form [a b c d e f], equivalent to:
| a b 0 |
| c d 0 |
| e f 1 |

Translation is performed with [1 0 0 1 tx ty].
Scaling is performed with [sx 0 0 sy 0 0].