CDT  1.3.0
C++ library for constrained Delaunay triangulation
CDT::VertexInsertionOrder Struct Reference

Enum of strategies specifying order in which a range of vertices is inserted. More...

#include <Triangulation.h>

Public Types

enum  Enum { Auto , AsProvided }
 The Enum itself. More...
 

Detailed Description

Enum of strategies specifying order in which a range of vertices is inserted.

Note
VertexInsertionOrder::Randomized will only randomize order of inserting in triangulation, vertex indices will be preserved as they were specified in the final triangulation

Definition at line 37 of file Triangulation.h.

Member Enumeration Documentation

◆ Enum

The Enum itself.

Note
needed to pre c++11 compilers that don't support 'class enum'
Enumerator
Auto 

Automatic insertion order optimized for better performance.

breadth-first traversal of a Kd-tree for initial bulk-load, randomized for subsequent insertions

AsProvided 

insert vertices in same order they are provided

Definition at line 43 of file Triangulation.h.


The documentation for this struct was generated from the following file: