Hi All, Assume that I have the figure below and I know coordinates of each point. How can I get coordinate of vertices of each triangle? For example
T1={{0,0},{1,0},{1,1}} ,T2={{0,0},{0,1},{1,1}}
and so on. Thanks in advance.. 
n = 2;
pts = Flatten[Table[{i, j}, {j, 0, n}, {i, 0, n}], 1]
{{0, 0}, {1, 0}, {2, 0}, {0, 1}, {1, 1}, {2, 1}, {0, 2}, {1, 2}, {2, 2}}
ListPlot[Labeled[#, #] & /@ pts, Axes -> False]