2 * fontconfig/src/fcmatrix.c
4 * Copyright © 2000 Tuomas J. Lukka
6 * Permission to use, copy, modify, distribute, and sell this software and its
7 * documentation for any purpose is hereby granted without fee, provided that
8 * the above copyright notice appear in all copies and that both that
9 * copyright notice and this permission notice appear in supporting
10 * documentation, and that the name of Tuomas Lukka not be used in
11 * advertising or publicity pertaining to distribution of the software without
12 * specific, written prior permission. Tuomas Lukka makes no
13 * representations about the suitability of this software for any purpose. It
14 * is provided "as is" without express or implied warranty.
16 * TUOMAS LUKKA DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18 * EVENT SHALL TUOMAS LUKKA BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22 * PERFORMANCE OF THIS SOFTWARE.
30 const FcMatrix FcIdentityMatrix = { 1, 0, 0, 1 };
33 FcMatrixCopy (const FcMatrix *mat)
38 r = (FcMatrix *) malloc (sizeof (*r) );
46 FcMatrixFree (FcMatrix *mat)
48 if (mat != &FcIdentityMatrix)
53 FcMatrixEqual (const FcMatrix *mat1, const FcMatrix *mat2)
55 if(mat1 == mat2) return FcTrue;
56 if(mat1 == 0 || mat2 == 0) return FcFalse;
57 return mat1->xx == mat2->xx &&
58 mat1->xy == mat2->xy &&
59 mat1->yx == mat2->yx &&
64 FcMatrixMultiply (FcMatrix *result, const FcMatrix *a, const FcMatrix *b)
68 r.xx = a->xx * b->xx + a->xy * b->yx;
69 r.xy = a->xx * b->xy + a->xy * b->yy;
70 r.yx = a->yx * b->xx + a->yy * b->yx;
71 r.yy = a->yx * b->xy + a->yy * b->yy;
76 FcMatrixRotate (FcMatrix *m, double c, double s)
81 * X Coordinate system is upside down, swap to make
82 * rotations counterclockwise
88 FcMatrixMultiply (m, &r, m);
92 FcMatrixScale (FcMatrix *m, double sx, double sy)
100 FcMatrixMultiply (m, &r, m);
104 FcMatrixShear (FcMatrix *m, double sh, double sv)
112 FcMatrixMultiply (m, &r, m);
115 #include "fcaliastail.h"