Tab expansion in all the source files
[adg.git] / cpml / cpml-pair.h
blob84400f0d668453060bbd20f5e526509c7bbea01f
1 /* CPML - Cairo Path Manipulation Library
2 * Copyright (C) 2008, 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 Library 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 * Library 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., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
20 #ifndef __CPML_PAIR_H__
21 #define __CPML_PAIR_H__
23 #include <cairo.h>
24 #include <math.h>
26 #define CPML_DIR_RIGHT 0.
27 #define CPML_DIR_DOWN (M_PI/2.)
28 #define CPML_DIR_LEFT M_PI
29 #define CPML_DIR_UP (M_PI*3./2.)
32 CAIRO_BEGIN_DECLS
35 typedef struct _CpmlPair CpmlPair;
37 struct _CpmlPair {
38 double x, y;
42 cairo_bool_t cpml_pair_copy (CpmlPair *pair,
43 const CpmlPair *src);
44 cairo_bool_t cpml_pair_distance (const CpmlPair *from,
45 const CpmlPair *to,
46 double *distance);
47 cairo_bool_t cpml_pair_square_distance (const CpmlPair *from,
48 const CpmlPair *to,
49 double *distance);
50 cairo_bool_t cpml_pair_angle (const CpmlPair *from,
51 const CpmlPair *to,
52 double *angle);
53 cairo_bool_t cpml_vector_from_pair (CpmlPair *vector,
54 const CpmlPair *pair);
55 cairo_bool_t cpml_vector_from_angle (CpmlPair *vector,
56 double angle);
59 CAIRO_END_DECLS
62 #endif /* __CPML_PAIR_H__ */