poly2tri/poly2tri/sweep/advancing_front.h

116 lines
2.8 KiB
C
Raw Normal View History

2010-04-25 18:40:54 +02:00
/*
2018-09-11 12:53:31 +02:00
* Poly2Tri Copyright (c) 2009-2018, Poly2Tri Contributors
* https://github.com/jhasse/poly2tri
2010-01-17 17:41:09 +01:00
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* * Neither the name of Poly2Tri nor the names of its contributors may be
* used to endorse or promote products derived from this software without specific
* prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
2010-04-25 18:40:54 +02:00
2022-05-08 19:26:22 +02:00
#pragma once
2010-02-08 00:00:21 +01:00
2010-01-17 17:41:09 +01:00
#include "../common/shapes.h"
2010-01-23 01:50:35 +01:00
namespace p2t {
2010-01-17 17:41:09 +01:00
struct Node;
// Advancing front node
struct Node {
Point* point;
Triangle* triangle;
2010-01-21 15:00:09 +01:00
2010-01-17 17:41:09 +01:00
Node* next;
Node* prev;
2010-01-21 15:00:09 +01:00
2010-01-17 17:41:09 +01:00
double value;
2011-06-04 20:57:00 +02:00
Node(Point& p) : point(&p), triangle(NULL), next(NULL), prev(NULL), value(p.x)
2010-01-21 15:00:09 +01:00
{
2010-01-17 17:41:09 +01:00
}
2010-01-21 15:00:09 +01:00
2011-06-04 20:57:00 +02:00
Node(Point& p, Triangle& t) : point(&p), triangle(&t), next(NULL), prev(NULL), value(p.x)
2010-01-21 15:00:09 +01:00
{
}
2010-01-17 17:41:09 +01:00
};
// Advancing front
class AdvancingFront {
public:
2010-01-21 17:20:56 +01:00
AdvancingFront(Node& head, Node& tail);
2010-01-21 15:00:09 +01:00
// Destructor
~AdvancingFront();
Node* head();
void set_head(Node* node);
Node* tail();
void set_tail(Node* node);
Node* search();
void set_search(Node* node);
/// Locate insertion point along advancing front
2014-01-22 03:01:45 +01:00
Node* LocateNode(double x);
2010-01-21 15:00:09 +01:00
2010-01-21 17:20:56 +01:00
Node* LocatePoint(const Point* point);
2010-01-21 15:00:09 +01:00
2010-01-17 17:41:09 +01:00
private:
2010-01-21 15:00:09 +01:00
Node* head_, *tail_, *search_node_;
2014-01-22 03:01:45 +01:00
Node* FindSearchNode(double x);
2010-01-17 17:41:09 +01:00
};
2010-01-21 15:00:09 +01:00
inline Node* AdvancingFront::head()
{
return head_;
}
inline void AdvancingFront::set_head(Node* node)
{
head_ = node;
}
2010-01-17 17:41:09 +01:00
2010-01-21 15:00:09 +01:00
inline Node* AdvancingFront::tail()
{
return tail_;
}
inline void AdvancingFront::set_tail(Node* node)
{
tail_ = node;
}
2010-01-17 17:41:09 +01:00
2010-01-21 15:00:09 +01:00
inline Node* AdvancingFront::search()
{
return search_node_;
}
2010-01-17 17:41:09 +01:00
2010-01-21 15:00:09 +01:00
inline void AdvancingFront::set_search(Node* node)
{
search_node_ = node;
}
2010-01-17 17:41:09 +01:00
2010-01-23 01:50:35 +01:00
}