ultimatepp/autotest/Delunay/Delunay.cpp
cxl 2367ed0118 ScatterDraw and ScatterCtrl moved to bazaar
git-svn-id: svn://ultimatepp.org/upp/trunk@15816 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2021-03-06 16:30:31 +00:00

13 lines
385 B
C++

#include <Core/Core.h>
#include <Geom/Geom.h>
using namespace Upp;
CONSOLE_APP_MAIN
{
Array<Pointf> poly;
poly << Pointf(18.951605, 0.8) << Pointf(19.714577, 0.6168874) << Pointf(20.14996, 0) << Pointf(19.714577, -0.6168874) << Pointf(18.951605, -0.8) << Pointf(17.753117, 0) << Pointf(18.188618, -0.6) << Pointf(18.188618, 0.6);
Delaunay del;
del.Build(poly);
}