Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/poly2tri/sweep/sweep_context.cc')
-rw-r--r--src/poly2tri/sweep/sweep_context.cc11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/poly2tri/sweep/sweep_context.cc b/src/poly2tri/sweep/sweep_context.cc
index a9f1fdf8e..4a220dc82 100644
--- a/src/poly2tri/sweep/sweep_context.cc
+++ b/src/poly2tri/sweep/sweep_context.cc
@@ -1,6 +1,6 @@
/*
- * Poly2Tri Copyright (c) 2009-2010, Poly2Tri Contributors
- * http://code.google.com/p/poly2tri/
+ * Poly2Tri Copyright (c) 2009-2018, Poly2Tri Contributors
+ * https://github.com/jhasse/poly2tri
*
* All rights reserved.
*
@@ -120,10 +120,9 @@ Node& SweepContext::LocateNode(const Point& point)
return *front_->LocateNode(point.x);
}
-void SweepContext::CreateAdvancingFront(const std::vector<Node*>& nodes)
+void SweepContext::CreateAdvancingFront()
{
- (void) nodes;
// Initial triangle
Triangle* triangle = new Triangle(*points_[0], *tail_, *head_);
@@ -169,8 +168,8 @@ void SweepContext::MeshClean(Triangle& triangle)
triangles.push_back(&triangle);
while(!triangles.empty()){
- Triangle *t = triangles.back();
- triangles.pop_back();
+ Triangle *t = triangles.back();
+ triangles.pop_back();
if (t != NULL && !t->IsInterior()) {
t->IsInterior(true);