1 /* ADG - Automatic Drawing Generation
2 * Copyright (C) 2007,2008,2009 Nicola Fontana <ntd at entidi.it>
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 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
16 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
23 * @short_description: A wrapper for the cairo_matrix_t struct
25 * The AdgMatrix is essentially a wrapper for #cairo_matrix_t structures.
28 #include "adg-matrix.h"
32 static AdgMatrix null_matrix
= { 0., 0., 0., 0., 0., 0. };
33 static AdgMatrix identity_matrix
= { 1., 0., 0., 1., 0., 0. };
37 adg_matrix_get_type(void)
39 static int matrix_type
= 0;
41 if (G_UNLIKELY(matrix_type
== 0))
42 matrix_type
= g_boxed_type_register_static("AdgMatrix",
43 (GBoxedCopyFunc
) adg_matrix_dup
,
51 * @matrix: an #AdgMatrix structure
55 * Return value: the duplicate of @matrix: must be freed with g_free()
56 * when no longer needed.
59 adg_matrix_dup(const AdgMatrix
* matrix
)
61 g_return_val_if_fail(matrix
!= NULL
, NULL
);
63 return g_memdup(matrix
, sizeof(AdgMatrix
));
67 * adg_matrix_get_fallback:
69 * Gets a fallback matrix. The fallback matrix is a statically allocated
72 * Return value: the fallback matrix
75 adg_matrix_get_fallback(void)
77 return &identity_matrix
;
81 * adg_matrix_init_null:
82 * @matrix: the #AdgMatrix to nullify
84 * Nullifies a matrix, setting all its components to 0.
87 adg_matrix_init_null(AdgMatrix
* matrix
)
89 memcpy(matrix
, &null_matrix
, sizeof(AdgMatrix
));
94 * @matrix: the #AdgMatrix to check
96 * Checks if a matrix is a nullified matrix.
98 * Return value: %TRUE if the matrix is a null matrix, %FALSE otherwise
101 adg_matrix_is_null(const AdgMatrix
* matrix
)
103 return memcmp(matrix
, &null_matrix
, sizeof(AdgMatrix
)) == 0;
108 * @matrix: the destination #AdgMatrix
109 * @src: the source #AdgMatrix
111 * Copies @matrix to @dst.
113 * Return value: @matrix
116 adg_matrix_copy(AdgMatrix
*matrix
, const AdgMatrix
*src
)
118 g_return_val_if_fail(matrix
!= NULL
, matrix
);
119 g_return_val_if_fail(src
!= NULL
, matrix
);
121 memcpy(matrix
, src
, sizeof(AdgMatrix
));
128 * @matrix1: an #AdgMatrix
129 * @matrix2: an #AdgMatrix
131 * Compares @matrix1 and @matrix2 and returns %TRUE if the matrices are equal.
133 * Return value: %TRUE if @matrix1 is equal to @matrix2, %FALSE otherwise
136 adg_matrix_equal(const AdgMatrix
* matrix1
, const AdgMatrix
* matrix2
)
138 g_return_val_if_fail(matrix1
!= NULL
, FALSE
);
139 g_return_val_if_fail(matrix2
!= NULL
, FALSE
);
141 return memcmp(matrix1
, matrix2
, sizeof(AdgMatrix
)) == 0;