~ubuntu-branches/ubuntu/maverick/gcompris/maverick

« back to all changes in this revision

Viewing changes to src/libart_lgpl/art_vpath_dash.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) 1999 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_DASH_H__
20
 
#define __ART_VPATH_DASH_H__
21
 
 
22
 
/* Apply a dash style to a vector path. */
23
 
 
24
 
#ifdef LIBART_COMPILATION
25
 
#include "art_vpath.h"
26
 
#else
27
 
#include <libart_lgpl/art_vpath.h>
28
 
#endif
29
 
 
30
 
#ifdef __cplusplus
31
 
extern "C" {
32
 
#endif /* __cplusplus */
33
 
 
34
 
typedef struct _ArtVpathDash ArtVpathDash;
35
 
 
36
 
struct _ArtVpathDash {
37
 
  double offset;
38
 
  int n_dash;
39
 
  double *dash;
40
 
};
41
 
 
42
 
ArtVpath *
43
 
art_vpath_dash (const ArtVpath *vpath, const ArtVpathDash *dash);
44
 
 
45
 
#ifdef __cplusplus
46
 
}
47
 
#endif /* __cplusplus */
48
 
 
49
 
#endif /* __ART_VPATH_DASH_H__ */