~ml-launchpad/ubuntu/natty/gcompris/fix-for-777349

« back to all changes in this revision

Viewing changes to src/libart_lgpl/art_vpath.h

  • Committer: Bazaar Package Importer
  • Author(s): Marc Gariepy, Marc Gariepy, Stephane Graber
  • Date: 2010-01-04 17:42:49 UTC
  • mfrom: (1.1.14 upstream)
  • Revision ID: james.westby@ubuntu.com-20100104174249-7bupatd9dtxyhvs4
Tags: 9.0-0ubuntu1
[Marc Gariepy]
* New upstream release (9.0).
* Remove cache.c from POTFILES to avoid FTBFS
* Remove unneeded rm in debian/rules (file no longer exists upstream)

[Stephane Graber]
* Bump Debian standards to 3.8.3
* Add patch system (dpatch)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Libart_LGPL - library of basic graphic primitives
2
 
 * Copyright (C) 1998 Raph Levien
3
 
 *
4
 
 * This library is free software; you can redistribute it and/or
5
 
 * modify it under the terms of the GNU Library General Public
6
 
 * License as published by the Free Software Foundation; either
7
 
 * version 3 of the License, or (at your option) any later version.
8
 
 *
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
 
 * Library General Public License for more details.
13
 
 *
14
 
 * You should have received a copy of the GNU Library General Public
15
 
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
16
 
 * Boston, MA 02111-1307, USA.
17
 
 */
18
 
 
19
 
#ifndef __ART_VPATH_H__
20
 
#define __ART_VPATH_H__
21
 
 
22
 
#ifdef LIBART_COMPILATION
23
 
#include "art_rect.h"
24
 
#include "art_pathcode.h"
25
 
#else
26
 
#include <libart_lgpl/art_rect.h>
27
 
#include <libart_lgpl/art_pathcode.h>
28
 
#endif
29
 
 
30
 
/* Basic data structures and constructors for simple vector paths */
31
 
 
32
 
#ifdef __cplusplus
33
 
extern "C" {
34
 
#endif /* __cplusplus */
35
 
 
36
 
typedef struct _ArtVpath ArtVpath;
37
 
 
38
 
/* CURVETO is not allowed! */
39
 
struct _ArtVpath {
40
 
  ArtPathcode code;
41
 
  double x;
42
 
  double y;
43
 
};
44
 
 
45
 
/* Some of the functions need to go into their own modules */
46
 
 
47
 
void
48
 
art_vpath_add_point (ArtVpath **p_vpath, int *pn_points, int *pn_points_max,
49
 
                     ArtPathcode code, double x, double y);
50
 
 
51
 
ArtVpath *
52
 
art_vpath_new_circle (double x, double y, double r);
53
 
 
54
 
ArtVpath *
55
 
art_vpath_affine_transform (const ArtVpath *src, const double matrix[6]);
56
 
 
57
 
void
58
 
art_vpath_bbox_drect (const ArtVpath *vec, ArtDRect *drect);
59
 
 
60
 
void
61
 
art_vpath_bbox_irect (const ArtVpath *vec, ArtIRect *irect);
62
 
 
63
 
ArtVpath *
64
 
art_vpath_perturb (ArtVpath *src);
65
 
 
66
 
#ifdef __cplusplus
67
 
}
68
 
#endif /* __cplusplus */
69
 
 
70
 
#endif /* __ART_VPATH_H__ */