├── .gitignore ├── CGAL_StraightSkeleton_Dotnet ├── CGAL-vc120-mt-gd-4.7.dll ├── CGAL_Core-vc120-mt-gd-4.7.dll ├── CGAL_StraightSkeleton_Dotnet.csproj ├── CGAL_StraightSkeleton_Dotnet.nuspec ├── Edge.cs ├── Properties │ └── AssemblyInfo.cs ├── StraightSkeleton.cs ├── Vertex.cs ├── boost_chrono-vc120-mt-gd-1_59.dll ├── boost_system-vc120-mt-gd-1_59.dll ├── boost_thread-vc120-mt-gd-1_59.dll ├── install.ps1 ├── libgmp-10.dll └── libmpfr-4.dll ├── CGAL_StraightSkeleton_Wrapper.sln ├── CGAL_StraightSkeleton_Wrapper ├── CGAL_StraightSkeleton_Wrapper.cpp ├── CGAL_StraightSkeleton_Wrapper.vcxproj ├── CGAL_StraightSkeleton_Wrapper.vcxproj.filters ├── CGAL_StraightSkeleton_Wrapper.vcxproj.user ├── ReadMe.txt ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── ConsoleTest ├── App.config ├── ConsoleTest.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── LICENSE ├── Skeleton.png ├── push-all.ps1 └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Dotnet/CGAL-vc120-mt-gd-4.7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Dotnet/CGAL-vc120-mt-gd-4.7.dll -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Dotnet/CGAL_Core-vc120-mt-gd-4.7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Dotnet/CGAL_Core-vc120-mt-gd-4.7.dll -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Dotnet/CGAL_StraightSkeleton_Dotnet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Dotnet/CGAL_StraightSkeleton_Dotnet.csproj -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Dotnet/CGAL_StraightSkeleton_Dotnet.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Dotnet/CGAL_StraightSkeleton_Dotnet.nuspec -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Dotnet/Edge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Dotnet/Edge.cs -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Dotnet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Dotnet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Dotnet/StraightSkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Dotnet/StraightSkeleton.cs -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Dotnet/Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Dotnet/Vertex.cs -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Dotnet/boost_chrono-vc120-mt-gd-1_59.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Dotnet/boost_chrono-vc120-mt-gd-1_59.dll -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Dotnet/boost_system-vc120-mt-gd-1_59.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Dotnet/boost_system-vc120-mt-gd-1_59.dll -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Dotnet/boost_thread-vc120-mt-gd-1_59.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Dotnet/boost_thread-vc120-mt-gd-1_59.dll -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Dotnet/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Dotnet/install.ps1 -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Dotnet/libgmp-10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Dotnet/libgmp-10.dll -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Dotnet/libmpfr-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Dotnet/libmpfr-4.dll -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Wrapper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Wrapper.sln -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Wrapper/CGAL_StraightSkeleton_Wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Wrapper/CGAL_StraightSkeleton_Wrapper.cpp -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Wrapper/CGAL_StraightSkeleton_Wrapper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Wrapper/CGAL_StraightSkeleton_Wrapper.vcxproj -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Wrapper/CGAL_StraightSkeleton_Wrapper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Wrapper/CGAL_StraightSkeleton_Wrapper.vcxproj.filters -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Wrapper/CGAL_StraightSkeleton_Wrapper.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Wrapper/CGAL_StraightSkeleton_Wrapper.vcxproj.user -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Wrapper/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Wrapper/ReadMe.txt -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Wrapper/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Wrapper/dllmain.cpp -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Wrapper/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Wrapper/stdafx.cpp -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Wrapper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Wrapper/stdafx.h -------------------------------------------------------------------------------- /CGAL_StraightSkeleton_Wrapper/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/CGAL_StraightSkeleton_Wrapper/targetver.h -------------------------------------------------------------------------------- /ConsoleTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/ConsoleTest/App.config -------------------------------------------------------------------------------- /ConsoleTest/ConsoleTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/ConsoleTest/ConsoleTest.csproj -------------------------------------------------------------------------------- /ConsoleTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/ConsoleTest/Program.cs -------------------------------------------------------------------------------- /ConsoleTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/ConsoleTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ConsoleTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/ConsoleTest/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /Skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/Skeleton.png -------------------------------------------------------------------------------- /push-all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/push-all.ps1 -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martindevans/CGAL_StraightSkeleton_Wrapper/HEAD/readme.md --------------------------------------------------------------------------------