neroued-vectorizer 0.1.0__tar.gz
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.
- neroued_vectorizer-0.1.0/.clang-format +55 -0
- neroued_vectorizer-0.1.0/.clangd +3 -0
- neroued_vectorizer-0.1.0/.cursor/rules/code-structure.mdc +25 -0
- neroued_vectorizer-0.1.0/.cursor/rules/cpp-formatting.mdc +17 -0
- neroued_vectorizer-0.1.0/.cursor/rules/cross-platform-cpp.mdc +27 -0
- neroued_vectorizer-0.1.0/.cursor/rules/git-policy.mdc +11 -0
- neroued_vectorizer-0.1.0/.cursor/rules/sync-docs.mdc +15 -0
- neroued_vectorizer-0.1.0/.github/workflows/ci.yml +78 -0
- neroued_vectorizer-0.1.0/.github/workflows/wheels.yml +82 -0
- neroued_vectorizer-0.1.0/.gitignore +46 -0
- neroued_vectorizer-0.1.0/.gitmodules +6 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/BenchMark/CMakeLists.txt +80 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/BenchMark/GetIntersectPtBenchmark.cpp +579 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/BenchMark/PointInPolygonBenchmark.cpp +524 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/BenchMark/README.md +6 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/BenchMark/StripDuplicateBenchmark.cpp +73 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/CMakeLists.txt +377 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Clipper2.pc.cmakein +12 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Clipper2Config.cmake.in +6 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Clipper2Lib/include/clipper2/clipper.core.h +1159 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Clipper2Lib/include/clipper2/clipper.engine.h +635 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Clipper2Lib/include/clipper2/clipper.export.h +851 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Clipper2Lib/include/clipper2/clipper.h +796 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Clipper2Lib/include/clipper2/clipper.minkowski.h +117 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Clipper2Lib/include/clipper2/clipper.offset.h +125 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Clipper2Lib/include/clipper2/clipper.rectclip.h +80 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Clipper2Lib/include/clipper2/clipper.triangulation.h +27 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Clipper2Lib/include/clipper2/clipper.version.h +6 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Clipper2Lib/src/clipper.engine.cpp +3163 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Clipper2Lib/src/clipper.offset.cpp +661 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Clipper2Lib/src/clipper.rectclip.cpp +1027 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Clipper2Lib/src/clipper.triangulation.cpp +1219 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Benchmarks/Benchmarks.cpp +133 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Inflate/Inflate.cpp +140 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Inflate/rabbit.svg +11 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/MemLeakTest/MemLeakTest.cpp +80 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/PolygonSamples/PolygonSamples.cpp +102 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/RandomClipping/RandomClipping.cpp +153 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/RectClipping/RectClipping.cpp +215 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/SimpleClipping/SimpleClipping.cpp +36 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test1.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test10.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test11.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test12.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test13.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test14.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test15.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test16.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test17.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test18.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test19.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test2.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test20.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test21.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test22.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test23.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test24.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test25.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test26.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test27.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test28.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test29.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test3.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test30.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test31.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test32.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test33.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test34.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test35.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test36.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test37.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test38.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test39.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test4.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test40.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test41.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test42.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test43.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test44.svg +6 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test45.svg +6 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test46.svg +3 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test47.svg +5 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test48.svg +5 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test49.svg +6 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test5.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test50.svg +6 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test51.svg +6 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test52.svg +6 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test6.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test7.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test8.svg +5 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/Test9.svg +9 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/clipper2.svg +4 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/TriSamples/coral3.svg +11 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/Triangulation/Triangulation.cpp +174 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/UnionClipping/UnionClipping.cpp +168 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/UsingZ/UsingZ.cpp +112 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Examples/VariableOffset/VariableOffset.cpp +161 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/GoogleTest in Visual Studio.txt +13 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Tests/TestExportHeaders.cpp +203 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Tests/TestIsCollinear.cpp +53 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Tests/TestLines.cpp +55 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Tests/TestOffsetOrientation.cpp +29 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Tests/TestOffsets.cpp +700 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Tests/TestOrientation.cpp +16 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Tests/TestPolygons.cpp +125 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Tests/TestPolytreeHoles.cpp +319 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Tests/TestPolytreeIntersection.cpp +24 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Tests/TestPolytreeUnion.cpp +79 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Tests/TestRandomPaths.cpp +83 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Tests/TestRect.cpp +62 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Tests/TestRectClip.cpp +76 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Tests/TestSimplifyPath.cpp +11 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Tests/TestTrimCollinear.cpp +27 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Tests/TestWindows.cpp +5 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Utils/ClipFileLoad.cpp +121 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Utils/ClipFileLoad.h +37 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Utils/ClipFileSave.cpp +326 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Utils/ClipFileSave.h +18 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Utils/Colors.h +56 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Utils/CommonUtils.h +38 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Utils/Timer.h +98 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Utils/clipper.svg.cpp +399 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Utils/clipper.svg.h +120 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/Utils/clipper.svg.utils.h +163 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CPP/clipper.version.in +6 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Benchmark/Benchmark.csproj +22 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Benchmark/Benchmarks.cs +103 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Benchmark/Program.cs +16 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Clipper2Lib/Clipper.Core.cs +889 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Clipper2Lib/Clipper.Engine.cs +3668 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Clipper2Lib/Clipper.Minkowski.cs +94 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Clipper2Lib/Clipper.Offset.cs +754 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Clipper2Lib/Clipper.RectClip.cs +1072 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Clipper2Lib/Clipper.Triangulation.cs +1170 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Clipper2Lib/Clipper.cs +1267 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Clipper2Lib/Clipper2.snk +0 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Clipper2Lib/Clipper2Lib.csproj +70 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Clipper2Lib/HashCode.cs +130 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Clipper2Lib/PooledList.cs +316 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Clipper2Lib.sln +79 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/ConsoleDemo/Clipper2.ico +0 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/ConsoleDemo/ConsoleDemo.csproj +36 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/ConsoleDemo/ConsoleDemo.sln +48 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/ConsoleDemo/Main.cs +154 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/InflateDemo/Clipper2.ico +0 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/InflateDemo/InflateDemo.csproj +37 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/InflateDemo/InflateDemo.sln +42 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/InflateDemo/Main.cs +121 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/InflateDemo/rabbit.svg +10 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/RectClip/Clipper2.ico +0 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/RectClip/Main.cs +132 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/RectClip/RectClipDemo.csproj +49 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/RectClip/RectClipDemo.sln +42 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/Triangulation/Clipper2.ico +0 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/Triangulation/Main.cs +123 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/Triangulation/TriangulationDemo.csproj +36 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/Triangulation/TriangulationDemo.sln +48 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/USINGZ/Program.cs +91 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/USINGZ/UsingZ_App.csproj +27 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Examples/USINGZ/UsingZ_App.sln +31 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/NuGet/License.txt +23 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/NuGet/README.md +17 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/NuGet/icon.png +0 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Tests/Tests1/Tests/TestLines.cs +47 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Tests/Tests1/Tests/TestOffset.cs +19 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Tests/Tests1/Tests/TestPolygons.cs +87 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Tests/Tests1/Tests/TestPolytree.cs +184 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Tests/Tests1/Tests1.csproj +31 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Tests/Tests1/Tests1.sln +41 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Tests/Tests2/Tests/TestZCallback1.cs +158 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Tests/Tests2/TestsZ.csproj +31 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Tests/Tests2/TestsZ.sln +51 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/USINGZ/Clipper2Lib_Z.csproj +28 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Utils/ClipFileIO/Clipper.FileIO.cs +287 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Utils/ClipFileIO/Clipper.FileIO.csproj +15 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Utils/SVG/Clipper.SVG.Utils.cs +127 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Utils/SVG/Clipper.SVG.cs +426 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/CSharp/Utils/SVG/Clipper2.SVG.csproj +14 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/CPP_DLL/Clipper2ZDll.vcxproj +188 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/CPP_DLL/Clipper2_DLL.sln +31 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/CPP_DLL/Clipper2_Dll.vcxproj +188 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/CPP_DLL/Clipper2_Z_DLL.sln +31 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/CPP_DLL/dllmain.cpp +21 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/CPP_DLL/framework.h +5 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/CPP_DLL/pch.cpp +5 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/CPP_DLL/pch.h +13 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/ReadMe.md +7 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/TEST_APPS/CSharp_TestApps/COPY Clipper2 DLLs HERE +0 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/TEST_APPS/CSharp_TestApps/CSharp_TestApp/CSharp_TestApp.csproj +20 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/TEST_APPS/CSharp_TestApps/CSharp_TestApp/CSharp_TestApp.sln +25 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/TEST_APPS/CSharp_TestApps/CSharp_TestApp/Program.cs +317 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/TEST_APPS/CSharp_TestApps/CSharp_TestApp2/CSharp_TestApp2.csproj +24 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/TEST_APPS/CSharp_TestApps/CSharp_TestApp2/CSharp_TestApp2.sln +49 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/TEST_APPS/CSharp_TestApps/CSharp_TestApp2/Program.cs +127 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/TEST_APPS/CSharp_TestApps/Clipper2Dll.Core.cs +398 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/TEST_APPS/CSharp_TestApps/Clipper2Dll.Svg.cs +493 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/TEST_APPS/Delphi_TestApps/COPY Clipper2 DLLs HERE +0 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/TEST_APPS/Delphi_TestApps/Clipper2Dll.Core.pas +338 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/TEST_APPS/Delphi_TestApps/Clipper2Dll.SVG.pas +859 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/DLL/TEST_APPS/Delphi_TestApps/TestApp1/Test1_DLL.dpr +195 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/BenchMark/DelphiBenchmark.dpr +79 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/BenchMark/DelphiBenchmark.dproj +141 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Clipper2Lib/Clipper.Core.pas +2657 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Clipper2Lib/Clipper.Engine.pas +4279 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Clipper2Lib/Clipper.Minkowski.pas +133 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Clipper2Lib/Clipper.Offset.pas +1012 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Clipper2Lib/Clipper.RectClip.pas +1247 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Clipper2Lib/Clipper.Triangulation.pas +1580 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Clipper2Lib/Clipper.inc +39 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Clipper2Lib/Clipper.pas +981 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Examples/Example1/Example1.dpr +83 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Examples/Example2/Example2.dpr +93 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Examples/Example2/rabbit.svg +11 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Examples/RectClip/RectClip_Demo.dpr +83 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Examples/Triangulation/ClipperTri.dpr +36 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Utils/ClipMisc.pas +282 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Utils/Clipper.SVG.pas +881 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Utils/Colors.pas +68 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Delphi/Utils/Timer.pas +57 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/LICENSE +23 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/README.md +94 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Tests/Lines.txt +162 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Tests/Offsets.txt +18 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Tests/Polygons.txt +1925 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Tests/PolytreeHoleOwner.txt +13 -0
- neroued_vectorizer-0.1.0/3rdparty/clipper2/Tests/PolytreeHoleOwner2.txt +3946 -0
- neroued_vectorizer-0.1.0/3rdparty/nanosvg/nanosvg.h +3132 -0
- neroued_vectorizer-0.1.0/3rdparty/nanosvg/nanosvg_impl.cpp +2 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/.clang-format +19 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/.clang-tidy +53 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/.git-blame-ignore-revs +6 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/.gitattributes +1 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/.github/workflows/ci.yml +79 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/.gitignore +98 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/CMakeLists.txt +359 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/INSTALL +27 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/LICENSE +26 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/README.md +517 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/appveyor.yml +89 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/bench/CMakeLists.txt +37 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/bench/async_bench.cpp +168 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/bench/bench.cpp +246 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/bench/formatter-bench.cpp +71 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/bench/latency.cpp +220 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/bench/utils.h +32 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/cmake/ide.cmake +18 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/cmake/pch.h.in +258 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/cmake/spdlog.pc.in +13 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/cmake/spdlogCPack.cmake +60 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/cmake/spdlogConfig.cmake.in +20 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/cmake/utils.cmake +62 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/cmake/version.rc.in +42 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/example/CMakeLists.txt +23 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/example/example.cpp +393 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/async.h +100 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/async_logger-inl.h +86 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/async_logger.h +74 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/cfg/argv.h +40 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/cfg/env.h +36 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/cfg/helpers-inl.h +107 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/cfg/helpers.h +29 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/common-inl.h +68 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/common.h +411 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/backtracer-inl.h +63 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/backtracer.h +45 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/circular_q.h +115 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/console_globals.h +28 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/file_helper-inl.h +152 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/file_helper.h +61 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/fmt_helper.h +141 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/log_msg-inl.h +44 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/log_msg.h +40 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/log_msg_buffer-inl.h +54 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/log_msg_buffer.h +32 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/mpmc_blocking_q.h +177 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/null_mutex.h +35 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/os-inl.h +594 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/os.h +123 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/periodic_worker-inl.h +26 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/periodic_worker.h +58 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/registry-inl.h +261 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/registry.h +129 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/synchronous_factory.h +22 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/tcp_client-windows.h +135 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/tcp_client.h +127 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/thread_pool-inl.h +132 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/thread_pool.h +128 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/udp_client-windows.h +98 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/udp_client.h +81 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/details/windows_include.h +11 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/bin_to_hex.h +224 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/bundled/args.h +235 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/bundled/chrono.h +2240 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/bundled/color.h +643 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/bundled/compile.h +535 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/bundled/core.h +2969 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/bundled/fmt.license.rst +27 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/bundled/format-inl.h +1678 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/bundled/format.h +4535 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/bundled/locale.h +2 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/bundled/os.h +455 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/bundled/ostream.h +245 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/bundled/printf.h +675 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/bundled/ranges.h +738 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/bundled/std.h +537 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/bundled/xchar.h +259 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/chrono.h +23 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/compile.h +23 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/fmt.h +30 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/ostr.h +23 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/ranges.h +23 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/std.h +24 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fmt/xchar.h +23 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/formatter.h +17 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/fwd.h +18 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/logger-inl.h +198 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/logger.h +379 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/mdc.h +46 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/pattern_formatter-inl.h +1324 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/pattern_formatter.h +118 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/android_sink.h +137 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/ansicolor_sink-inl.h +135 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/ansicolor_sink.h +115 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/base_sink-inl.h +59 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/base_sink.h +51 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/basic_file_sink-inl.h +42 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/basic_file_sink.h +65 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/callback_sink.h +56 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/daily_file_sink.h +252 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/dist_sink.h +81 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/dup_filter_sink.h +92 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/hourly_file_sink.h +191 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/kafka_sink.h +119 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/mongo_sink.h +108 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/msvc_sink.h +68 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/null_sink.h +41 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/ostream_sink.h +43 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/qt_sinks.h +304 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/ringbuffer_sink.h +67 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/rotating_file_sink-inl.h +144 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/rotating_file_sink.h +89 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/sink-inl.h +22 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/sink.h +34 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/stdout_color_sinks-inl.h +38 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/stdout_color_sinks.h +49 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/stdout_sinks-inl.h +126 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/stdout_sinks.h +84 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/syslog_sink.h +103 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/systemd_sink.h +121 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/tcp_sink.h +75 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/udp_sink.h +69 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/win_eventlog_sink.h +260 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/wincolor_sink-inl.h +163 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/sinks/wincolor_sink.h +82 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/spdlog-inl.h +92 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/spdlog.h +352 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/stopwatch.h +66 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/tweakme.h +141 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/include/spdlog/version.h +11 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/logos/jetbrains-variant-4.svg +43 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/logos/spdlog.png +0 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/scripts/ci_setup_clang.sh +12 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/scripts/extract_version.py +17 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/scripts/format.sh +19 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/src/async.cpp +11 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/src/bundled_fmtlib_format.cpp +46 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/src/cfg.cpp +8 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/src/color_sinks.cpp +55 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/src/file_sinks.cpp +20 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/src/spdlog.cpp +28 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/src/stdout_sinks.cpp +37 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/CMakeLists.txt +90 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/includes.h +37 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/main.cpp +10 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_async.cpp +244 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_backtrace.cpp +73 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_bin_to_hex.cpp +97 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_cfg.cpp +169 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_circular_q.cpp +50 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_create_dir.cpp +144 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_custom_callbacks.cpp +35 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_daily_logger.cpp +173 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_dup_filter.cpp +83 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_errors.cpp +112 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_eventlog.cpp +75 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_file_helper.cpp +169 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_file_logging.cpp +103 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_fmt_helper.cpp +82 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_macros.cpp +53 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_misc.cpp +169 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_mpmc_q.cpp +114 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_pattern_formatter.cpp +630 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_registry.cpp +112 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_sink.h +69 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_stdout_api.cpp +90 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_stopwatch.cpp +42 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_systemd.cpp +14 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/test_time_point.cpp +35 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/utils.cpp +103 -0
- neroued_vectorizer-0.1.0/3rdparty/spdlog/tests/utils.h +18 -0
- neroued_vectorizer-0.1.0/AGENTS.md +114 -0
- neroued_vectorizer-0.1.0/CMakeLists.txt +194 -0
- neroued_vectorizer-0.1.0/LICENSE +630 -0
- neroued_vectorizer-0.1.0/PKG-INFO +340 -0
- neroued_vectorizer-0.1.0/README.md +316 -0
- neroued_vectorizer-0.1.0/apps/CMakeLists.txt +9 -0
- neroued_vectorizer-0.1.0/apps/evaluate_svg.cpp +336 -0
- neroued_vectorizer-0.1.0/apps/raster_to_svg.cpp +391 -0
- neroued_vectorizer-0.1.0/ci/install-deps-linux.sh +66 -0
- neroued_vectorizer-0.1.0/ci/install-deps-macos.sh +8 -0
- neroued_vectorizer-0.1.0/ci/install-deps-windows.bat +15 -0
- neroued_vectorizer-0.1.0/docs/example.png +0 -0
- neroued_vectorizer-0.1.0/eval/CMakeLists.txt +30 -0
- neroued_vectorizer-0.1.0/eval/include/neroued/vectorizer/eval.h +225 -0
- neroued_vectorizer-0.1.0/eval/src/benchmark.cpp +404 -0
- neroued_vectorizer-0.1.0/eval/src/benchmark.h +11 -0
- neroued_vectorizer-0.1.0/eval/src/edge_metrics.cpp +77 -0
- neroued_vectorizer-0.1.0/eval/src/edge_metrics.h +21 -0
- neroued_vectorizer-0.1.0/eval/src/path_metrics.cpp +353 -0
- neroued_vectorizer-0.1.0/eval/src/path_metrics.h +32 -0
- neroued_vectorizer-0.1.0/eval/src/pixel_metrics.cpp +212 -0
- neroued_vectorizer-0.1.0/eval/src/pixel_metrics.h +29 -0
- neroued_vectorizer-0.1.0/eval/src/svg_geometry.cpp +107 -0
- neroued_vectorizer-0.1.0/eval/src/svg_geometry.h +20 -0
- neroued_vectorizer-0.1.0/eval/src/svg_rasterizer.cpp +138 -0
- neroued_vectorizer-0.1.0/eval/src/svg_rasterizer.h +19 -0
- neroued_vectorizer-0.1.0/eval/src/vectorize_eval.cpp +520 -0
- neroued_vectorizer-0.1.0/eval/tests/test_vectorize_eval.cpp +243 -0
- neroued_vectorizer-0.1.0/include/neroued/vectorizer/color.h +219 -0
- neroued_vectorizer-0.1.0/include/neroued/vectorizer/config.h +70 -0
- neroued_vectorizer-0.1.0/include/neroued/vectorizer/error.h +48 -0
- neroued_vectorizer-0.1.0/include/neroued/vectorizer/logging.h +17 -0
- neroued_vectorizer-0.1.0/include/neroued/vectorizer/result.h +23 -0
- neroued_vectorizer-0.1.0/include/neroued/vectorizer/vec2.h +46 -0
- neroued_vectorizer-0.1.0/include/neroued/vectorizer/vec3.h +90 -0
- neroued_vectorizer-0.1.0/include/neroued/vectorizer/vectorizer.h +41 -0
- neroued_vectorizer-0.1.0/pyproject.toml +66 -0
- neroued_vectorizer-0.1.0/python/bindings.cpp +162 -0
- neroued_vectorizer-0.1.0/python/neroued_vectorizer/__init__.py +24 -0
- neroued_vectorizer-0.1.0/python/neroued_vectorizer/_core.pyi +95 -0
- neroued_vectorizer-0.1.0/python/neroued_vectorizer/py.typed +0 -0
- neroued_vectorizer-0.1.0/python/tests/test_vectorize.py +176 -0
- neroued_vectorizer-0.1.0/src/boundary/aa_detector.cpp +130 -0
- neroued_vectorizer-0.1.0/src/boundary/aa_detector.h +39 -0
- neroued_vectorizer-0.1.0/src/boundary/boundary_graph.cpp +384 -0
- neroued_vectorizer-0.1.0/src/boundary/boundary_graph.h +42 -0
- neroued_vectorizer-0.1.0/src/boundary/subpixel_refine.cpp +281 -0
- neroued_vectorizer-0.1.0/src/boundary/subpixel_refine.h +39 -0
- neroued_vectorizer-0.1.0/src/contour/assembly.cpp +628 -0
- neroued_vectorizer-0.1.0/src/contour/assembly.h +45 -0
- neroued_vectorizer-0.1.0/src/contour/thin_line.cpp +167 -0
- neroued_vectorizer-0.1.0/src/contour/thin_line.h +25 -0
- neroued_vectorizer-0.1.0/src/curve/bezier.cpp +76 -0
- neroued_vectorizer-0.1.0/src/curve/bezier.h +52 -0
- neroued_vectorizer-0.1.0/src/curve/fitting.cpp +523 -0
- neroued_vectorizer-0.1.0/src/curve/fitting.h +52 -0
- neroued_vectorizer-0.1.0/src/detail/cv_utils.h +103 -0
- neroued_vectorizer-0.1.0/src/detail/icc_utils.cpp +315 -0
- neroued_vectorizer-0.1.0/src/detail/icc_utils.h +41 -0
- neroued_vectorizer-0.1.0/src/logging.cpp +36 -0
- neroued_vectorizer-0.1.0/src/output/shape_merge.cpp +83 -0
- neroued_vectorizer-0.1.0/src/output/shape_merge.h +40 -0
- neroued_vectorizer-0.1.0/src/output/svg_writer.cpp +202 -0
- neroued_vectorizer-0.1.0/src/output/svg_writer.h +44 -0
- neroued_vectorizer-0.1.0/src/pipeline.cpp +400 -0
- neroued_vectorizer-0.1.0/src/pipeline.h +12 -0
- neroued_vectorizer-0.1.0/src/preprocess/preprocess.cpp +95 -0
- neroued_vectorizer-0.1.0/src/preprocess/preprocess.h +26 -0
- neroued_vectorizer-0.1.0/src/segment/color_segment.cpp +621 -0
- neroued_vectorizer-0.1.0/src/segment/color_segment.h +42 -0
- neroued_vectorizer-0.1.0/src/segment/morphology.cpp +80 -0
- neroued_vectorizer-0.1.0/src/segment/morphology.h +14 -0
- neroued_vectorizer-0.1.0/src/segment/slic.cpp +471 -0
- neroued_vectorizer-0.1.0/src/segment/slic.h +30 -0
- neroued_vectorizer-0.1.0/src/trace/coverage.cpp +205 -0
- neroued_vectorizer-0.1.0/src/trace/coverage.h +18 -0
- neroued_vectorizer-0.1.0/src/trace/potrace.cpp +430 -0
- neroued_vectorizer-0.1.0/src/trace/potrace.h +36 -0
- neroued_vectorizer-0.1.0/src/trace/topology.cpp +146 -0
- neroued_vectorizer-0.1.0/src/trace/topology.h +17 -0
- neroued_vectorizer-0.1.0/src/vectorizer.cpp +136 -0
- neroued_vectorizer-0.1.0/test_data/baselines/current/bcba38.json +31 -0
- neroued_vectorizer-0.1.0/test_data/baselines/current/c_193ce.json +31 -0
- neroued_vectorizer-0.1.0/test_data/baselines/current/c_5bf9c.json +31 -0
- neroued_vectorizer-0.1.0/test_data/baselines/current/c_7eda8.json +31 -0
- neroued_vectorizer-0.1.0/test_data/baselines/current/c_8e8d9.json +31 -0
- neroued_vectorizer-0.1.0/test_data/baselines/current/miku.json +31 -0
- neroued_vectorizer-0.1.0/test_data/baselines/current/reward.json +31 -0
- neroued_vectorizer-0.1.0/test_data/baselines/current/s_0ce86.json +31 -0
- neroued_vectorizer-0.1.0/test_data/baselines/current/s_39e69.json +31 -0
- neroued_vectorizer-0.1.0/test_data/baselines/current/s_64c9a.json +31 -0
- neroued_vectorizer-0.1.0/test_data/baselines/current/s_b8489.json +31 -0
- neroued_vectorizer-0.1.0/test_data/baselines/current/s_c0315.json +31 -0
- neroued_vectorizer-0.1.0/test_data/baselines/current/tjls.json +31 -0
- neroued_vectorizer-0.1.0/test_data/baselines/current/varesa.json +31 -0
- neroued_vectorizer-0.1.0/test_data/images/manifest.json +102 -0
- neroued_vectorizer-0.1.0/tests/CMakeLists.txt +28 -0
- neroued_vectorizer-0.1.0/tests/test_vectorizer.cpp +255 -0
- neroued_vectorizer-0.1.0/tests/test_vectorizer_potrace.cpp +292 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
BasedOnStyle: LLVM
|
|
2
|
+
|
|
3
|
+
# 预处理指令缩进
|
|
4
|
+
IndentPPDirectives: AfterHash
|
|
5
|
+
|
|
6
|
+
# 允许短句在同一行
|
|
7
|
+
AllowShortIfStatementsOnASingleLine: true
|
|
8
|
+
AllowShortLoopsOnASingleLine: true
|
|
9
|
+
AllowShortBlocksOnASingleLine: true
|
|
10
|
+
AllowShortFunctionsOnASingleLine: true
|
|
11
|
+
AllowShortEnumsOnASingleLine: true
|
|
12
|
+
|
|
13
|
+
ColumnLimit: 100
|
|
14
|
+
|
|
15
|
+
# 连续声明对齐
|
|
16
|
+
AlignConsecutiveAssignments: true
|
|
17
|
+
AlignConsecutiveMacros: true
|
|
18
|
+
AlignTrailingComments:
|
|
19
|
+
Kind: Always
|
|
20
|
+
OverEmptyLines: 0
|
|
21
|
+
|
|
22
|
+
# 模板声明断行
|
|
23
|
+
AlwaysBreakTemplateDeclarations: Yes
|
|
24
|
+
|
|
25
|
+
# 打包参数
|
|
26
|
+
BinPackArguments: true
|
|
27
|
+
BinPackParameters: true
|
|
28
|
+
|
|
29
|
+
# 移除访问修饰符之后所有的空行
|
|
30
|
+
EmptyLineAfterAccessModifier: Never
|
|
31
|
+
EmptyLineBeforeAccessModifier: Leave
|
|
32
|
+
|
|
33
|
+
# include块风格
|
|
34
|
+
IncludeBlocks: Regroup
|
|
35
|
+
SortIncludes: Never
|
|
36
|
+
|
|
37
|
+
SortUsingDeclarations: Never
|
|
38
|
+
|
|
39
|
+
# 打包构造函数初始化列表
|
|
40
|
+
PackConstructorInitializers: BinPack
|
|
41
|
+
|
|
42
|
+
# 指针和引用对齐
|
|
43
|
+
PointerAlignment: Left
|
|
44
|
+
ReferenceAlignment: Left
|
|
45
|
+
|
|
46
|
+
# 分离定义语句块
|
|
47
|
+
SeparateDefinitionBlocks: Always
|
|
48
|
+
|
|
49
|
+
# 缩进长度
|
|
50
|
+
IndentWidth: 4
|
|
51
|
+
TabWidth: 4
|
|
52
|
+
AccessModifierOffset: -4
|
|
53
|
+
|
|
54
|
+
# 最大空行数量
|
|
55
|
+
MaxEmptyLinesToKeep: 3
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: 工具函数复用与实现结构规范
|
|
3
|
+
globs: "**/*.cpp,**/*.h"
|
|
4
|
+
alwaysApply: true
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 工具函数复用与实现结构
|
|
8
|
+
|
|
9
|
+
## 工具函数复用
|
|
10
|
+
|
|
11
|
+
- 禁止重复编写语义相同的工具函数。
|
|
12
|
+
- 新增工具函数前,先检索项目内是否已有可复用实现。
|
|
13
|
+
- 跨模块复用的函数应放入公共头文件(如 `src/detail/`)。
|
|
14
|
+
- 仅当前文件使用的工具函数应保留为匿名命名空间局部实现。
|
|
15
|
+
|
|
16
|
+
## .cpp 文件结构
|
|
17
|
+
|
|
18
|
+
- 避免在 .cpp 内做非必要前向声明;优先通过合理的函数定义顺序解决依赖。
|
|
19
|
+
- 实现文件应按"工具函数 → 核心流程 → 对外接口"组织。
|
|
20
|
+
|
|
21
|
+
## 命名空间约定
|
|
22
|
+
|
|
23
|
+
- 公共 API 使用 `neroued::vectorizer` 命名空间。
|
|
24
|
+
- 内部实现使用 `neroued::vectorizer::detail` 命名空间。
|
|
25
|
+
- 公共头文件位于 `include/neroued/vectorizer/`,内部头文件位于 `src/` 子目录。
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: C++ 代码格式化规范
|
|
3
|
+
globs: "**/*.cpp,**/*.h,**/*.hpp,**/*.cc,**/*.cxx"
|
|
4
|
+
alwaysApply: true
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# C++ 代码格式化
|
|
8
|
+
|
|
9
|
+
每次修改 `.cpp`、`.h`、`.hpp`、`.cc`、`.cxx` 文件后,必须使用项目根目录的 `.clang-format` 配置对修改的文件运行格式化:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
clang-format -i <modified-files>
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
- 仅对本次修改过的文件执行,不要全量格式化
|
|
16
|
+
- 在所有编辑完成后统一执行一次即可,无需每次编辑后都执行
|
|
17
|
+
- 格式化风格基于 LLVM,缩进 4 空格,列宽限制 100
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: C++ 跨平台编译规范
|
|
3
|
+
globs: "**/*.cpp,**/*.h,**/*.hpp,**/CMakeLists.txt,**/*.cmake"
|
|
4
|
+
alwaysApply: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# C++ 跨平台编译规范
|
|
8
|
+
|
|
9
|
+
## 文件系统路径
|
|
10
|
+
|
|
11
|
+
禁止硬编码 POSIX 路径,一律使用 `std::filesystem`(C++17)。
|
|
12
|
+
|
|
13
|
+
## 随机数 / ID 生成
|
|
14
|
+
|
|
15
|
+
禁止直接读取 `/dev/urandom`,使用 `std::random_device`。
|
|
16
|
+
|
|
17
|
+
## CMake 外部库链接
|
|
18
|
+
|
|
19
|
+
禁止硬编码 Linux 特有的库名,使用 find_package 或条件分支。
|
|
20
|
+
|
|
21
|
+
## 平台宏判断
|
|
22
|
+
|
|
23
|
+
需要平台差异时,使用标准宏:`_WIN32`、`__APPLE__`。
|
|
24
|
+
|
|
25
|
+
## 变更检查
|
|
26
|
+
|
|
27
|
+
每次新增系统调用或文件操作时,必须确认跨平台兼容性。
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [master]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [master]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
# ── C++ build & test ──────────────────────────────────────────────────────
|
|
11
|
+
cpp-build:
|
|
12
|
+
name: C++ (${{ matrix.os }})
|
|
13
|
+
runs-on: ${{ matrix.os }}
|
|
14
|
+
strategy:
|
|
15
|
+
fail-fast: false
|
|
16
|
+
matrix:
|
|
17
|
+
os: [ubuntu-24.04, macos-14]
|
|
18
|
+
|
|
19
|
+
steps:
|
|
20
|
+
- uses: actions/checkout@v4
|
|
21
|
+
with:
|
|
22
|
+
submodules: recursive
|
|
23
|
+
|
|
24
|
+
- name: Install dependencies (Linux)
|
|
25
|
+
if: runner.os == 'Linux'
|
|
26
|
+
run: |
|
|
27
|
+
sudo apt-get update
|
|
28
|
+
sudo apt-get install -y libopencv-dev libpotrace-dev
|
|
29
|
+
|
|
30
|
+
- name: Install dependencies (macOS)
|
|
31
|
+
if: runner.os == 'macOS'
|
|
32
|
+
run: brew install opencv potrace
|
|
33
|
+
|
|
34
|
+
- name: Configure
|
|
35
|
+
run: >
|
|
36
|
+
cmake -S . -B build
|
|
37
|
+
-DCMAKE_BUILD_TYPE=Release
|
|
38
|
+
-DNV_BUILD_TESTS=ON
|
|
39
|
+
-DNV_BUILD_EVAL=ON
|
|
40
|
+
-DNV_BUILD_APPS=ON
|
|
41
|
+
|
|
42
|
+
- name: Build
|
|
43
|
+
run: cmake --build build -j$(nproc 2>/dev/null || sysctl -n hw.ncpu)
|
|
44
|
+
|
|
45
|
+
- name: Test
|
|
46
|
+
run: ctest --test-dir build --output-on-failure
|
|
47
|
+
|
|
48
|
+
# ── Python bindings build & test ──────────────────────────────────────────
|
|
49
|
+
python-test:
|
|
50
|
+
name: Python (${{ matrix.python-version }}, ubuntu)
|
|
51
|
+
runs-on: ubuntu-24.04
|
|
52
|
+
strategy:
|
|
53
|
+
fail-fast: false
|
|
54
|
+
matrix:
|
|
55
|
+
python-version: ["3.10", "3.12"]
|
|
56
|
+
|
|
57
|
+
steps:
|
|
58
|
+
- uses: actions/checkout@v4
|
|
59
|
+
with:
|
|
60
|
+
submodules: recursive
|
|
61
|
+
|
|
62
|
+
- name: Install system dependencies
|
|
63
|
+
run: |
|
|
64
|
+
sudo apt-get update
|
|
65
|
+
sudo apt-get install -y libopencv-dev libpotrace-dev
|
|
66
|
+
|
|
67
|
+
- uses: actions/setup-python@v5
|
|
68
|
+
with:
|
|
69
|
+
python-version: ${{ matrix.python-version }}
|
|
70
|
+
|
|
71
|
+
- name: Install package
|
|
72
|
+
run: pip install --verbose ".[test]" || pip install --verbose .
|
|
73
|
+
|
|
74
|
+
- name: Install test dependencies
|
|
75
|
+
run: pip install pytest numpy opencv-python-headless
|
|
76
|
+
|
|
77
|
+
- name: Run tests
|
|
78
|
+
run: pytest python/tests -v
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
name: Build wheels
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags: ["v*"]
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
# ── Build wheels on each platform ─────────────────────────────────────────
|
|
10
|
+
build-wheels:
|
|
11
|
+
name: Wheels (${{ matrix.os }})
|
|
12
|
+
runs-on: ${{ matrix.os }}
|
|
13
|
+
strategy:
|
|
14
|
+
fail-fast: false
|
|
15
|
+
matrix:
|
|
16
|
+
os: [ubuntu-24.04, macos-13, macos-14, windows-latest]
|
|
17
|
+
|
|
18
|
+
steps:
|
|
19
|
+
- uses: actions/checkout@v4
|
|
20
|
+
with:
|
|
21
|
+
submodules: recursive
|
|
22
|
+
|
|
23
|
+
- name: Set up vcpkg cache (Windows)
|
|
24
|
+
if: runner.os == 'Windows'
|
|
25
|
+
uses: actions/cache@v4
|
|
26
|
+
with:
|
|
27
|
+
path: C:\vcpkg\installed
|
|
28
|
+
key: vcpkg-${{ runner.os }}-${{ hashFiles('ci/install-deps-windows.bat') }}
|
|
29
|
+
|
|
30
|
+
- uses: pypa/cibuildwheel@v2.21
|
|
31
|
+
env:
|
|
32
|
+
CIBW_ARCHS_LINUX: x86_64
|
|
33
|
+
CIBW_ARCHS_MACOS: ${{ matrix.os == 'macos-14' && 'arm64' || 'x86_64' }}
|
|
34
|
+
CIBW_ARCHS_WINDOWS: AMD64
|
|
35
|
+
|
|
36
|
+
- uses: actions/upload-artifact@v4
|
|
37
|
+
with:
|
|
38
|
+
name: wheels-${{ matrix.os }}
|
|
39
|
+
path: wheelhouse/*.whl
|
|
40
|
+
|
|
41
|
+
# ── Build source distribution ─────────────────────────────────────────────
|
|
42
|
+
build-sdist:
|
|
43
|
+
name: Source distribution
|
|
44
|
+
runs-on: ubuntu-24.04
|
|
45
|
+
steps:
|
|
46
|
+
- uses: actions/checkout@v4
|
|
47
|
+
with:
|
|
48
|
+
submodules: recursive
|
|
49
|
+
|
|
50
|
+
- uses: actions/setup-python@v5
|
|
51
|
+
with:
|
|
52
|
+
python-version: "3.12"
|
|
53
|
+
|
|
54
|
+
- name: Build sdist
|
|
55
|
+
run: pipx run build --sdist
|
|
56
|
+
|
|
57
|
+
- uses: actions/upload-artifact@v4
|
|
58
|
+
with:
|
|
59
|
+
name: sdist
|
|
60
|
+
path: dist/*.tar.gz
|
|
61
|
+
|
|
62
|
+
# ── Publish to PyPI ───────────────────────────────────────────────────────
|
|
63
|
+
publish:
|
|
64
|
+
name: Publish to PyPI
|
|
65
|
+
needs: [build-wheels, build-sdist]
|
|
66
|
+
runs-on: ubuntu-24.04
|
|
67
|
+
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
|
|
68
|
+
environment:
|
|
69
|
+
name: pypi
|
|
70
|
+
url: https://pypi.org/p/neroued-vectorizer
|
|
71
|
+
permissions:
|
|
72
|
+
id-token: write
|
|
73
|
+
|
|
74
|
+
steps:
|
|
75
|
+
- uses: actions/download-artifact@v4
|
|
76
|
+
with:
|
|
77
|
+
path: dist
|
|
78
|
+
merge-multiple: true
|
|
79
|
+
|
|
80
|
+
- uses: pypa/gh-action-pypi-publish@release/v1
|
|
81
|
+
with:
|
|
82
|
+
packages-dir: dist
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Build
|
|
2
|
+
build/
|
|
3
|
+
cmake-build-*/
|
|
4
|
+
*.o
|
|
5
|
+
*.a
|
|
6
|
+
*.so
|
|
7
|
+
*.dylib
|
|
8
|
+
*.exe
|
|
9
|
+
*.dll
|
|
10
|
+
*.lib
|
|
11
|
+
*.exp
|
|
12
|
+
*.pdb
|
|
13
|
+
*.ilk
|
|
14
|
+
compile_commands.json
|
|
15
|
+
|
|
16
|
+
# IDE
|
|
17
|
+
.cache/
|
|
18
|
+
.vscode/
|
|
19
|
+
.idea/
|
|
20
|
+
*.swp
|
|
21
|
+
*.swo
|
|
22
|
+
*~
|
|
23
|
+
|
|
24
|
+
# OS
|
|
25
|
+
.DS_Store
|
|
26
|
+
Thumbs.db
|
|
27
|
+
|
|
28
|
+
# Test artifacts (generated per run)
|
|
29
|
+
*.log
|
|
30
|
+
test_data/images/results/
|
|
31
|
+
test_data/eval_out/
|
|
32
|
+
test_data/eval_report.json
|
|
33
|
+
test_data/baselines/current/*.svg
|
|
34
|
+
test_data/baselines/current/*_report.png
|
|
35
|
+
test_data/history.csv
|
|
36
|
+
|
|
37
|
+
# Test images (user-provided, too large for git)
|
|
38
|
+
test_data/images/simple/
|
|
39
|
+
test_data/images/complex/
|
|
40
|
+
|
|
41
|
+
# Python bindings build
|
|
42
|
+
dist/
|
|
43
|
+
*.egg-info/
|
|
44
|
+
*.whl
|
|
45
|
+
__pycache__/
|
|
46
|
+
*.pyc
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
cmake_minimum_required(VERSION 3.15)
|
|
2
|
+
project(Clipper2_benchmarks VERSION 1.0 LANGUAGES C CXX)
|
|
3
|
+
|
|
4
|
+
if(NOT DEFINED CMAKE_CXX_STANDARD OR CMAKE_CXX_STANDARD LESS 17)
|
|
5
|
+
set(CMAKE_CXX_STANDARD 17)
|
|
6
|
+
endif()
|
|
7
|
+
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
8
|
+
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
9
|
+
|
|
10
|
+
# fetch the google benchmark library
|
|
11
|
+
include(FetchContent)
|
|
12
|
+
set(BENCHMARK_ENABLE_GTEST_TESTS OFF)
|
|
13
|
+
set(BENCHMARK_ENABLE_TESTING OFF)
|
|
14
|
+
message("start fetching the googlebenchmark")
|
|
15
|
+
FetchContent_Declare(googlebenchmark
|
|
16
|
+
GIT_REPOSITORY https://github.com/google/benchmark.git
|
|
17
|
+
GIT_TAG v1.7.1
|
|
18
|
+
)
|
|
19
|
+
|
|
20
|
+
FetchContent_MakeAvailable(
|
|
21
|
+
googlebenchmark)
|
|
22
|
+
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
|
|
23
|
+
message("fetching is done")
|
|
24
|
+
|
|
25
|
+
set(benchmark_srcs
|
|
26
|
+
GetIntersectPtBenchmark.cpp
|
|
27
|
+
PointInPolygonBenchmark.cpp
|
|
28
|
+
StripDuplicateBenchmark.cpp
|
|
29
|
+
# more to add
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
set(CLIPPER2_INC
|
|
33
|
+
${CLIPPER2_INC_FOLDER}/clipper.h
|
|
34
|
+
${CLIPPER2_INC_FOLDER}/clipper.version.h
|
|
35
|
+
${CLIPPER2_INC_FOLDER}/clipper.core.h
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
add_library(Clipper2_bm INTERFACE)
|
|
39
|
+
target_include_directories(Clipper2_bm INTERFACE CLIPPER2_INC)
|
|
40
|
+
|
|
41
|
+
set(CLIPPER2_UTILS_INC
|
|
42
|
+
../Utils/clipper.svg.h
|
|
43
|
+
../Utils/ClipFileLoad.h
|
|
44
|
+
../Utils/ClipFileSave.h
|
|
45
|
+
../Utils/Timer.h
|
|
46
|
+
../Utils/Colors.h
|
|
47
|
+
../Utils/CommonUtils.h
|
|
48
|
+
)
|
|
49
|
+
set(CLIPPER2_UTILS_SRC
|
|
50
|
+
../Utils/clipper.svg.cpp
|
|
51
|
+
../Utils/ClipFileLoad.cpp
|
|
52
|
+
../Utils/ClipFileSave.cpp
|
|
53
|
+
)
|
|
54
|
+
set(CLIPPER2_UTILS "")
|
|
55
|
+
list(APPEND CLIPPER2_UTILS Clipper2utils_bm)
|
|
56
|
+
add_library(Clipper2utils_bm STATIC ${CLIPPER2_UTILS_INC} ${CLIPPER2_UTILS_SRC})
|
|
57
|
+
target_include_directories(Clipper2utils_bm
|
|
58
|
+
PUBLIC ../Clipper2Lib/include
|
|
59
|
+
PUBLIC ../Utils
|
|
60
|
+
)
|
|
61
|
+
target_link_libraries(Clipper2utils_bm PUBLIC Clipper2_bm)
|
|
62
|
+
|
|
63
|
+
# add each benchmark from the benchmark_srcs
|
|
64
|
+
foreach(benchmark ${benchmark_srcs})
|
|
65
|
+
get_filename_component(benchmark_target ${benchmark} NAME_WE)
|
|
66
|
+
|
|
67
|
+
message(STATUS "${PROJECT_NAME} add benchmark ${benchmark_target}")
|
|
68
|
+
add_executable(${benchmark_target} ${benchmark})
|
|
69
|
+
|
|
70
|
+
target_include_directories(${benchmark_target}
|
|
71
|
+
PUBLIC ../Clipper2Lib/include
|
|
72
|
+
PUBLIC ../Utils
|
|
73
|
+
)
|
|
74
|
+
|
|
75
|
+
target_link_libraries(${benchmark_target}
|
|
76
|
+
benchmark::benchmark
|
|
77
|
+
Clipper2_bm
|
|
78
|
+
Clipper2utils_bm
|
|
79
|
+
)
|
|
80
|
+
endforeach()
|