ultimatepp/uppsrc/plugin/tess2/tess2.h
cxl 15d88366c3 plugin/tess2: fixes
git-svn-id: svn://ultimatepp.org/upp/trunk@12352 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2018-10-09 21:20:17 +00:00

13 lines
378 B
C++

#ifndef _plugin_tessel_tessel_h_
#define _plugin_tessel_tessel_h_
#include <Core/Core.h>
namespace Upp {
void Tesselate(const Vector<Vector<Pointf>>& shape, Vector<Pointf>& vertex, Vector<Tuple<int, int, int>>& triangle, bool evenodd = false);
void Tesselate(const Vector<Vector<Pointf>>& shape, Vector<Pointf>& vertex, Vector<int>& index, bool evenodd = false);
};
#endif