Graphviz 13.0.0~dev.20250402.0402
|
trapezoid elements and utilities for partition.c More...
#include <math.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
Go to the source code of this file.
Data Structures | |
struct | segment_t |
struct | trap_t |
struct | traps_t |
an array of trapezoids More... | |
Macros | |
#define | ST_VALID 1 /* for trapezium state */ |
#define | ST_INVALID 2 |
#define | C_EPS 1.0e-7 /* tolerance value: Used for making */ |
Functions | |
static bool | is_valid_trap (size_t index) |
static bool | fp_equal (double s, double t) |
static int | dfp_cmp (double f1, double f2) |
double floating point three-way comparison | |
static bool | equal_to (pointf v0, pointf v1) |
static bool | greater_than (pointf v0, pointf v1) |
traps_t | construct_trapezoids (int, segment_t *, int *) |
See Fast polygon triangulation based on Seidel's algorithm
Definition in file trap.h.
Definition at line 874 of file trapezoid.c.
References add_segment(), find_new_roots(), gv_calloc(), init_query_structure(), traps_t::length, math_logstar_n(), and math_N().
Referenced by partition().
|
inlinestatic |
Returns -1, 0, or 1 if f1 respectively, less than, almost equal with tolerance C_EPS, or greater than f2. The purpose of the function is workaround precision issues.
Definition at line 84 of file trap.h.
References C_EPS.
Referenced by hcmpid(), and vcmpid().
Definition at line 93 of file trap.h.
References fp_equal(), pointf_s::x, and pointf_s::y.
Referenced by add_segment(), greater_than_equal_to(), locate_endpoint(), and traverse_polygon().
|
inlinestatic |
Definition at line 74 of file trap.h.
References C_EPS.
Referenced by add_segment(), equal_to(), is_left_of(), locate_endpoint(), max_(), min_(), and traverse_polygon().
Definition at line 97 of file trap.h.
References C_EPS, pointf_s::x, and pointf_s::y.
Referenced by add_segment(), greater_than_equal_to(), inside_polygon(), is_left_of(), and locate_endpoint().
|
inlinestatic |
is the given index a reference to an existing trapezoid?
The indices stored in trap_t.{u0|u1|d0|d1|usave}
can contain sentinel values that represent an unset or invalid trapezoid. This function can be used to determine the validity of these fields.
Definition at line 55 of file trap.h.
References SIZE_MAX.
Referenced by add_segment(), inside_polygon(), merge_trapezoids(), monotonate_trapezoids(), traverse_polygon(), and update_trapezoid().