1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{
"file_type": "triangulation_file",
"format_version": "1.1",
"fallback_strategy": "nearest_side",
"transformed_components": [ "horizontal" ],
"vertices_columns": [ "source_x", "source_y", "target_x", "target_y" ],
"triangles_columns": [ "idx_vertex1", "idx_vertex2", "idx_vertex3" ],
"vertices": [
[0, 0, 0, 0],
[1, 0, 2, 0],
[1, 1, 2, 2],
[0, 1, 0, 2]
],
"triangles": [ [0, 1, 2], [0, 2, 3] ]
}
|