2018-10-26 23:04:45 +00:00
|
|
|
#ifndef DUST3D_UV_UNWRAP_H
|
|
|
|
#define DUST3D_UV_UNWRAP_H
|
|
|
|
#include <set>
|
|
|
|
#include <QVector2D>
|
|
|
|
#include "outcome.h"
|
|
|
|
|
2019-05-12 08:15:07 +00:00
|
|
|
void uvUnwrap(const Outcome &outcome,
|
|
|
|
std::vector<std::vector<QVector2D>> &triangleVertexUvs,
|
|
|
|
std::set<int> &seamVertices,
|
|
|
|
std::map<QUuid, std::vector<QRectF>> &uvRects);
|
2018-10-26 23:04:45 +00:00
|
|
|
|
|
|
|
#endif
|