~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to libgimpmath/gimpmatrix.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
3
3
 *
4
4
 * gimpmatrix.h
5
 
 * Copyright (C) 1998 Jay Cox <jaycox@earthlink.net>
 
5
 * Copyright (C) 1998 Jay Cox <jaycox@gimp.org>
6
6
 *
7
7
 * This library is free software; you can redistribute it and/or
8
8
 * modify it under the terms of the GNU Lesser General Public
42
42
  gdouble coeff[4][4];
43
43
};
44
44
 
 
45
#define GIMP_TYPE_MATRIX2               (gimp_matrix2_get_type ())
 
46
#define GIMP_VALUE_HOLDS_MATRIX2(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_MATRIX2))
 
47
 
 
48
GType         gimp_matrix2_get_type        (void) G_GNUC_CONST;
 
49
 
 
50
 
 
51
#define GIMP_TYPE_PARAM_MATRIX2            (gimp_param_matrix2_get_type ())
 
52
#define GIMP_IS_PARAM_SPEC_MATRIX2(pspec)  (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), GIMP_TYPE_PARAM_MATRIX2))
 
53
 
 
54
GType         gimp_param_matrix2_get_type  (void) G_GNUC_CONST;
 
55
 
 
56
GParamSpec *  gimp_param_spec_matrix2      (const gchar        *name,
 
57
                                            const gchar        *nick,
 
58
                                            const gchar        *blurb,
 
59
                                            const GimpMatrix2  *default_value,
 
60
                                            GParamFlags         flags);
 
61
 
45
62
 
46
63
void          gimp_matrix2_identity        (GimpMatrix2       *matrix);
47
64
void          gimp_matrix2_mult            (const GimpMatrix2 *matrix1,
73
90
gdouble       gimp_matrix3_determinant     (const GimpMatrix3 *matrix);
74
91
void          gimp_matrix3_invert          (GimpMatrix3       *matrix);
75
92
 
 
93
gboolean      gimp_matrix3_is_identity     (const GimpMatrix3 *matrix);
76
94
gboolean      gimp_matrix3_is_diagonal     (const GimpMatrix3 *matrix);
77
 
gboolean      gimp_matrix3_is_identity     (const GimpMatrix3 *matrix);
 
95
gboolean      gimp_matrix3_is_affine       (const GimpMatrix3 *matrix);
78
96
gboolean      gimp_matrix3_is_simple       (const GimpMatrix3 *matrix);
79
97
 
80
98
void          gimp_matrix3_transform_point (const GimpMatrix3 *matrix,