Program Listing for File Delaunator.hpp¶
↰ Return to documentation for file (include\Polylidar\Delaunator\Delaunator.hpp
)
// MIT License
// Copyright (c) 2018 Volodymyr Bilonenko and Jeremy Castagno
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#pragma once
#ifndef DELAUNATOR
#define DELAUNATOR
#include <algorithm>
#include <cmath>
#include <exception>
#include <iostream>
#include <limits>
#include <memory>
#include <utility>
#include <vector>
#ifdef PL_USE_ROBUST_PREDICATES
#include "predicates.h"
#endif
#include "Polylidar/Mesh/MeshHelper.hpp"
namespace Polylidar {
namespace Delaunator {
class Delaunator : public Polylidar::MeshHelper::HalfEdgeTriangulation
{
public:
std::vector<size_t> &triangles_ref;
std::vector<size_t> &halfedges_ref;
std::vector<std::size_t> hull_prev;
std::vector<std::size_t> hull_next;
std::vector<std::size_t> hull_tri;
std::size_t hull_start;
Delaunator(Matrix<double> &&in_vertices);
Delaunator(const Matrix<double> &in_vertices);
void triangulate();
double get_hull_area();
private:
std::vector<std::size_t> m_hash;
double m_center_x;
double m_center_y;
std::size_t m_hash_size;
std::vector<std::size_t> m_edge_stack;
std::size_t legalize(std::size_t a);
std::size_t hash_key(double x, double y) const;
std::size_t add_triangle(std::size_t i0, std::size_t i1, std::size_t i2, std::size_t a, std::size_t b,
std::size_t c);
void link(std::size_t a, std::size_t b);
};
} // namespace delaunator
} // namespace Polylidar
#endif