#include "render.h"
#include <stdio.h>
#include "mem.h"
#include "hedges.h"
#include "heap.h"
Include dependency graph for heap.c:
Go to the source code of this file.
Functions | |
void | PQinsert (Halfedge *he, Site *v, double offset) |
void | PQdelete (Halfedge *he) |
int | PQempty (void) |
Point | PQ_min (void) |
Halfedge * | PQextractmin (void) |
void | PQcleanup (void) |
void | PQinitialize (void) |
void | PQdump (void) |
Point PQ_min | ( | void | ) |
Definition at line 89 of file heap.c.
References Site::coord, NULL, Halfedge::PQnext, Halfedge::vertex, Point::x, Point::y, and Halfedge::ystar.
Referenced by voronoi().
void PQdelete | ( | Halfedge * | he | ) |
Definition at line 67 of file heap.c.
References deref(), NULL, Halfedge::PQnext, and Halfedge::vertex.
Referenced by voronoi().
void PQdump | ( | void | ) |
Halfedge* PQextractmin | ( | void | ) |
void PQinitialize | ( | void | ) |
Definition at line 48 of file heap.c.
References Site::coord, NULL, Halfedge::PQnext, ref(), Halfedge::vertex, Point::x, Point::y, and Halfedge::ystar.
Referenced by voronoi().