2013-11-29 15:13:09 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1998, 2000-2007, 2010, 2011, 2012, 2013 SINTEF ICT,
|
|
|
|
* Applied Mathematics, Norway.
|
|
|
|
* Copyright (C) 2013 CERN
|
|
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
|
|
|
*
|
|
|
|
* Contact information: E-mail: tor.dokken@sintef.no
|
|
|
|
* SINTEF ICT, Department of Applied Mathematics,
|
|
|
|
* P.O. Box 124 Blindern,
|
|
|
|
* 0314 Oslo, Norway.
|
|
|
|
*
|
|
|
|
* This file is part of TTL.
|
|
|
|
*
|
|
|
|
* TTL is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* TTL is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with TTL. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* In accordance with Section 7(b) of the GNU Affero General Public
|
|
|
|
* License, a covered work must retain the producer line in every data
|
|
|
|
* file that is created or manipulated using TTL.
|
|
|
|
*
|
|
|
|
* Other Usage
|
|
|
|
* You can be released from the requirements of the license by purchasing
|
|
|
|
* a commercial license. Buying such a license is mandatory as soon as you
|
|
|
|
* develop commercial activities involving the TTL library without
|
|
|
|
* disclosing the source code of your own applications.
|
|
|
|
*
|
|
|
|
* This file may be used in accordance with the terms contained in a
|
|
|
|
* written agreement between you and SINTEF ICT.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <ttl/halfedge/hetriang.h>
|
|
|
|
#include <ttl/halfedge/hetraits.h>
|
|
|
|
#include <ttl/ttl.h>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <fstream>
|
|
|
|
#include <limits>
|
2014-03-05 13:57:14 +00:00
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
#include <boost/make_shared.hpp>
|
2013-11-29 15:13:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
using namespace hed;
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef TTL_USE_NODE_ID
|
|
|
|
int Node::id_count = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
//#define DEBUG_HE
|
|
|
|
#ifdef DEBUG_HE
|
|
|
|
#include <iostream>
|
|
|
|
static void errorAndExit(char* message) {
|
|
|
|
cout << "\n!!! ERROR: "<< message << " !!!\n" << endl; exit(-1);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
static EdgePtr getLeadingEdgeInTriangle(const EdgePtr& e) {
|
|
|
|
EdgePtr edge = e;
|
|
|
|
|
|
|
|
// Code: 3EF (assumes triangle)
|
|
|
|
if (!edge->isLeadingEdge()) {
|
|
|
|
edge = edge->getNextEdgeInFace();
|
|
|
|
if (!edge->isLeadingEdge())
|
|
|
|
edge = edge->getNextEdgeInFace();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!edge->isLeadingEdge()) {
|
|
|
|
return EdgePtr();
|
|
|
|
}
|
|
|
|
|
|
|
|
return edge;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
static void getLimits(NodesContainer::iterator first,
|
|
|
|
NodesContainer::iterator last,
|
|
|
|
int& xmin, int& ymin,
|
|
|
|
int& xmax, int& ymax) {
|
|
|
|
|
|
|
|
xmin = ymin = std::numeric_limits<int>::min();
|
|
|
|
xmax = ymax = std::numeric_limits<int>::max();
|
|
|
|
|
|
|
|
NodesContainer::iterator it;
|
|
|
|
for (it = first; it != last; ++it) {
|
|
|
|
xmin = min(xmin, (*it)->GetX());
|
|
|
|
ymin = min(ymin, (*it)->GetY());
|
|
|
|
xmax = max(xmax, (*it)->GetX());
|
|
|
|
ymax = max(ymax, (*it)->GetY());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
EdgePtr Triangulation::initTwoEnclosingTriangles(NodesContainer::iterator first,
|
|
|
|
NodesContainer::iterator last) {
|
|
|
|
|
|
|
|
int xmin, ymin, xmax, ymax;
|
|
|
|
getLimits(first, last, xmin, ymin, xmax, ymax);
|
|
|
|
|
|
|
|
// Add 10% of range:
|
|
|
|
double fac = 10.0;
|
|
|
|
double dx = (xmax-xmin)/fac;
|
|
|
|
double dy = (ymax-ymin)/fac;
|
|
|
|
|
2014-03-05 13:57:14 +00:00
|
|
|
NodePtr n1 = boost::make_shared<Node>(xmin-dx, ymin-dy);
|
|
|
|
NodePtr n2 = boost::make_shared<Node>(xmax+dx, ymin-dy);
|
|
|
|
NodePtr n3 = boost::make_shared<Node>(xmax+dx, ymax+dy);
|
|
|
|
NodePtr n4 = boost::make_shared<Node>(xmin-dx, ymax+dy);
|
2013-11-29 15:13:09 +00:00
|
|
|
|
|
|
|
// diagonal
|
2014-03-05 13:57:14 +00:00
|
|
|
EdgePtr e1d = boost::make_shared<Edge>();
|
|
|
|
EdgePtr e2d = boost::make_shared<Edge>();
|
2013-11-29 15:13:09 +00:00
|
|
|
|
|
|
|
// lower triangle
|
2014-03-05 13:57:14 +00:00
|
|
|
EdgePtr e11 = boost::make_shared<Edge>();
|
|
|
|
EdgePtr e12 = boost::make_shared<Edge>();
|
2013-11-29 15:13:09 +00:00
|
|
|
|
|
|
|
// upper triangle
|
2014-03-05 13:57:14 +00:00
|
|
|
EdgePtr e21 = boost::make_shared<Edge>();
|
|
|
|
EdgePtr e22 = boost::make_shared<Edge>();
|
2013-11-29 15:13:09 +00:00
|
|
|
|
|
|
|
// lower triangle
|
|
|
|
e1d->setSourceNode(n3);
|
|
|
|
e1d->setNextEdgeInFace(e11);
|
|
|
|
e1d->setTwinEdge(e2d);
|
|
|
|
addLeadingEdge(e1d);
|
|
|
|
|
|
|
|
e11->setSourceNode(n1);
|
|
|
|
e11->setNextEdgeInFace(e12);
|
|
|
|
|
|
|
|
e12->setSourceNode(n2);
|
|
|
|
e12->setNextEdgeInFace(e1d);
|
|
|
|
|
|
|
|
// upper triangle
|
|
|
|
e2d->setSourceNode(n1);
|
|
|
|
e2d->setNextEdgeInFace(e21);
|
|
|
|
e2d->setTwinEdge(e1d);
|
|
|
|
addLeadingEdge(e2d);
|
|
|
|
|
|
|
|
e21->setSourceNode(n3);
|
|
|
|
e21->setNextEdgeInFace(e22);
|
|
|
|
|
|
|
|
e22->setSourceNode(n4);
|
|
|
|
e22->setNextEdgeInFace(e2d);
|
|
|
|
|
|
|
|
return e11;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-27 10:42:47 +00:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
Triangulation::Triangulation() {
|
|
|
|
helper = new ttl::TriangulationHelper( *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
Triangulation::Triangulation(const Triangulation& tr) {
|
|
|
|
std::cout << "Triangulation: Copy constructor not present - EXIT.";
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
Triangulation::~Triangulation() {
|
|
|
|
cleanAll();
|
|
|
|
delete helper;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-29 15:13:09 +00:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void Triangulation::createDelaunay(NodesContainer::iterator first,
|
|
|
|
NodesContainer::iterator last) {
|
2014-01-27 10:42:47 +00:00
|
|
|
|
2013-11-29 15:13:09 +00:00
|
|
|
cleanAll();
|
|
|
|
|
|
|
|
EdgePtr bedge = initTwoEnclosingTriangles(first, last);
|
|
|
|
Dart dc(bedge);
|
|
|
|
|
|
|
|
Dart d_iter = dc;
|
|
|
|
|
|
|
|
NodesContainer::iterator it;
|
|
|
|
for (it = first; it != last; ++it) {
|
2014-01-27 10:42:47 +00:00
|
|
|
helper->insertNode<TTLtraits>(d_iter, *it);
|
2013-11-29 15:13:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// In general (e.g. for the triangle based data structure), the initial dart
|
|
|
|
// may have been changed.
|
|
|
|
// It is the users responsibility to get a valid boundary dart here.
|
|
|
|
// The half-edge data structure preserves the initial dart.
|
|
|
|
// (A dart at the boundary can also be found by trying to locate a
|
|
|
|
// triangle "outside" the triangulation.)
|
|
|
|
|
|
|
|
// Assumes rectangular domain
|
2014-01-27 10:42:47 +00:00
|
|
|
helper->removeRectangularBoundary<TTLtraits>(dc);
|
2013-11-29 15:13:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void Triangulation::removeTriangle(EdgePtr& edge) {
|
|
|
|
|
|
|
|
EdgePtr e1 = getLeadingEdgeInTriangle(edge);
|
|
|
|
|
|
|
|
#ifdef DEBUG_HE
|
|
|
|
if (!e1)
|
|
|
|
errorAndExit("Triangulation::removeTriangle: could not find leading edge");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
removeLeadingEdgeFromList(e1);
|
|
|
|
// cout << "No leading edges = " << leadingEdges_.size() << endl;
|
|
|
|
// Remove the triangle
|
2014-02-05 13:51:19 +00:00
|
|
|
EdgePtr e2(e1->getNextEdgeInFace());
|
|
|
|
EdgePtr e3(e2->getNextEdgeInFace());
|
2014-03-05 13:57:14 +00:00
|
|
|
|
|
|
|
e1->clear();
|
|
|
|
e2->clear();
|
|
|
|
e3->clear();
|
2013-11-29 15:13:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void Triangulation::reverse_splitTriangle(EdgePtr& edge) {
|
|
|
|
|
|
|
|
// Reverse operation of splitTriangle
|
|
|
|
|
2014-02-05 13:51:19 +00:00
|
|
|
EdgePtr e1(edge->getNextEdgeInFace());
|
|
|
|
EdgePtr le(getLeadingEdgeInTriangle(e1));
|
2013-11-29 15:13:09 +00:00
|
|
|
#ifdef DEBUG_HE
|
|
|
|
if (!le)
|
|
|
|
errorAndExit("Triangulation::removeTriangle: could not find leading edge");
|
|
|
|
#endif
|
|
|
|
removeLeadingEdgeFromList(le);
|
|
|
|
|
2014-02-05 13:51:19 +00:00
|
|
|
EdgePtr e2(e1->getNextEdgeInFace()->getTwinEdge()->getNextEdgeInFace());
|
2013-11-29 15:13:09 +00:00
|
|
|
le = getLeadingEdgeInTriangle(e2);
|
|
|
|
#ifdef DEBUG_HE
|
|
|
|
if (!le)
|
|
|
|
errorAndExit("Triangulation::removeTriangle: could not find leading edge");
|
|
|
|
#endif
|
|
|
|
removeLeadingEdgeFromList(le);
|
|
|
|
|
2014-02-05 13:51:19 +00:00
|
|
|
EdgePtr e3(edge->getTwinEdge()->getNextEdgeInFace()->getNextEdgeInFace());
|
2013-11-29 15:13:09 +00:00
|
|
|
le = getLeadingEdgeInTriangle(e3);
|
|
|
|
#ifdef DEBUG_HE
|
|
|
|
if (!le)
|
|
|
|
errorAndExit("Triangulation::removeTriangle: could not find leading edge");
|
|
|
|
#endif
|
|
|
|
removeLeadingEdgeFromList(le);
|
|
|
|
|
|
|
|
// The three triangles at the node have now been removed
|
|
|
|
// from the triangulation, but the arcs have not been deleted.
|
|
|
|
// Next delete the 6 half edges radiating from the node
|
|
|
|
// The node is maintained by handle and need not be deleted explicitly
|
2014-03-05 13:57:14 +00:00
|
|
|
EdgePtr estar = edge;
|
|
|
|
EdgePtr enext = estar->getTwinEdge()->getNextEdgeInFace();
|
|
|
|
estar->getTwinEdge()->clear();
|
|
|
|
estar->clear();
|
|
|
|
|
|
|
|
estar = enext;
|
|
|
|
enext = estar->getTwinEdge()->getNextEdgeInFace();
|
|
|
|
estar->getTwinEdge()->clear();
|
|
|
|
estar->clear();
|
|
|
|
|
|
|
|
enext->getTwinEdge()->clear();
|
|
|
|
enext->clear();
|
|
|
|
|
2013-11-29 15:13:09 +00:00
|
|
|
|
|
|
|
// Create the new triangle
|
|
|
|
e1->setNextEdgeInFace(e2);
|
|
|
|
e2->setNextEdgeInFace(e3);
|
|
|
|
e3->setNextEdgeInFace(e1);
|
|
|
|
addLeadingEdge(e1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
Dart Triangulation::createDart() {
|
|
|
|
|
|
|
|
// Return an arbitrary CCW dart
|
|
|
|
return Dart(*leadingEdges_.begin());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
bool Triangulation::removeLeadingEdgeFromList(EdgePtr& leadingEdge) {
|
|
|
|
|
|
|
|
// Remove the edge from the list of leading edges,
|
|
|
|
// but don't delete it.
|
|
|
|
// Also set flag for leading edge to false.
|
|
|
|
// Must search from start of list. Since edges are added to the
|
|
|
|
// start of the list during triangulation, this operation will
|
|
|
|
// normally be fast (when used in the triangulation algorithm)
|
|
|
|
list<EdgePtr>::iterator it;
|
|
|
|
for (it = leadingEdges_.begin(); it != leadingEdges_.end(); ++it) {
|
|
|
|
|
|
|
|
EdgePtr edge = *it;
|
|
|
|
if (edge == leadingEdge) {
|
|
|
|
|
|
|
|
edge->setAsLeadingEdge(false);
|
|
|
|
it = leadingEdges_.erase(it);
|
|
|
|
|
2014-02-05 13:51:19 +00:00
|
|
|
return true;
|
2013-11-29 15:13:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-05 13:51:19 +00:00
|
|
|
return false;
|
2013-11-29 15:13:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void Triangulation::cleanAll() {
|
2014-03-05 13:57:14 +00:00
|
|
|
BOOST_FOREACH(EdgePtr& edge, leadingEdges_)
|
|
|
|
edge->setNextEdgeInFace(EdgePtr());
|
2013-11-29 15:13:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-27 10:42:47 +00:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void Triangulation::swapEdge(Dart& dart) {
|
2014-03-05 13:57:14 +00:00
|
|
|
swapEdge(dart.getEdge());
|
2014-01-27 10:42:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2014-03-05 13:57:14 +00:00
|
|
|
void Triangulation::splitTriangle(Dart& dart, const NodePtr& point) {
|
2014-01-27 10:42:47 +00:00
|
|
|
EdgePtr edge = splitTriangle(dart.getEdge(), point);
|
|
|
|
dart.init(edge);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void Triangulation::reverse_splitTriangle(Dart& dart) {
|
|
|
|
reverse_splitTriangle(dart.getEdge());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void Triangulation::removeBoundaryTriangle(Dart& d) {
|
|
|
|
removeTriangle(d.getEdge());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-29 15:13:09 +00:00
|
|
|
#ifdef TTL_USE_NODE_FLAG
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
// This is a "template" for accessing all nodes (but multiple tests)
|
|
|
|
void Triangulation::flagNodes(bool flag) const {
|
|
|
|
|
|
|
|
list<EdgePtr>::const_iterator it;
|
|
|
|
for (it = leadingEdges_.begin(); it != leadingEdges_.end(); ++it) {
|
|
|
|
EdgePtr edge = *it;
|
|
|
|
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
|
|
edge->getSourceNode()->SetFlag(flag);
|
|
|
|
edge = edge->getNextEdgeInFace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
list<NodePtr>* Triangulation::getNodes() const {
|
|
|
|
|
|
|
|
flagNodes(false);
|
|
|
|
list<NodePtr>* nodeList = new list<NodePtr>;
|
|
|
|
|
|
|
|
list<EdgePtr>::const_iterator it;
|
|
|
|
for (it = leadingEdges_.begin(); it != leadingEdges_.end(); ++it) {
|
|
|
|
EdgePtr edge = *it;
|
|
|
|
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
|
|
const NodePtr& node = edge->getSourceNode();
|
|
|
|
|
|
|
|
if (node->GetFlag() == false) {
|
|
|
|
nodeList->push_back(node);
|
|
|
|
node->SetFlag(true);
|
|
|
|
}
|
|
|
|
edge = edge->getNextEdgeInFace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nodeList;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
list<EdgePtr>* Triangulation::getEdges(bool skip_boundary_edges) const {
|
|
|
|
|
|
|
|
// collect all arcs (one half edge for each arc)
|
|
|
|
// (boundary edges are also collected).
|
|
|
|
|
|
|
|
list<EdgePtr>::const_iterator it;
|
|
|
|
list<EdgePtr>* elist = new list<EdgePtr>;
|
|
|
|
for (it = leadingEdges_.begin(); it != leadingEdges_.end(); ++it) {
|
|
|
|
EdgePtr edge = *it;
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
|
|
EdgePtr twinedge = edge->getTwinEdge();
|
|
|
|
// only one of the half-edges
|
|
|
|
|
|
|
|
if ( (!twinedge && !skip_boundary_edges) ||
|
|
|
|
(twinedge && ((size_t)edge.get() > (size_t)twinedge.get())) )
|
|
|
|
elist->push_front(edge);
|
|
|
|
|
|
|
|
edge = edge->getNextEdgeInFace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return elist;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2014-03-05 13:57:14 +00:00
|
|
|
EdgePtr Triangulation::splitTriangle(EdgePtr& edge, const NodePtr& point) {
|
2013-11-29 15:13:09 +00:00
|
|
|
|
|
|
|
// Add a node by just splitting a triangle into three triangles
|
|
|
|
// Assumes the half edge is located in the triangle
|
|
|
|
// Returns a half edge with source node as the new node
|
|
|
|
|
|
|
|
// double x, y, z;
|
|
|
|
// x = point.x();
|
|
|
|
// y = point.y();
|
|
|
|
// z = point.z();
|
|
|
|
|
|
|
|
// e#_n are new edges
|
|
|
|
// e# are existing edges
|
|
|
|
// e#_n and e##_n are new twin edges
|
|
|
|
// e##_n are edges incident to the new node
|
|
|
|
|
|
|
|
// Add the node to the structure
|
|
|
|
//NodePtr new_node(new Node(x,y,z));
|
|
|
|
|
2014-02-05 13:51:19 +00:00
|
|
|
NodePtr n1(edge->getSourceNode());
|
|
|
|
EdgePtr e1(edge);
|
2013-11-29 15:13:09 +00:00
|
|
|
|
2014-02-05 13:51:19 +00:00
|
|
|
EdgePtr e2(edge->getNextEdgeInFace());
|
|
|
|
NodePtr n2(e2->getSourceNode());
|
2013-11-29 15:13:09 +00:00
|
|
|
|
2014-02-05 13:51:19 +00:00
|
|
|
EdgePtr e3(e2->getNextEdgeInFace());
|
|
|
|
NodePtr n3(e3->getSourceNode());
|
2013-11-29 15:13:09 +00:00
|
|
|
|
2014-03-05 13:57:14 +00:00
|
|
|
EdgePtr e1_n = boost::make_shared<Edge>();
|
|
|
|
EdgePtr e11_n = boost::make_shared<Edge>();
|
|
|
|
EdgePtr e2_n = boost::make_shared<Edge>();
|
|
|
|
EdgePtr e22_n = boost::make_shared<Edge>();
|
|
|
|
EdgePtr e3_n = boost::make_shared<Edge>();
|
|
|
|
EdgePtr e33_n = boost::make_shared<Edge>();
|
2013-11-29 15:13:09 +00:00
|
|
|
|
|
|
|
e1_n->setSourceNode(n1);
|
|
|
|
e11_n->setSourceNode(point);
|
|
|
|
e2_n->setSourceNode(n2);
|
|
|
|
e22_n->setSourceNode(point);
|
|
|
|
e3_n->setSourceNode(n3);
|
|
|
|
e33_n->setSourceNode(point);
|
|
|
|
|
|
|
|
e1_n->setTwinEdge(e11_n);
|
|
|
|
e11_n->setTwinEdge(e1_n);
|
|
|
|
e2_n->setTwinEdge(e22_n);
|
|
|
|
e22_n->setTwinEdge(e2_n);
|
|
|
|
e3_n->setTwinEdge(e33_n);
|
|
|
|
e33_n->setTwinEdge(e3_n);
|
|
|
|
|
|
|
|
e1_n->setNextEdgeInFace(e33_n);
|
|
|
|
e2_n->setNextEdgeInFace(e11_n);
|
|
|
|
e3_n->setNextEdgeInFace(e22_n);
|
|
|
|
|
|
|
|
e11_n->setNextEdgeInFace(e1);
|
|
|
|
e22_n->setNextEdgeInFace(e2);
|
|
|
|
e33_n->setNextEdgeInFace(e3);
|
|
|
|
|
|
|
|
// and update old's next edge
|
|
|
|
e1->setNextEdgeInFace(e2_n);
|
|
|
|
e2->setNextEdgeInFace(e3_n);
|
|
|
|
e3->setNextEdgeInFace(e1_n);
|
|
|
|
|
|
|
|
// add the three new leading edges,
|
|
|
|
// Must remove the old leading edge from the list.
|
|
|
|
// Use the field telling if an edge is a leading edge
|
|
|
|
// NOTE: Must search in the list!!!
|
|
|
|
|
|
|
|
if (e1->isLeadingEdge())
|
2014-02-05 13:51:19 +00:00
|
|
|
removeLeadingEdgeFromList(e1);
|
2013-11-29 15:13:09 +00:00
|
|
|
else if (e2->isLeadingEdge())
|
2014-02-05 13:51:19 +00:00
|
|
|
removeLeadingEdgeFromList(e2);
|
2013-11-29 15:13:09 +00:00
|
|
|
else if(e3->isLeadingEdge())
|
2014-02-05 13:51:19 +00:00
|
|
|
removeLeadingEdgeFromList(e3);
|
2013-11-29 15:13:09 +00:00
|
|
|
else
|
2014-03-05 13:57:14 +00:00
|
|
|
assert( false ); // one of the edges should be leading
|
2013-11-29 15:13:09 +00:00
|
|
|
|
|
|
|
addLeadingEdge(e1_n);
|
|
|
|
addLeadingEdge(e2_n);
|
|
|
|
addLeadingEdge(e3_n);
|
|
|
|
|
|
|
|
// Return a half edge incident to the new node (with the new node as source node)
|
|
|
|
|
|
|
|
return e11_n;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void Triangulation::swapEdge(EdgePtr& diagonal) {
|
|
|
|
|
|
|
|
// Note that diagonal is both input and output and it is always
|
|
|
|
// kept in counterclockwise direction (this is not required by all
|
2014-01-27 10:42:47 +00:00
|
|
|
// functions in TriangulationHelper now)
|
2013-11-29 15:13:09 +00:00
|
|
|
|
|
|
|
// Swap by rotating counterclockwise
|
|
|
|
// Use the same objects - no deletion or new objects
|
2014-02-05 13:51:19 +00:00
|
|
|
EdgePtr eL(diagonal);
|
|
|
|
EdgePtr eR(eL->getTwinEdge());
|
|
|
|
EdgePtr eL_1(eL->getNextEdgeInFace());
|
|
|
|
EdgePtr eL_2(eL_1->getNextEdgeInFace());
|
|
|
|
EdgePtr eR_1(eR->getNextEdgeInFace());
|
|
|
|
EdgePtr eR_2(eR_1->getNextEdgeInFace());
|
2013-11-29 15:13:09 +00:00
|
|
|
|
|
|
|
// avoid node to be dereferenced to zero and deleted
|
2014-02-05 13:51:19 +00:00
|
|
|
NodePtr nR(eR_2->getSourceNode());
|
|
|
|
NodePtr nL(eL_2->getSourceNode());
|
2013-11-29 15:13:09 +00:00
|
|
|
|
|
|
|
eL->setSourceNode(nR);
|
|
|
|
eR->setSourceNode(nL);
|
|
|
|
|
|
|
|
// and now 6 1-sewings
|
|
|
|
eL->setNextEdgeInFace(eL_2);
|
|
|
|
eL_2->setNextEdgeInFace(eR_1);
|
|
|
|
eR_1->setNextEdgeInFace(eL);
|
|
|
|
|
|
|
|
eR->setNextEdgeInFace(eR_2);
|
|
|
|
eR_2->setNextEdgeInFace(eL_1);
|
|
|
|
eL_1->setNextEdgeInFace(eR);
|
|
|
|
|
|
|
|
if (eL->isLeadingEdge())
|
2014-02-05 13:51:19 +00:00
|
|
|
removeLeadingEdgeFromList(eL);
|
2013-11-29 15:13:09 +00:00
|
|
|
else if (eL_1->isLeadingEdge())
|
2014-02-05 13:51:19 +00:00
|
|
|
removeLeadingEdgeFromList(eL_1);
|
2013-11-29 15:13:09 +00:00
|
|
|
else if (eL_2->isLeadingEdge())
|
2014-02-05 13:51:19 +00:00
|
|
|
removeLeadingEdgeFromList(eL_2);
|
2013-11-29 15:13:09 +00:00
|
|
|
|
|
|
|
if (eR->isLeadingEdge())
|
2014-02-05 13:51:19 +00:00
|
|
|
removeLeadingEdgeFromList(eR);
|
2013-11-29 15:13:09 +00:00
|
|
|
else if (eR_1->isLeadingEdge())
|
2014-02-05 13:51:19 +00:00
|
|
|
removeLeadingEdgeFromList(eR_1);
|
2013-11-29 15:13:09 +00:00
|
|
|
else if (eR_2->isLeadingEdge())
|
2014-02-05 13:51:19 +00:00
|
|
|
removeLeadingEdgeFromList(eR_2);
|
2013-11-29 15:13:09 +00:00
|
|
|
|
|
|
|
addLeadingEdge(eL);
|
|
|
|
addLeadingEdge(eR);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
////--------------------------------------------------------------------------
|
|
|
|
//static void printEdge(const Dart& dart, ostream& ofile) {
|
|
|
|
//
|
|
|
|
// Dart d0 = dart;
|
|
|
|
// d0.alpha0();
|
|
|
|
//
|
|
|
|
// ofile << dart.x() << " " << dart.y() << endl;
|
|
|
|
// ofile << d0.x() << " " << d0.y() << endl;
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------
|
|
|
|
bool Triangulation::checkDelaunay() const {
|
|
|
|
|
|
|
|
// ???? outputs !!!!
|
|
|
|
// ofstream os("qweND.dat");
|
|
|
|
const list<EdgePtr>& leadingEdges = getLeadingEdges();
|
|
|
|
|
|
|
|
list<EdgePtr>::const_iterator it;
|
|
|
|
bool ok = true;
|
|
|
|
int noNotDelaunay = 0;
|
|
|
|
|
|
|
|
for (it = leadingEdges.begin(); it != leadingEdges.end(); ++it) {
|
|
|
|
EdgePtr edge = *it;
|
|
|
|
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
|
|
EdgePtr twinedge = edge->getTwinEdge();
|
|
|
|
|
|
|
|
// only one of the half-edges
|
|
|
|
if (!twinedge || (size_t)edge.get() > (size_t)twinedge.get()) {
|
|
|
|
Dart dart(edge);
|
2014-01-27 10:42:47 +00:00
|
|
|
if (helper->swapTestDelaunay<TTLtraits>(dart)) {
|
2013-11-29 15:13:09 +00:00
|
|
|
noNotDelaunay++;
|
|
|
|
|
|
|
|
//printEdge(dart,os); os << "\n";
|
|
|
|
ok = false;
|
|
|
|
//cout << "............. not Delaunay .... " << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
edge = edge->getNextEdgeInFace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG_HE
|
|
|
|
cout << "!!! Triangulation is NOT Delaunay: " << noNotDelaunay << " edges\n" << endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void Triangulation::optimizeDelaunay() {
|
|
|
|
|
|
|
|
// This function is also present in ttl where it is implemented
|
|
|
|
// generically.
|
|
|
|
// The implementation below is tailored for the half-edge data structure,
|
|
|
|
// and is thus more efficient
|
|
|
|
|
|
|
|
// Collect all interior edges (one half edge for each arc)
|
|
|
|
bool skip_boundary_edges = true;
|
|
|
|
list<EdgePtr>* elist = getEdges(skip_boundary_edges);
|
|
|
|
|
|
|
|
// Assumes that elist has only one half-edge for each arc.
|
|
|
|
bool cycling_check = true;
|
|
|
|
bool optimal = false;
|
|
|
|
list<EdgePtr>::const_iterator it;
|
|
|
|
while(!optimal) {
|
|
|
|
optimal = true;
|
|
|
|
for (it = elist->begin(); it != elist->end(); ++it) {
|
|
|
|
EdgePtr edge = *it;
|
|
|
|
|
|
|
|
Dart dart(edge);
|
|
|
|
// Constrained edges should not be swapped
|
2014-03-05 13:57:14 +00:00
|
|
|
if (helper->swapTestDelaunay<TTLtraits>(dart, cycling_check)) {
|
2013-11-29 15:13:09 +00:00
|
|
|
optimal = false;
|
|
|
|
swapEdge(edge);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete elist;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
EdgePtr Triangulation::getInteriorNode() const {
|
|
|
|
|
|
|
|
const list<EdgePtr>& leadingEdges = getLeadingEdges();
|
|
|
|
list<EdgePtr>::const_iterator it;
|
|
|
|
for (it = leadingEdges.begin(); it != leadingEdges.end(); ++it) {
|
|
|
|
EdgePtr edge = *it;
|
|
|
|
|
|
|
|
// multiple checks, but only until found
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
|
|
if (edge->getTwinEdge()) {
|
|
|
|
|
2014-01-27 10:42:47 +00:00
|
|
|
if (!helper->isBoundaryNode(Dart(edge)))
|
2013-11-29 15:13:09 +00:00
|
|
|
return edge;
|
|
|
|
}
|
|
|
|
edge = edge->getNextEdgeInFace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return EdgePtr(); // no boundary nodes
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2014-01-27 10:42:47 +00:00
|
|
|
EdgePtr Triangulation::getBoundaryEdgeInTriangle(const EdgePtr& e) const {
|
2013-11-29 15:13:09 +00:00
|
|
|
EdgePtr edge = e;
|
|
|
|
|
2014-01-27 10:42:47 +00:00
|
|
|
if (helper->isBoundaryEdge(Dart(edge)))
|
2013-11-29 15:13:09 +00:00
|
|
|
return edge;
|
|
|
|
|
|
|
|
edge = edge->getNextEdgeInFace();
|
2014-01-27 10:42:47 +00:00
|
|
|
if (helper->isBoundaryEdge(Dart(edge)))
|
2013-11-29 15:13:09 +00:00
|
|
|
return edge;
|
|
|
|
|
|
|
|
edge = edge->getNextEdgeInFace();
|
2014-01-27 10:42:47 +00:00
|
|
|
if (helper->isBoundaryEdge(Dart(edge)))
|
2013-11-29 15:13:09 +00:00
|
|
|
return edge;
|
|
|
|
|
|
|
|
return EdgePtr();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
EdgePtr Triangulation::getBoundaryEdge() const {
|
|
|
|
|
|
|
|
// Get an arbitrary (CCW) boundary edge
|
|
|
|
// If the triangulation is closed, NULL is returned
|
|
|
|
|
|
|
|
const list<EdgePtr>& leadingEdges = getLeadingEdges();
|
|
|
|
list<EdgePtr>::const_iterator it;
|
|
|
|
EdgePtr edge;
|
|
|
|
|
|
|
|
for (it = leadingEdges.begin(); it != leadingEdges.end(); ++it) {
|
|
|
|
edge = getBoundaryEdgeInTriangle(*it);
|
|
|
|
|
|
|
|
if (edge)
|
|
|
|
return edge;
|
|
|
|
}
|
|
|
|
return EdgePtr();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void Triangulation::printEdges(ofstream& os) const {
|
|
|
|
|
|
|
|
// Print source node and target node for each edge face by face,
|
|
|
|
// but only one of the half-edges.
|
|
|
|
|
|
|
|
const list<EdgePtr>& leadingEdges = getLeadingEdges();
|
|
|
|
list<EdgePtr>::const_iterator it;
|
|
|
|
for (it = leadingEdges.begin(); it != leadingEdges.end(); ++it) {
|
|
|
|
EdgePtr edge = *it;
|
|
|
|
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
|
|
EdgePtr twinedge = edge->getTwinEdge();
|
|
|
|
|
|
|
|
// Print only one edge (the highest value of the pointer)
|
|
|
|
if (!twinedge || (size_t)edge.get() > (size_t)twinedge.get()) {
|
|
|
|
// Print source node and target node
|
|
|
|
NodePtr node = edge->getSourceNode();
|
|
|
|
os << node->GetX() << " " << node->GetY() << endl;
|
|
|
|
node = edge->getTargetNode();
|
|
|
|
os << node->GetX() << " " << node->GetY() << endl;
|
|
|
|
os << '\n'; // blank line
|
|
|
|
}
|
|
|
|
edge = edge->getNextEdgeInFace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|