From 9c8b47486df10ff859f5d73c7f221bc0cce5b697 Mon Sep 17 00:00:00 2001 From: Jan Niklas Hasse Date: Tue, 11 Sep 2018 12:53:31 +0200 Subject: [PATCH] Update project URL and copyright year --- LICENSE | 4 ++-- poly2tri/common/shapes.cc | 4 ++-- poly2tri/common/shapes.h | 4 ++-- poly2tri/common/utils.h | 4 ++-- poly2tri/poly2tri.h | 6 +++--- poly2tri/sweep/advancing_front.cc | 4 ++-- poly2tri/sweep/advancing_front.h | 6 +++--- poly2tri/sweep/cdt.cc | 6 +++--- poly2tri/sweep/cdt.h | 6 +++--- poly2tri/sweep/sweep.cc | 4 ++-- poly2tri/sweep/sweep.h | 6 +++--- poly2tri/sweep/sweep_context.cc | 4 ++-- poly2tri/sweep/sweep_context.h | 4 ++-- testbed/main.cc | 4 ++-- 14 files changed, 33 insertions(+), 33 deletions(-) diff --git a/LICENSE b/LICENSE index 9417c08..6645a87 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ -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. Redistribution and use in source and binary forms, with or without modification, diff --git a/poly2tri/common/shapes.cc b/poly2tri/common/shapes.cc index 163328e..fe99a8d 100644 --- a/poly2tri/common/shapes.cc +++ b/poly2tri/common/shapes.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. * diff --git a/poly2tri/common/shapes.h b/poly2tri/common/shapes.h index 0408f86..7f0b1e7 100644 --- a/poly2tri/common/shapes.h +++ b/poly2tri/common/shapes.h @@ -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. * diff --git a/poly2tri/common/utils.h b/poly2tri/common/utils.h index 4df2d29..f71334c 100644 --- a/poly2tri/common/utils.h +++ b/poly2tri/common/utils.h @@ -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. * diff --git a/poly2tri/poly2tri.h b/poly2tri/poly2tri.h index 29a08d0..c959d13 100644 --- a/poly2tri/poly2tri.h +++ b/poly2tri/poly2tri.h @@ -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. * @@ -35,4 +35,4 @@ #include "common/shapes.h" #include "sweep/cdt.h" -#endif \ No newline at end of file +#endif diff --git a/poly2tri/sweep/advancing_front.cc b/poly2tri/sweep/advancing_front.cc index 37e832d..66e2a5d 100644 --- a/poly2tri/sweep/advancing_front.cc +++ b/poly2tri/sweep/advancing_front.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. * diff --git a/poly2tri/sweep/advancing_front.h b/poly2tri/sweep/advancing_front.h index 645dcec..3de0708 100644 --- a/poly2tri/sweep/advancing_front.h +++ b/poly2tri/sweep/advancing_front.h @@ -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. * @@ -115,4 +115,4 @@ inline void AdvancingFront::set_search(Node* node) } -#endif \ No newline at end of file +#endif diff --git a/poly2tri/sweep/cdt.cc b/poly2tri/sweep/cdt.cc index 09d088a..8496aa1 100644 --- a/poly2tri/sweep/cdt.cc +++ b/poly2tri/sweep/cdt.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. * @@ -68,4 +68,4 @@ CDT::~CDT() delete sweep_; } -} \ No newline at end of file +} diff --git a/poly2tri/sweep/cdt.h b/poly2tri/sweep/cdt.h index ea3286d..efeeda3 100644 --- a/poly2tri/sweep/cdt.h +++ b/poly2tri/sweep/cdt.h @@ -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. * @@ -102,4 +102,4 @@ public: } -#endif \ No newline at end of file +#endif diff --git a/poly2tri/sweep/sweep.cc b/poly2tri/sweep/sweep.cc index 21f76ce..45aa1db 100644 --- a/poly2tri/sweep/sweep.cc +++ b/poly2tri/sweep/sweep.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. * diff --git a/poly2tri/sweep/sweep.h b/poly2tri/sweep/sweep.h index 33e34a7..ccf4ef7 100644 --- a/poly2tri/sweep/sweep.h +++ b/poly2tri/sweep/sweep.h @@ -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. * @@ -282,4 +282,4 @@ private: } -#endif \ No newline at end of file +#endif diff --git a/poly2tri/sweep/sweep_context.cc b/poly2tri/sweep/sweep_context.cc index 4c490a6..b5c3d5a 100644 --- a/poly2tri/sweep/sweep_context.cc +++ b/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. * diff --git a/poly2tri/sweep/sweep_context.h b/poly2tri/sweep/sweep_context.h index 8ea2b77..b6bc1cd 100644 --- a/poly2tri/sweep/sweep_context.h +++ b/poly2tri/sweep/sweep_context.h @@ -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. * diff --git a/testbed/main.cc b/testbed/main.cc index 59f5806..b18d89a 100644 --- a/testbed/main.cc +++ b/testbed/main.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. *