I did the periodic triangulation of five points with the default domain.The points were (0.2,0.3)
, (0.5,0.1)
, (0.7,0.6)
, (0.8,0.8)
, (0.5,0.11)
. After iterating over the faces for 1 sheeted covering and printing the output, I got this result:
0.8 0.8
, 0.7 0.6
, 1.2 1.3
and so on.
I know the points 1.2 1.3
means the point 0.2 0.3
as the domain is iso_ rectangle. But I want it to print 0.2 0.3
instead of 1.2 1.3
so that I could find the delaunay neighbours of a given vertex.
Thank you