2#include <NDEVR/LineSegment.h>
3#include <NDEVR/Dictionary.h>
4#include <NDEVR/Buffer.h>
The equivelent of std::vector but with a bit more control. The basic array unit of the library.
Definition Buffer.hpp:59
A hash-based key-value store, useful for quick associative lookups.
Definition Dictionary.h:59
A line segment represented by two vertices, a start and end.
Definition Line.hpp:49
Given random line segments, constructs a polyline when the vertices match. Used in Parameter.
Definition PolylineMaker.h:12
void addSegment(const LineSegment< 3, fltp04 > &seg)
Adds a segment and creates indices, if needed into the index cache.
Buffer< Buffer< uint04 > > getCalculatedPolylineIndices() const
Returns a list of all calcuated polylines, with each buffer representing a different polyline.
PolylineMaker(Buffer< Vertex< 3, fltp04 > > &polyline_vertices)
Initializes with a series of vertices that will be possible nodes of the polyline.
A vertex or point. A specific type of Vector used primarily for spacial location information.
Definition Vertex.hpp:48
uint32_t uint04
-Defines an alias representing a 4 byte, unsigned integer -Can represent exact integer values 0 throu...
Definition BaseValues.hpp:94