├── .azuredevops ├── pipelines │ ├── UVAtlas-GitHub-CMake-Dev17.yml │ ├── UVAtlas-GitHub-CMake.yml │ ├── UVAtlas-GitHub-Dev17.yml │ ├── UVAtlas-GitHub-GDK-Dev17.yml │ ├── UVAtlas-GitHub-MinGW.yml │ ├── UVAtlas-GitHub-SDK-prerelease.yml │ ├── UVAtlas-GitHub-SDK-release.yml │ ├── UVAtlas-GitHub-Test-Dev17.yml │ ├── UVAtlas-GitHub-Test.yml │ ├── UVAtlas-GitHub-WSL-11.yml │ ├── UVAtlas-GitHub-WSL-13.yml │ ├── UVAtlas-GitHub.yml │ └── UVAtlas-SDL.yml ├── policies │ └── approvercountpolicy.yml └── templates │ ├── UVAtlas-build-uwp.yml │ └── UVAtlas-build-win32.yml ├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml ├── linters │ ├── .editorconfig-checker.json │ ├── .markdown-lint.yml │ ├── .powershell-psscriptanalyzer.psd1 │ └── .yaml-lint.yml └── workflows │ ├── bvt.yml │ ├── codeql.yml │ ├── lint.yml │ ├── main.yml │ ├── msbuild.yml │ ├── msvc.yml │ ├── test.yml │ ├── uwp.yml │ ├── vcpkg.yml │ └── wsl.yml ├── .gitignore ├── .nuget ├── icon.jpg ├── uvatlas_desktop_2019.nuspec ├── uvatlas_desktop_2019.targets ├── uvatlas_desktop_win10.nuspec └── uvatlas_desktop_win10.targets ├── CHANGELOG.md ├── CMakeLists.txt ├── CMakePresets.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── UVAtlas ├── UVAtlas_2019_Win10.vcxproj ├── UVAtlas_2019_Win10.vcxproj.filters ├── UVAtlas_2022_Win10.vcxproj ├── UVAtlas_2022_Win10.vcxproj.filters ├── UVAtlas_Windows10_2022.vcxproj ├── UVAtlas_Windows10_2022.vcxproj.filters ├── geodesics │ ├── ApproximateOneToAll.cpp │ ├── ApproximateOneToAll.h │ ├── ExactOneToAll.cpp │ ├── ExactOneToAll.h │ ├── datatypes.h │ ├── mathutils.cpp │ ├── mathutils.h │ └── minheap.hpp ├── inc │ └── UVAtlas.h ├── isochart │ ├── SymmetricMatrix.hpp │ ├── UVAtlas.cpp │ ├── UVAtlasRepacker.cpp │ ├── UVAtlasRepacker.h │ ├── Vis_Maxflow.cpp │ ├── Vis_Maxflow.h │ ├── barycentricparam.cpp │ ├── basemeshinfo.cpp │ ├── basemeshinfo.h │ ├── callbackschemer.h │ ├── graphcut.cpp │ ├── graphcut.h │ ├── imtcomputation.cpp │ ├── isochart.cpp │ ├── isochart.h │ ├── isochartconfig.h │ ├── isochartengine.cpp │ ├── isochartengine.h │ ├── isochartmesh.cpp │ ├── isochartmesh.h │ ├── isochartutil.cpp │ ├── isochartutil.h │ ├── isomap.cpp │ ├── isomap.h │ ├── lscmparam.cpp │ ├── mergecharts.cpp │ ├── meshapplyisomap.cpp │ ├── meshcommon.inl │ ├── meshoptimizeboundaries.cpp │ ├── meshoptimizestretch.cpp │ ├── meshpartitionchart.cpp │ ├── packingcharts.cpp │ ├── progressivemesh.cpp │ ├── progressivemesh.h │ ├── sparsematrix.hpp │ ├── vertiter.cpp │ └── vertiter.h ├── maxheap.hpp └── pch.h ├── UVAtlasTool ├── CMO.h ├── CmdLineHelpers.h ├── Mesh.cpp ├── Mesh.h ├── MeshOBJ.cpp ├── SDKMesh.h ├── UVAtlas.cpp ├── UVAtlasTool_2019.vcxproj ├── UVAtlasTool_2019.vcxproj.filters ├── UVAtlasTool_2022.vcxproj ├── UVAtlasTool_2022.vcxproj.filters ├── directx.ico ├── packages.config ├── settings.manifest ├── uvatlas.rc └── vbo.h ├── UVAtlas_2019_Win10.sln ├── UVAtlas_2022_Win10.sln └── UVAtlas_Windows10_2022.sln /.azuredevops/pipelines/UVAtlas-GitHub-CMake-Dev17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.azuredevops/pipelines/UVAtlas-GitHub-CMake-Dev17.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/UVAtlas-GitHub-CMake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.azuredevops/pipelines/UVAtlas-GitHub-CMake.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/UVAtlas-GitHub-Dev17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.azuredevops/pipelines/UVAtlas-GitHub-Dev17.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/UVAtlas-GitHub-GDK-Dev17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.azuredevops/pipelines/UVAtlas-GitHub-GDK-Dev17.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/UVAtlas-GitHub-MinGW.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.azuredevops/pipelines/UVAtlas-GitHub-MinGW.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/UVAtlas-GitHub-SDK-prerelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.azuredevops/pipelines/UVAtlas-GitHub-SDK-prerelease.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/UVAtlas-GitHub-SDK-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.azuredevops/pipelines/UVAtlas-GitHub-SDK-release.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/UVAtlas-GitHub-Test-Dev17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.azuredevops/pipelines/UVAtlas-GitHub-Test-Dev17.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/UVAtlas-GitHub-Test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.azuredevops/pipelines/UVAtlas-GitHub-Test.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/UVAtlas-GitHub-WSL-11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.azuredevops/pipelines/UVAtlas-GitHub-WSL-11.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/UVAtlas-GitHub-WSL-13.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.azuredevops/pipelines/UVAtlas-GitHub-WSL-13.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/UVAtlas-GitHub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.azuredevops/pipelines/UVAtlas-GitHub.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/UVAtlas-SDL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.azuredevops/pipelines/UVAtlas-SDL.yml -------------------------------------------------------------------------------- /.azuredevops/policies/approvercountpolicy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.azuredevops/policies/approvercountpolicy.yml -------------------------------------------------------------------------------- /.azuredevops/templates/UVAtlas-build-uwp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.azuredevops/templates/UVAtlas-build-uwp.yml -------------------------------------------------------------------------------- /.azuredevops/templates/UVAtlas-build-win32.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.azuredevops/templates/UVAtlas-build-win32.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.editorconfig-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.github/linters/.editorconfig-checker.json -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.github/linters/.powershell-psscriptanalyzer.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.github/linters/.powershell-psscriptanalyzer.psd1 -------------------------------------------------------------------------------- /.github/linters/.yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.github/linters/.yaml-lint.yml -------------------------------------------------------------------------------- /.github/workflows/bvt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.github/workflows/bvt.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.github/workflows/msvc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.github/workflows/msvc.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/uwp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.github/workflows/uwp.yml -------------------------------------------------------------------------------- /.github/workflows/vcpkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.github/workflows/vcpkg.yml -------------------------------------------------------------------------------- /.github/workflows/wsl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.github/workflows/wsl.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.nuget/icon.jpg -------------------------------------------------------------------------------- /.nuget/uvatlas_desktop_2019.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.nuget/uvatlas_desktop_2019.nuspec -------------------------------------------------------------------------------- /.nuget/uvatlas_desktop_2019.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.nuget/uvatlas_desktop_2019.targets -------------------------------------------------------------------------------- /.nuget/uvatlas_desktop_win10.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.nuget/uvatlas_desktop_win10.nuspec -------------------------------------------------------------------------------- /.nuget/uvatlas_desktop_win10.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/.nuget/uvatlas_desktop_win10.targets -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/SECURITY.md -------------------------------------------------------------------------------- /UVAtlas/UVAtlas_2019_Win10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/UVAtlas_2019_Win10.vcxproj -------------------------------------------------------------------------------- /UVAtlas/UVAtlas_2019_Win10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/UVAtlas_2019_Win10.vcxproj.filters -------------------------------------------------------------------------------- /UVAtlas/UVAtlas_2022_Win10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/UVAtlas_2022_Win10.vcxproj -------------------------------------------------------------------------------- /UVAtlas/UVAtlas_2022_Win10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/UVAtlas_2022_Win10.vcxproj.filters -------------------------------------------------------------------------------- /UVAtlas/UVAtlas_Windows10_2022.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/UVAtlas_Windows10_2022.vcxproj -------------------------------------------------------------------------------- /UVAtlas/UVAtlas_Windows10_2022.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/UVAtlas_Windows10_2022.vcxproj.filters -------------------------------------------------------------------------------- /UVAtlas/geodesics/ApproximateOneToAll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/geodesics/ApproximateOneToAll.cpp -------------------------------------------------------------------------------- /UVAtlas/geodesics/ApproximateOneToAll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/geodesics/ApproximateOneToAll.h -------------------------------------------------------------------------------- /UVAtlas/geodesics/ExactOneToAll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/geodesics/ExactOneToAll.cpp -------------------------------------------------------------------------------- /UVAtlas/geodesics/ExactOneToAll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/geodesics/ExactOneToAll.h -------------------------------------------------------------------------------- /UVAtlas/geodesics/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/geodesics/datatypes.h -------------------------------------------------------------------------------- /UVAtlas/geodesics/mathutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/geodesics/mathutils.cpp -------------------------------------------------------------------------------- /UVAtlas/geodesics/mathutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/geodesics/mathutils.h -------------------------------------------------------------------------------- /UVAtlas/geodesics/minheap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/geodesics/minheap.hpp -------------------------------------------------------------------------------- /UVAtlas/inc/UVAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/inc/UVAtlas.h -------------------------------------------------------------------------------- /UVAtlas/isochart/SymmetricMatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/SymmetricMatrix.hpp -------------------------------------------------------------------------------- /UVAtlas/isochart/UVAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/UVAtlas.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/UVAtlasRepacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/UVAtlasRepacker.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/UVAtlasRepacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/UVAtlasRepacker.h -------------------------------------------------------------------------------- /UVAtlas/isochart/Vis_Maxflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/Vis_Maxflow.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/Vis_Maxflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/Vis_Maxflow.h -------------------------------------------------------------------------------- /UVAtlas/isochart/barycentricparam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/barycentricparam.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/basemeshinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/basemeshinfo.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/basemeshinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/basemeshinfo.h -------------------------------------------------------------------------------- /UVAtlas/isochart/callbackschemer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/callbackschemer.h -------------------------------------------------------------------------------- /UVAtlas/isochart/graphcut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/graphcut.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/graphcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/graphcut.h -------------------------------------------------------------------------------- /UVAtlas/isochart/imtcomputation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/imtcomputation.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/isochart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/isochart.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/isochart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/isochart.h -------------------------------------------------------------------------------- /UVAtlas/isochart/isochartconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/isochartconfig.h -------------------------------------------------------------------------------- /UVAtlas/isochart/isochartengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/isochartengine.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/isochartengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/isochartengine.h -------------------------------------------------------------------------------- /UVAtlas/isochart/isochartmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/isochartmesh.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/isochartmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/isochartmesh.h -------------------------------------------------------------------------------- /UVAtlas/isochart/isochartutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/isochartutil.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/isochartutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/isochartutil.h -------------------------------------------------------------------------------- /UVAtlas/isochart/isomap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/isomap.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/isomap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/isomap.h -------------------------------------------------------------------------------- /UVAtlas/isochart/lscmparam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/lscmparam.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/mergecharts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/mergecharts.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/meshapplyisomap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/meshapplyisomap.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/meshcommon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/meshcommon.inl -------------------------------------------------------------------------------- /UVAtlas/isochart/meshoptimizeboundaries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/meshoptimizeboundaries.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/meshoptimizestretch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/meshoptimizestretch.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/meshpartitionchart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/meshpartitionchart.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/packingcharts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/packingcharts.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/progressivemesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/progressivemesh.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/progressivemesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/progressivemesh.h -------------------------------------------------------------------------------- /UVAtlas/isochart/sparsematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/sparsematrix.hpp -------------------------------------------------------------------------------- /UVAtlas/isochart/vertiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/vertiter.cpp -------------------------------------------------------------------------------- /UVAtlas/isochart/vertiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/isochart/vertiter.h -------------------------------------------------------------------------------- /UVAtlas/maxheap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/maxheap.hpp -------------------------------------------------------------------------------- /UVAtlas/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas/pch.h -------------------------------------------------------------------------------- /UVAtlasTool/CMO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlasTool/CMO.h -------------------------------------------------------------------------------- /UVAtlasTool/CmdLineHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlasTool/CmdLineHelpers.h -------------------------------------------------------------------------------- /UVAtlasTool/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlasTool/Mesh.cpp -------------------------------------------------------------------------------- /UVAtlasTool/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlasTool/Mesh.h -------------------------------------------------------------------------------- /UVAtlasTool/MeshOBJ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlasTool/MeshOBJ.cpp -------------------------------------------------------------------------------- /UVAtlasTool/SDKMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlasTool/SDKMesh.h -------------------------------------------------------------------------------- /UVAtlasTool/UVAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlasTool/UVAtlas.cpp -------------------------------------------------------------------------------- /UVAtlasTool/UVAtlasTool_2019.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlasTool/UVAtlasTool_2019.vcxproj -------------------------------------------------------------------------------- /UVAtlasTool/UVAtlasTool_2019.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlasTool/UVAtlasTool_2019.vcxproj.filters -------------------------------------------------------------------------------- /UVAtlasTool/UVAtlasTool_2022.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlasTool/UVAtlasTool_2022.vcxproj -------------------------------------------------------------------------------- /UVAtlasTool/UVAtlasTool_2022.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlasTool/UVAtlasTool_2022.vcxproj.filters -------------------------------------------------------------------------------- /UVAtlasTool/directx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlasTool/directx.ico -------------------------------------------------------------------------------- /UVAtlasTool/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlasTool/packages.config -------------------------------------------------------------------------------- /UVAtlasTool/settings.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlasTool/settings.manifest -------------------------------------------------------------------------------- /UVAtlasTool/uvatlas.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlasTool/uvatlas.rc -------------------------------------------------------------------------------- /UVAtlasTool/vbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlasTool/vbo.h -------------------------------------------------------------------------------- /UVAtlas_2019_Win10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas_2019_Win10.sln -------------------------------------------------------------------------------- /UVAtlas_2022_Win10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas_2022_Win10.sln -------------------------------------------------------------------------------- /UVAtlas_Windows10_2022.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/UVAtlas/HEAD/UVAtlas_Windows10_2022.sln --------------------------------------------------------------------------------