Graphviz 13.0.0~dev.20250402.0402
|
trapezoidation More...
#include "config.h"
#include <string.h>
#include <assert.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <math.h>
#include <common/geom.h>
#include <common/types.h>
#include <ortho/trap.h>
#include <util/alloc.h>
#include <util/gv_math.h>
#include <util/list.h>
#include <util/unreachable.h>
Go to the source code of this file.
Data Structures | |
struct | qnode_t |
Macros | |
#define | T_X 1 |
#define | T_Y 2 |
#define | T_SINK 3 |
#define | FIRSTPT 1 /* checking whether pt. is inserted */ |
#define | LASTPT 2 |
#define | S_LEFT 1 /* for merge-direction */ |
#define | S_RIGHT 2 |
#define | INF 1<<30 |
#define | CROSS(v0, v1, v2) |
Functions | |
static size_t | newnode (qnodes_t *qs) |
an array of qnodes | |
static size_t | newtrap (traps_t *tr) |
static pointf | max_ (pointf v0, pointf v1) |
return the maximum of the two points | |
static pointf | min_ (pointf v0, pointf v1) |
return the minimum of the two points | |
static bool | greater_than_equal_to (pointf v0, pointf v1) |
static bool | less_than (pointf v0, pointf v1) |
static size_t | init_query_structure (int segnum, segment_t *seg, traps_t *tr, qnodes_t *qs) |
static bool | is_left_of (int segnum, segment_t *seg, pointf *v) |
static bool | inserted (int segnum, segment_t *seg, int whichpt) |
static size_t | locate_endpoint (pointf *v, pointf *vo, size_t r, segment_t *seg, qnodes_t *qs) |
static void | merge_trapezoids (int segnum, size_t tfirst, size_t tlast, int side, traps_t *tr, qnodes_t *qs) |
static void | update_trapezoid (segment_t *s, segment_t *seg, traps_t *tr, size_t t, size_t tn) |
static void | add_segment (int segnum, segment_t *seg, traps_t *tr, qnodes_t *qs) |
static void | find_new_roots (int segnum, segment_t *seg, traps_t *tr, qnodes_t *qs) |
static int | math_logstar_n (int n) |
static int | math_N (int n, int h) |
traps_t | construct_trapezoids (int nseg, segment_t *seg, int *permute) |
See Fast polygon triangulation based on Seidel's algorithm
Definition in file trapezoid.c.
#define CROSS | ( | v0, | |
v1, | |||
v2 | |||
) |
Definition at line 50 of file trapezoid.c.
#define FIRSTPT 1 /* checking whether pt. is inserted */ |
Definition at line 42 of file trapezoid.c.
#define INF 1<<30 |
Definition at line 48 of file trapezoid.c.
#define LASTPT 2 |
Definition at line 43 of file trapezoid.c.
#define S_LEFT 1 /* for merge-direction */ |
Definition at line 45 of file trapezoid.c.
#define S_RIGHT 2 |
Definition at line 46 of file trapezoid.c.
#define T_SINK 3 |
Definition at line 40 of file trapezoid.c.
#define T_X 1 |
Definition at line 38 of file trapezoid.c.
#define T_Y 2 |
Definition at line 39 of file trapezoid.c.
Definition at line 449 of file trapezoid.c.
References trap_t::d0, trap_t::d1, traps_t::data, equal_to(), FIRSTPT, fp_equal(), greater_than(), greater_than_equal_to(), trap_t::hi, inserted(), segment_t::is_inserted, is_left_of(), is_valid_trap(), LASTPT, less_than(), trap_t::lo, locate_endpoint(), trap_t::lseg, merge_trapezoids(), newnode(), newtrap(), segment_t::next, segment_t::prev, trap_t::rseg, S_LEFT, S_RIGHT, trap_t::sink, SIZE_MAX, ST_VALID, trap_t::state, SWAP, T_SINK, T_X, T_Y, trap_t::u0, trap_t::u1, update_trapezoid(), trap_t::usave, trap_t::uside, pointf_s::x, and pointf_s::y.
Referenced by construct_trapezoids().
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().
Definition at line 838 of file trapezoid.c.
References traps_t::data, locate_endpoint(), and trap_t::sink.
Referenced by construct_trapezoids().
Definition at line 102 of file trapezoid.c.
References equal_to(), and greater_than().
Referenced by add_segment(), less_than(), and merge_trapezoids().
|
static |
Definition at line 123 of file trapezoid.c.
References trap_t::d0, trap_t::d1, traps_t::data, trap_t::hi, INF, trap_t::lo, trap_t::lseg, max_(), min_(), newnode(), newtrap(), trap_t::rseg, trap_t::sink, ST_VALID, trap_t::state, T_SINK, T_X, T_Y, trap_t::u0, trap_t::u1, pointf_s::x, and pointf_s::y.
Referenced by construct_trapezoids().
|
static |
Definition at line 259 of file trapezoid.c.
References FIRSTPT, segment_t::is_inserted, segment_t::next, and segment_t::prev.
Referenced by add_segment().
Definition at line 214 of file trapezoid.c.
References CROSS, fp_equal(), greater_than(), pointf_s::x, and pointf_s::y.
Referenced by add_segment(), locate_endpoint(), and update_trapezoid().
Definition at line 106 of file trapezoid.c.
References greater_than_equal_to().
Referenced by add_segment().
|
static |
Definition at line 270 of file trapezoid.c.
References equal_to(), fp_equal(), greater_than(), is_left_of(), qnode_t::left, locate_endpoint(), qnode_t::nodetype, qnode_t::right, qnode_t::segnum, T_SINK, T_X, T_Y, qnode_t::trnum, UNREACHABLE, segment_t::v0, segment_t::v1, pointf_s::x, pointf_s::y, and qnode_t::yval.
Referenced by add_segment(), find_new_roots(), and locate_endpoint().
|
static |
Definition at line 851 of file trapezoid.c.
Referenced by construct_trapezoids().
|
static |
Definition at line 862 of file trapezoid.c.
Referenced by construct_trapezoids().
Definition at line 79 of file trapezoid.c.
References C_EPS, fp_equal(), pointf_s::x, and pointf_s::y.
Referenced by init_query_structure().
|
static |
Definition at line 317 of file trapezoid.c.
References trap_t::d0, trap_t::d1, traps_t::data, greater_than_equal_to(), is_valid_trap(), left, trap_t::lo, trap_t::lseg, trap_t::rseg, S_LEFT, trap_t::sink, ST_INVALID, trap_t::state, trap_t::u0, and trap_t::u1.
Referenced by add_segment().
Definition at line 91 of file trapezoid.c.
References C_EPS, fp_equal(), pointf_s::x, and pointf_s::y.
Referenced by init_query_structure().
|
static |
Definition at line 66 of file trapezoid.c.
Referenced by add_segment(), and init_query_structure().
|
static |
Definition at line 72 of file trapezoid.c.
References traps_t::data, gv_recalloc(), and traps_t::length.
Referenced by add_segment(), and init_query_structure().
|
static |
Definition at line 377 of file trapezoid.c.
References trap_t::d0, trap_t::d1, traps_t::data, is_left_of(), is_valid_trap(), trap_t::rseg, S_LEFT, SIZE_MAX, trap_t::u0, trap_t::u1, trap_t::usave, and trap_t::uside.
Referenced by add_segment().