Graphviz 13.0.0~dev.20250402.0402
Loading...
Searching...
No Matches
trap.h
Go to the documentation of this file.
1
9/*************************************************************************
10 * Copyright (c) 2011 AT&T Intellectual Property
11 * All rights reserved. This program and the accompanying materials
12 * are made available under the terms of the Eclipse Public License v1.0
13 * which accompanies this distribution, and is available at
14 * https://www.eclipse.org/legal/epl-v10.html
15 *
16 * Contributors: Details at https://graphviz.org
17 *************************************************************************/
18
19#pragma once
20
21#include <math.h>
22#include <stdbool.h>
23#include <stddef.h>
24#include <stdint.h>
25
26/* Segment attributes */
27
28typedef struct {
29 pointf v0, v1; /* two endpoints */
30 bool is_inserted; /* inserted in trapezoidation yet ? */
31 size_t root0, root1;
32 int next; /* Next logical segment */
33 int prev; /* Previous segment */
34} segment_t;
35
36
37/* Trapezoid attributes */
38
39typedef struct {
40 int lseg, rseg; /* two adjoining segments */
41 pointf hi, lo; /* max/min y-values */
42 size_t u0, u1;
43 size_t d0, d1;
44 size_t sink;
45 size_t usave;
46 int uside;
47 int state;
48} trap_t;
49
55static inline bool is_valid_trap(size_t index) {
56 return index != 0 && index != SIZE_MAX;
57}
58
60typedef struct {
61 size_t length;
63} traps_t;
64
65#define ST_VALID 1 /* for trapezium state */
66#define ST_INVALID 2
67
68#define C_EPS 1.0e-7 /* tolerance value: Used for making */
69 /* all decisions about collinearity or */
70 /* left/right of segment. Decrease */
71 /* this value if the input points are */
72 /* spaced very close together */
73
74static inline bool fp_equal(double s, double t) { return fabs(s - t) <= C_EPS; }
75
84static inline int dfp_cmp(double f1, double f2) {
85 double d = f1 - f2;
86 if (d < -C_EPS)
87 return -1;
88 if (d > C_EPS)
89 return 1;
90 return 0;
91}
92
93static inline bool equal_to(pointf v0, pointf v1) {
94 return fp_equal(v0.y, v1.y) && fp_equal(v0.x, v1.x);
95}
96
97static inline bool greater_than(pointf v0, pointf v1) {
98 return v0.y > v1.y + C_EPS ? true
99 : (v0.y < v1.y - C_EPS ? false : v0.x > v1.x);
100}
101
102extern traps_t construct_trapezoids(int, segment_t*, int*);
#define SIZE_MAX
Definition gmlscan.c:347
double x
Definition geom.h:29
double y
Definition geom.h:29
size_t root0
Definition trap.h:31
pointf v0
Definition trap.h:29
int prev
Definition trap.h:33
int next
Definition trap.h:32
bool is_inserted
Definition trap.h:30
Definition trap.h:39
size_t sink
pointer to corresponding in Q
Definition trap.h:44
size_t d0
Definition trap.h:43
int state
Definition trap.h:47
size_t usave
I forgot what this means.
Definition trap.h:45
pointf hi
Definition trap.h:41
size_t u0
Definition trap.h:42
int uside
I forgot what this means.
Definition trap.h:46
int lseg
Definition trap.h:40
an array of trapezoids
Definition trap.h:60
size_t length
Definition trap.h:61
trap_t * data
Definition trap.h:62
static bool is_valid_trap(size_t index)
Definition trap.h:55
traps_t construct_trapezoids(int, segment_t *, int *)
Definition trapezoid.c:874
static bool equal_to(pointf v0, pointf v1)
Definition trap.h:93
static bool greater_than(pointf v0, pointf v1)
Definition trap.h:97
#define C_EPS
Definition trap.h:68
static int dfp_cmp(double f1, double f2)
double floating point three-way comparison
Definition trap.h:84
static bool fp_equal(double s, double t)
Definition trap.h:74
Definition grammar.c:93