Volume Cartographer 2.27.0
UVMapIO.hpp
1#pragma once
2
5
6namespace volcart::io
7{
13void WriteUVMap(const filesystem::path& path, const UVMap& uvMap);
14
20auto ReadUVMap(const filesystem::path& path) -> UVMap;
21} // namespace volcart::io
Stores per-vertex UV mappings.
Definition: UVMap.hpp:52
IO classes.
void WriteUVMap(const filesystem::path &path, const UVMap &uvMap)
Write a UVMap in the custom .uvm archival format.
auto ReadUVMap(const filesystem::path &path) -> UVMap
Read a UVMap from the custom .uvm archival format.