push 6fe5edf8439c19d3885814583531c2f2b1495177
[wine/hacks.git] / dlls / gdiplus / matrix.c
bloba40f690e84d786bfda40f2ed9400eadfa8c93032
1 /*
2 * Copyright (C) 2007 Google (Evan Stade)
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include <stdarg.h>
20 #include <math.h>
22 #include "windef.h"
23 #include "winbase.h"
24 #include "wingdi.h"
26 #include "objbase.h"
28 #include "gdiplus.h"
29 #include "gdiplus_private.h"
31 /* Multiplies two matrices of the form
33 * idx:0 idx:1 0
34 * idx:2 idx:3 0
35 * idx:4 idx:5 1
37 * and puts the output in out.
38 * */
39 static void matrix_multiply(GDIPCONST REAL * left, GDIPCONST REAL * right, REAL * out)
41 REAL temp[6];
42 int i, odd;
44 for(i = 0; i < 6; i++){
45 odd = i % 2;
46 temp[i] = left[i - odd] * right[odd] + left[i - odd + 1] * right[odd + 2] +
47 (i >= 4 ? right[odd + 4] : 0.0);
50 memcpy(out, temp, 6 * sizeof(REAL));
53 GpStatus WINGDIPAPI GdipCreateMatrix2(REAL m11, REAL m12, REAL m21, REAL m22,
54 REAL dx, REAL dy, GpMatrix **matrix)
56 if(!matrix)
57 return InvalidParameter;
59 *matrix = GdipAlloc(sizeof(GpMatrix));
60 if(!*matrix) return OutOfMemory;
62 /* first row */
63 (*matrix)->matrix[0] = m11;
64 (*matrix)->matrix[1] = m12;
65 /* second row */
66 (*matrix)->matrix[2] = m21;
67 (*matrix)->matrix[3] = m22;
68 /* third row */
69 (*matrix)->matrix[4] = dx;
70 (*matrix)->matrix[5] = dy;
72 return Ok;
75 GpStatus WINGDIPAPI GdipCreateMatrix3(GDIPCONST GpRectF *rect,
76 GDIPCONST GpPointF *pt, GpMatrix **matrix)
78 if(!matrix)
79 return InvalidParameter;
81 *matrix = GdipAlloc(sizeof(GpMatrix));
82 if(!*matrix) return OutOfMemory;
84 memcpy((*matrix)->matrix, rect, 4 * sizeof(REAL));
86 (*matrix)->matrix[4] = pt->X;
87 (*matrix)->matrix[5] = pt->Y;
89 return Ok;
92 GpStatus WINGDIPAPI GdipCreateMatrix3I(GDIPCONST GpRect *rect, GDIPCONST GpPoint *pt,
93 GpMatrix **matrix)
95 GpRectF rectF;
96 GpPointF ptF;
98 rectF.X = (REAL)rect->X;
99 rectF.Y = (REAL)rect->Y;
100 rectF.Width = (REAL)rect->Width;
101 rectF.Height = (REAL)rect->Height;
103 ptF.X = (REAL)pt->X;
104 ptF.Y = (REAL)pt->Y;
106 return GdipCreateMatrix3(&rectF, &ptF, matrix);
109 GpStatus WINGDIPAPI GdipCloneMatrix(GpMatrix *matrix, GpMatrix **clone)
111 if(!matrix || !clone)
112 return InvalidParameter;
114 *clone = GdipAlloc(sizeof(GpMatrix));
115 if(!*clone) return OutOfMemory;
117 **clone = *matrix;
119 return Ok;
122 GpStatus WINGDIPAPI GdipCreateMatrix(GpMatrix **matrix)
124 if(!matrix)
125 return InvalidParameter;
127 *matrix = GdipAlloc(sizeof(GpMatrix));
128 if(!*matrix) return OutOfMemory;
130 (*matrix)->matrix[0] = 1.0;
131 (*matrix)->matrix[1] = 0.0;
132 (*matrix)->matrix[2] = 0.0;
133 (*matrix)->matrix[3] = 1.0;
134 (*matrix)->matrix[4] = 0.0;
135 (*matrix)->matrix[5] = 0.0;
137 return Ok;
140 GpStatus WINGDIPAPI GdipDeleteMatrix(GpMatrix *matrix)
142 if(!matrix)
143 return InvalidParameter;
145 GdipFree(matrix);
147 return Ok;
150 GpStatus WINGDIPAPI GdipGetMatrixElements(GDIPCONST GpMatrix *matrix,
151 REAL *out)
153 if(!matrix || !out)
154 return InvalidParameter;
156 memcpy(out, matrix->matrix, sizeof(matrix->matrix));
158 return Ok;
161 GpStatus WINGDIPAPI GdipMultiplyMatrix(GpMatrix *matrix, GpMatrix* matrix2,
162 GpMatrixOrder order)
164 if(!matrix || !matrix2)
165 return InvalidParameter;
167 if(order == MatrixOrderAppend)
168 matrix_multiply(matrix->matrix, matrix2->matrix, matrix->matrix);
169 else
170 matrix_multiply(matrix2->matrix, matrix->matrix, matrix->matrix);
172 return Ok;
175 GpStatus WINGDIPAPI GdipRotateMatrix(GpMatrix *matrix, REAL angle,
176 GpMatrixOrder order)
178 REAL cos_theta, sin_theta, rotate[6];
180 if(!matrix)
181 return InvalidParameter;
183 angle = deg2rad(angle);
184 cos_theta = cos(angle);
185 sin_theta = sin(angle);
187 rotate[0] = cos_theta;
188 rotate[1] = sin_theta;
189 rotate[2] = -sin_theta;
190 rotate[3] = cos_theta;
191 rotate[4] = 0.0;
192 rotate[5] = 0.0;
194 if(order == MatrixOrderAppend)
195 matrix_multiply(matrix->matrix, rotate, matrix->matrix);
196 else
197 matrix_multiply(rotate, matrix->matrix, matrix->matrix);
199 return Ok;
202 GpStatus WINGDIPAPI GdipScaleMatrix(GpMatrix *matrix, REAL scaleX, REAL scaleY,
203 GpMatrixOrder order)
205 REAL scale[6];
207 if(!matrix)
208 return InvalidParameter;
210 scale[0] = scaleX;
211 scale[1] = 0.0;
212 scale[2] = 0.0;
213 scale[3] = scaleY;
214 scale[4] = 0.0;
215 scale[5] = 0.0;
217 if(order == MatrixOrderAppend)
218 matrix_multiply(matrix->matrix, scale, matrix->matrix);
219 else
220 matrix_multiply(scale, matrix->matrix, matrix->matrix);
222 return Ok;
225 GpStatus WINGDIPAPI GdipSetMatrixElements(GpMatrix *matrix, REAL m11, REAL m12,
226 REAL m21, REAL m22, REAL dx, REAL dy)
228 if(!matrix)
229 return InvalidParameter;
231 matrix->matrix[0] = m11;
232 matrix->matrix[1] = m12;
233 matrix->matrix[2] = m21;
234 matrix->matrix[3] = m22;
235 matrix->matrix[4] = dx;
236 matrix->matrix[5] = dy;
238 return Ok;
241 GpStatus WINGDIPAPI GdipTransformMatrixPoints(GpMatrix *matrix, GpPointF *pts,
242 INT count)
244 REAL x, y;
245 INT i;
247 if(!matrix || !pts)
248 return InvalidParameter;
250 for(i = 0; i < count; i++)
252 x = pts[i].X;
253 y = pts[i].Y;
255 pts[i].X = x * matrix->matrix[0] + y * matrix->matrix[2] + matrix->matrix[4];
256 pts[i].Y = x * matrix->matrix[1] + y * matrix->matrix[3] + matrix->matrix[5];
259 return Ok;
262 GpStatus WINGDIPAPI GdipTranslateMatrix(GpMatrix *matrix, REAL offsetX,
263 REAL offsetY, GpMatrixOrder order)
265 REAL translate[6];
267 if(!matrix)
268 return InvalidParameter;
270 translate[0] = 1.0;
271 translate[1] = 0.0;
272 translate[2] = 0.0;
273 translate[3] = 1.0;
274 translate[4] = offsetX;
275 translate[5] = offsetY;
277 if(order == MatrixOrderAppend)
278 matrix_multiply(matrix->matrix, translate, matrix->matrix);
279 else
280 matrix_multiply(translate, matrix->matrix, matrix->matrix);
282 return Ok;
285 GpStatus WINGDIPAPI GdipVectorTransformMatrixPoints(GpMatrix *matrix, GpPointF *pts, INT count)
287 REAL x, y;
288 INT i;
290 if(!matrix || !pts)
291 return InvalidParameter;
293 for(i = 0; i < count; i++)
295 x = pts[i].X;
296 y = pts[i].Y;
298 pts[i].X = x * matrix->matrix[0] + y * matrix->matrix[2];
299 pts[i].Y = x * matrix->matrix[1] + y * matrix->matrix[3];
302 return Ok;