5
나는 연관된 id를 가진 2D 점 집합을 가지고 있습니다. (예를 들어, 점이 배열에 저장되면 id는 각 점 0, ..., n-1에 대한 색인입니다).CGAL 2D Delaunay 삼각 측량 : 꼭지점 ID 쌍으로 모서리를 얻는 방법
이제 나는이 포인트의 델 로니 삼각 측량을 만들고 모든 유한 에지를 나열하려고합니다. 각 가장자리에 대해, 해당하는 2 개의 정점으로 표시된 점의 ID를 갖고 싶습니다. 예 : 점 0과 점 2 사이에 모서리가있는 경우 (0,2). 이것이 가능한가?
#include <vector>
#include <CGAL\Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL\Delaunay_triangulation_2.h>
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Delaunay_triangulation_2<K> Delaunay;
typedef K::Point_2 Point;
void load_points(std::vector<Point>& rPoints)
{
rPoints.push_back(Point(10,10)); // first point
rPoints.push_back(Point(60,10)); // second point
rPoints.push_back(Point(30,40)); // third point
rPoints.push_back(Point(40,80)); // fourth point
}
void main()
{
std::vector<Point> points;
load_points(points);
Delaunay dt;
dt.insert(points.begin(),points.end());
for(Delaunay::Finite_edges_iterator it = dt.finite_edges_begin(); it != dt.finite_edges_end(); ++it)
{
}
}
sloriot : 매우 유용합니다. 감사. – 911
너무 명확! 고맙습니다. – LoveMeow