Delaunator
2D Delaunay Triangulation in C++ with Python wrapper.
Main Page
Namespaces
Classes
Files
File List
All
Classes
Namespaces
Functions
delaunator
libdelaunator_src
iterators.h
1
#ifndef DELAUNATOR_ITERATOR_H_INCLUDED
2
#define DELAUNATOR_ITERATOR_H_INCLUDED
3
4
5
6
/*
7
* LIBRARIES
8
*/
9
// LOCAL MODULES
10
#include "commons.h"
11
#include "vertex.h"
12
#include "face.h"
13
#include "edge.h"
14
#include "vertex_iterators.h"
15
#include "face_iterators.h"
16
#include "edge_iterators.h"
17
18
19
/*
20
* DEFINES
21
*/
22
23
24
25
26
/*
27
* PREDECLARATIONS
28
*/
29
// NB: iterators defined next() function for portability to Python's wraps,
30
// or other language where ++ unary operator don't exist.
31
// So, next() and operator++ are equivalent.
32
33
34
35
36
37
#endif
Generated on Sat Nov 1 2014 15:41:46 for Delaunator by
1.8.1.2