mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
15 lines
312 B
C++
15 lines
312 B
C++
#ifndef Triangulation_h
|
|
#define Triangulation_h
|
|
|
|
#include <vector>
|
|
|
|
#include <LottieMesh/Point.h>
|
|
|
|
namespace MeshGenerator {
|
|
|
|
std::vector<uint32_t> triangulatePolygon(std::vector<Point> const &points, std::vector<int> &indices, std::vector<std::vector<int>> const &holeIndices);
|
|
|
|
}
|
|
|
|
#endif /* Triangulation_h */
|