Add tesselator_test.

This commit is contained in:
vng 2011-09-15 19:38:03 +03:00 committed by Alex Zolotarev
parent 9fe2a0d2dd
commit 60fe8769d9
3 changed files with 61 additions and 0 deletions

View file

@ -34,3 +34,5 @@ SOURCES += \
scales_test.cpp \
test_polylines.cpp \
geometry_serialization_test.cpp \
tesselator_test.cpp

View file

@ -0,0 +1,45 @@
#include "../../testing/testing.hpp"
#include "../tesselator.hpp"
#include "../../base/logging.hpp"
namespace
{
typedef m2::PointD P;
class DoDump
{
size_t & m_count;
public:
DoDump(size_t & count) : m_count(count)
{
m_count = 0;
}
void operator() (P const & p1, P const & p2, P const & p3)
{
++m_count;
LOG(LINFO, (p1, p2, p3));
}
};
size_t RunTess(P const * arr, size_t count)
{
list<vector<P> > l;
l.push_back(vector<P>());
l.back().assign(arr, arr + count);
tesselator::TrianglesInfo info;
tesselator::TesselateInterior(l, info);
info.ForEachTriangle(DoDump(count));
return count;
}
}
UNIT_TEST(TesselatorSelfISect_Smoke)
{
P arr[] = { P(0, 0), P(0, 4), P(4, 4), P(1, 1), P(1, 3), P(4, 0), P(0, 0) };
TEST_EQUAL(6, RunTess(arr, ARRAY_SIZE(arr)), ());
}

View file

@ -105,6 +105,7 @@ namespace tesselator
public:
void MakeTrianglesChain(PointsInfo const & points, iter_t start, vector<Edge> & chain, bool goodOrder) const;
size_t GetCount() const { return m_triangles.size(); }
Triangle GetTriangle(int i) const { return m_triangles[i]; }
};
@ -134,6 +135,19 @@ namespace tesselator
inline bool IsEmpty() const { return m_triangles.empty(); }
template <class ToDo> void ForEachTriangle(ToDo toDo) const
{
for (list<ListInfo>::const_iterator i = m_triangles.begin(); i != m_triangles.end(); ++i)
{
size_t const count = i->GetCount();
for (size_t j = 0; j < count; ++j)
{
Triangle const t = i->GetTriangle(j);
toDo(m_points[t.m_p[0]], m_points[t.m_p[1]], m_points[t.m_p[2]]);
}
}
}
// Convert points from double to uint.
void GetPointsInfo(m2::PointU const & baseP, m2::PointU const & maxP,
function<m2::PointU (m2::PointD)> const & convert, PointsInfo & info) const;