mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-06-16 14:15:26 -06:00
12 lines
176 B
C++
12 lines
176 B
C++
#ifndef _earcut_earcut_h
|
|
#define _earcut_earcut_h
|
|
|
|
#include <Core/Core.h>
|
|
|
|
namespace Upp {
|
|
|
|
Vector<int> EarCut(const Vector<Vector<Pointf>>& polygon);
|
|
|
|
};
|
|
|
|
#endif
|