contrek 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/LICENSE.md +13 -5
  4. data/contrek.gemspec +1 -1
  5. data/ext/cpp_polygon_finder/PolygonFinder/src/ContrekApi.h +4 -3
  6. data/ext/cpp_polygon_finder/PolygonFinder/src/Tests.cpp +4 -3
  7. data/ext/cpp_polygon_finder/PolygonFinder/src/Tests.h +4 -3
  8. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/CpuTimer.h +4 -3
  9. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/bitmaps/Bitmap.cpp +4 -3
  10. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/bitmaps/Bitmap.h +4 -3
  11. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/bitmaps/FastPngBitmap.cpp +4 -3
  12. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/bitmaps/FastPngBitmap.h +4 -3
  13. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/bitmaps/RemoteFastPngBitmap.cpp +4 -3
  14. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/bitmaps/RemoteFastPngBitmap.h +4 -3
  15. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/FinderUtils.cpp +4 -3
  16. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/FinderUtils.h +4 -3
  17. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/List.cpp +4 -3
  18. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/List.h +4 -3
  19. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/Lists.cpp +4 -3
  20. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/Lists.h +4 -3
  21. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/Node.cpp +4 -3
  22. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/Node.h +4 -3
  23. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/NodeCluster.cpp +4 -3
  24. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/NodeCluster.h +4 -3
  25. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/Polygon.h +4 -3
  26. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/PolygonFinder.cpp +4 -3
  27. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/PolygonFinder.h +4 -3
  28. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/RectBounds.h +4 -3
  29. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/ClippedPolygonFinder.cpp +4 -3
  30. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/ClippedPolygonFinder.h +4 -3
  31. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Cluster.cpp +4 -3
  32. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Cluster.h +4 -3
  33. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Cursor.cpp +4 -3
  34. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Cursor.h +4 -3
  35. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/EndPoint.cpp +4 -3
  36. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/EndPoint.h +4 -3
  37. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/FakeCluster.cpp +4 -3
  38. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/FakeCluster.h +4 -3
  39. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Finder.cpp +4 -3
  40. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Finder.h +4 -3
  41. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Hub.cpp +4 -3
  42. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Hub.h +4 -3
  43. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Part.cpp +4 -3
  44. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Part.h +4 -3
  45. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/PartPool.cpp +4 -3
  46. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/PartPool.h +4 -3
  47. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Partitionable.cpp +4 -3
  48. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Partitionable.h +4 -3
  49. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Polyline.cpp +4 -3
  50. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Polyline.h +4 -3
  51. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Poolable.cpp +4 -3
  52. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Poolable.h +4 -3
  53. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Position.cpp +4 -3
  54. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Position.h +4 -3
  55. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Queue.h +4 -3
  56. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Queueable.h +4 -3
  57. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Sequence.cpp +4 -3
  58. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Sequence.h +4 -3
  59. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Shape.cpp +4 -3
  60. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Shape.h +4 -3
  61. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Tile.cpp +4 -3
  62. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/finder/concurrent/Tile.h +4 -3
  63. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/matchers/Matcher.cpp +4 -3
  64. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/matchers/Matcher.h +4 -3
  65. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/matchers/RGBMatcher.cpp +4 -3
  66. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/matchers/RGBMatcher.h +4 -3
  67. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/matchers/RGBNotMatcher.cpp +4 -3
  68. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/matchers/RGBNotMatcher.h +4 -3
  69. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/matchers/ValueNotMatcher.cpp +4 -3
  70. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/matchers/ValueNotMatcher.h +4 -3
  71. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/reducers/LinearReducer.cpp +4 -3
  72. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/reducers/LinearReducer.h +4 -3
  73. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/reducers/Reducer.cpp +4 -3
  74. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/reducers/Reducer.h +4 -3
  75. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/reducers/UniqReducer.cpp +4 -3
  76. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/reducers/UniqReducer.h +4 -3
  77. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/reducers/VisvalingamReducer.cpp +4 -3
  78. data/ext/cpp_polygon_finder/PolygonFinder/src/polygon/reducers/VisvalingamReducer.h +4 -3
  79. data/lib/contrek/version.rb +1 -1
  80. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9b151e03e5b3a03f0dd687118088b1905a3b7c0475a6385dd54ca9b453b7342f
4
- data.tar.gz: 5c76e58de3bc95eaead188a3606d11d14eb282ce0ac1c526eb8f401bd3413492
3
+ metadata.gz: 8abb44d773af1b51fdc2221f9e50ff2afb46d6bc4bd42b71eaa9700da1ac9577
4
+ data.tar.gz: 1b71d411f6bc37881eb1c39c6b4ccbe893406beffb94075e1f79c2ff1efe38ed
5
5
  SHA512:
6
- metadata.gz: 0fd1703f426106b640018efef5e13cbe9ac2835acb8d09cc61381a4dbfbc73d1cd8854c5dd8bd7e8e04ce10043f0843e6f5c32f2036455d58b1fa62dfeb58deb
7
- data.tar.gz: 51d16f7f65ef70a0d37cdbc8d795200087ab3b732726da8bceecad3bcce5ac73e7164b500d8d0557539a55ec981164a4e1577768c47a0f7b54f7686d73dca2ac
6
+ metadata.gz: 34caa00be7af90a31e9aad3b8f345cff66a55cd8ccc876aa45b5fa8f4893ef004d446abd41b18f8905124a4ceecf08cdaf2d3e7c5446d8d1dbcc1b07b0483b81
7
+ data.tar.gz: c029a220fdafe602153d31ec9962313449b706e55e99b483e1b8cabc20037438938768ebba39c1bb22b081ffd53296eb831da677949de3f5406948c699a8752d
data/CHANGELOG.md CHANGED
@@ -44,3 +44,7 @@ All notable changes to this project will be documented in this file.
44
44
  ## [1.1.1] - 2026-02-09
