Readme.txt 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. -----------------------------------
  2. UVAtlas - isochart texture atlasing
  3. -----------------------------------
  4. Copyright (c) Microsoft Corporation. All rights reserved.
  5. June 18, 2015
  6. This package contains UVAtlas, a shared source library for creating and packing an
  7. isochart texture atlas.
  8. The source is written for Visual Studio 2010, 2012, 2013, or 2015. It is recommended that you
  9. make use of the Windows 8.1 SDK and Windows 7 Service Pack 1 or later.
  10. Details on using the Windows 8.1 SDK with VS 2010 are described on the Visual C++ Team Blog:
  11. <http://blogs.msdn.com/b/vcblog/archive/2012/11/23/using-the-windows-8-sdk-with-visual-studio-2010-configuring-multiple-projects.aspx>
  12. These components are designed to work without requiring any content from the DirectX SDK. For details,
  13. see "Where is the DirectX SDK?" <http://msdn.microsoft.com/en-us/library/ee663275.aspx>.
  14. Inc\
  15. Public Header File (in the DirectX C++ namespace):
  16. UVtlas.h
  17. - UVAtlasCreate
  18. - UVAtlasPartition
  19. - UVAtlasPack
  20. - UVAtlasComputeIMTFromPerVertexSignal
  21. - UVAtlasComputeIMTFromSignal
  22. - UVAtlasComputeIMTFromTexture
  23. - UVAtlasComputeIMTFromPerTexelSignal
  24. - UVAtlasApplyRemap
  25. geodesics\
  26. isochart\
  27. Library source files
  28. UVAtasTool\
  29. Command line tool and sample for UVAtlas library
  30. To build this tool, you need the DirectXTex (http://go.microsoft.com/fwlink/?LinkId=248926)
  31. and DirectXMesh (http://go.microsoft.com/fwlink/?LinkID=324981) libraries in the following
  32. directory structure:
  33. .\DirectXTex\DirectXTex
  34. .\DirectXMesh\DirectXMesh
  35. .\DirectXMesh\Utilities
  36. .\UVAtlas\UVAtlas
  37. .\UVAtlas\UVAtlasTool
  38. All content and source code for this package are subject to the terms of the MIT License.
  39. <http://opensource.org/licenses/MIT>.
  40. Documentation is available at <https://github.com/Microsoft/UVAtlas/wiki>.
  41. For the latest version of UVAtlas, bug reports, etc. please visit the project site.
  42. http://go.microsoft.com/fwlink/?LinkID=512686
  43. Further reading:
  44. Zhou et al, "Iso-charts: Stretch-driven Mesh Parameterization using Spectral Analysis",
  45. Eurographics Symposium on Geometry Processing (2004)
  46. http://research.microsoft.com/en-us/um/people/johnsny/papers/isochart.pdf
  47. Sander et al. "Signal-Specialized Parametrization" Europgraphics 2002
  48. http://research.microsoft.com/en-us/um/people/johnsny/papers/ssp.pdf
  49. ---------------
  50. RELEASE HISTORY
  51. ---------------
  52. June 18, 2015
  53. Fixed bugs with handling of E_ABORT from user callback
  54. Added ESC to abort to uvatlas sample
  55. April 9, 2015
  56. Added projects for Windows apps Technical Preview
  57. Fixes for potential divide-by-zero cases
  58. Fix for memory allocation problem
  59. Added error detection for invalid partitioning
  60. uvatlas: fix when importing from .vbo
  61. Minor code cleanup
  62. November 12, 2014
  63. Original release