The BIG graph update
[rrdtool.git] / libraries / libart_lgpl-2.3.7 / art_svp_intersect.h
1 /* Libart_LGPL - library of basic graphic primitives
2  * Copyright (C) 2001 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 2 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, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __ART_SVP_INTERSECT_H__
21 #define __ART_SVP_INTERSECT_H__
22
23 /* The funky new SVP intersector. */
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif /* __cplusplus */
28
29 #ifndef ART_WIND_RULE_DEFINED
30 #define ART_WIND_RULE_DEFINED
31 typedef enum {
32   ART_WIND_RULE_NONZERO,
33   ART_WIND_RULE_INTERSECT,
34   ART_WIND_RULE_ODDEVEN,
35   ART_WIND_RULE_POSITIVE
36 } ArtWindRule;
37 #endif
38
39 typedef struct _ArtSvpWriter ArtSvpWriter;
40
41 struct _ArtSvpWriter {
42   int (*add_segment) (ArtSvpWriter *self, int wind_left, int delta_wind,
43                       double x, double y);
44   void (*add_point) (ArtSvpWriter *self, int seg_id, double x, double y);
45   void (*close_segment) (ArtSvpWriter *self, int seg_id);
46 };
47
48 ArtSvpWriter *
49 art_svp_writer_rewind_new (ArtWindRule rule);
50
51 ArtSVP *
52 art_svp_writer_rewind_reap (ArtSvpWriter *self);
53
54 int
55 art_svp_seg_compare (const void *s1, const void *s2);
56
57 void
58 art_svp_intersector (const ArtSVP *in, ArtSvpWriter *out);
59
60 #ifdef __cplusplus
61 }
62 #endif /* __cplusplus */
63
64 #endif /* __ART_SVP_INTERSECT_H__ */