45
45
  ### Changes
46
46
  - Removed forgotten png++ dependency in Rice bridge file.
47
+
48
+ ## [1.1.2] - 2026-02-09
49
+ ### Changed
50
+ - Transitioned to an Open Core licensing model: Ruby Gem (MIT) and C++ Core Engine (AGPLv3).
data/LICENSE.md CHANGED
@@ -1,9 +1,17 @@
1
- The MIT License
1
+ # Licensing Information
2
2
 
3
- Copyright 2018 -- 2025 by Emanuele Cesaroni.
3
+ Contrek is distributed under a dual-license model:
4
4
 
5
- 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:
5
+ ### 1. Ruby Gem & Infrastructure
6
+ The Ruby code, wrappers, and gem packaging are licensed under the **MIT License**.
7
+ You are free to use, modify, and distribute this part of the project in any application, including commercial ones, with minimal restrictions.
6
8
 
7
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
9
+ ### 2. C++ Core Engine (ext/cpp_polygon_finder/PolygonFinder)
10
+ The standalone C++17 engine, which contains the high-performance tile-based loading and contour tracking logic, is licensed under the **GNU Affero General Public License v3 (AGPLv3)**.
8
11
 
9
- 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.
12
+ **What this means for you:**
13
+ - **Reciprocity:** If you modify the C++ core engine to improve performance or features, you must share those modifications under the same AGPLv3 license.
14
+ - **Network Services (SaaS):** If you run a public service that leverages the C++ core engine, you must make the source code of your version of the core available to the users of that service.
15
+ - **Commercial Use:** If your organization cannot comply with the AGPLv3 for the C++ core, please contact the author for a private commercial license.
16
+
17
+ For the full license texts, see [LICENSE-MIT](LICENSE-MIT.md) and [LICENSE_AGPL](ext/cpp_polygon_finder/PolygonFinder/LICENSE_AGPL.txt).
data/contrek.gemspec CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
9
9
  s.authors = ["Emanuele Cesaroni"]
10
10
  s.email = "cesaroni.emanuele77@gmail.com"
11
11
  s.homepage = "https://github.com/runout77/contrek"
12
- s.license = "MIT"
12
+ s.licenses = ["MIT", "AGPL-3.0-only"]
13
13
  s.files = Dir.chdir(File.expand_path("..", __FILE__)) do
14
14
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(pkg|spec)/}) }
15
15
  end
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * ContrekApi.h
3
3
  *
4
- * Created on: 25 gen 2026
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Tests.cpp
3
3
  *
4
- * Created on: 16 feb 2021
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #include "Tests.h"
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Tests.h
3
3
  *
4
- * Created on: 16 feb 2021
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * CpuTimer.h
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Bitmap.cpp
3
3
  *
4
- * Created on: 25 nov 2018
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #include "Bitmap.h"
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Bitmap.h
3
3
  *
4
- * Created on: 25 nov 2018
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * FastPngBitmap.cpp
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #include <iostream>
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * FastPngBitmap.h
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * RemoteFastPngBitmap.cpp
3
3
  *
4
- * Created on: 01 mag 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #include "RemoteFastPngBitmap.h"
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * RemoteFastPngBitmap.h
3
3
  *
4
- * Created on: 01 mag 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * FinderUtils.cpp
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #include <iostream>
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * FinderUtils.h
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * List.cpp
3
3
  *
4
- * Created on: 08 gen 2019
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #include "List.h"
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * List.h
3
3
  *
4
- * Created on: 08 gen 2019
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Lists.cpp
3
3
  *
4
- * Created on: 08 gen 2019
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #include "Lists.h"
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Lists.h
3
3
  *
4
- * Created on: 08 gen 2019
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Node.cpp
3
3
  *
4
- * Created on: 26 nov 2018
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #include <string.h>
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Node.h
3
3
  *
4
- * Created on: 26 nov 2018
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * NodeCluster.cpp
3
3
  *
4
- * Created on: 26 nov 2018
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #include <iostream>
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * NodeCluster.h
3
3
  *
4
- * Created on: 26 nov 2018
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Polygon.h
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * PolygonFinder.cpp
3
3
  *
4
- * Created on: 24 nov 2018
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #include <iostream>
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * PolygonFinder.h
3
3
  *
4
- * Created on: 24 nov 2018
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * RectBounds.h
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * ClippedPolygonFinder.cpp
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
  #include <string>
9
10
  #include <vector>
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * ClippedPolygonFinder.h
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Cluster.cpp
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #include <vector>
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Cluster.h
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Cursor.cpp
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
  #include <algorithm>
9
10
  #include <vector>
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Cursor.h
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * EndPoint.cpp
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #include "EndPoint.h"
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * EndPoint.h
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * FakeCluster.cpp
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #include "FakeCluster.h"
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * FakeCluster.h
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Finder.cpp
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #include <utility>
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Finder.h
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Hub.cpp
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #include "Hub.h"
@@ -1,9 +1,10 @@
1
1
  /*
2
2
  * Hub.h
3
3
  *
4
- * Created on: 23 nov 2025
5
- * Author: ema
6
- * Copyright 2025 Emanuele Cesaroni
4
+ * Copyright (c) 2025-2026 Emanuele Cesaroni
5
+ *
6
+ * Licensed under the GNU Affero General Public License v3 (AGPLv3).
7
+ * See the LICENSE file in this directory for the full license text.
7
8
  */
8
9
 
9
10
  #pragma once