File: render_mapbox_earcut_test_data.py

package info (click to toggle)
ezdxf 1.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 104,528 kB
  • sloc: python: 182,341; makefile: 116; lisp: 20; ansic: 4
file content (246 lines) | stat: -rw-r--r-- 6,486 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
# Copyright (c) 2022, Manfred Moitzi
# License: MIT License

from pathlib import Path
import json
import ezdxf
from collections import deque
from ezdxf.render import forms
from ezdxf.math import BoundingBox2d
from ezdxf.math.triangulation import mapbox_earcut_2d

CWD = Path("~/Desktop/Outbox").expanduser()
if not CWD.exists():
    CWD = Path(".")

TEST_DATA_DIR = Path(r"..\..\integration_tests\mapbox-test-data")


def hole_in_hole():
    shape = list(forms.square(4, center=True))
    hole0 = list(forms.square(3, center=True))
    hole1 = list(forms.square(2, center=True))
    holes = [hole0, hole1]
    return shape, holes


def hole_beyond_exterior_path():
    shape = list(forms.square(4, center=True))
    hole = list(forms.translate(shape, (2, 2)))
    return shape, [hole]


def render(func):
    doc = ezdxf.new()
    msp = doc.modelspace()
    colors = deque([1, 2, 3, 4, 5, 6])

    shape, holes = func()
    msp.add_lwpolyline(shape, close=True)
    for hole in holes:
        msp.add_lwpolyline(hole, close=True)
    for triangle in mapbox_earcut_2d(shape, holes=holes):
        msp.add_solid(triangle, dxfattribs={"color": colors[0]})
        colors.rotate()

    doc.set_modelspace_vport(10)
    doc.saveas(CWD / f"{func.__name__}.dxf")


def render_mapbox_test_cases():
    for sample in TEST_DATA_DIR.glob("*.json"):
        render_test_case(sample)


def render_test_case(filepath: Path):
    print(f"processing: {filepath.name}")
    doc = ezdxf.new()
    msp = doc.modelspace()
    colors = deque([1, 2, 3, 4, 5, 6])

    with filepath.open("rt") as fp:
        data = json.load(fp)
        shape = data[0]
        holes = data[1:]

    msp.add_lwpolyline(shape, close=True, dxfattribs={"layer": "SOURCE"})
    for hole in holes:
        msp.add_lwpolyline(hole, close=True, dxfattribs={"layer": "SOURCE"})
    for triangle in mapbox_earcut_2d(shape, holes=holes):
        msp.add_solid(
            triangle, dxfattribs={"color": colors[0], "layer": "TRIANGLES"}
        )
        colors.rotate()
    bbox = BoundingBox2d(shape)
    doc.set_modelspace_vport(bbox.size.y, bbox.center)
    doc.saveas(CWD / f"{filepath.stem}.dxf")


def render_polydata():
    for data in POLYGON_DATA0:
        filename = data.name.replace(" ", "_") + ".dxf"
        doc = ezdxf.new()
        msp = doc.modelspace()
        colors = deque([1, 2, 3, 4, 5, 6])
        for triangle in mapbox_earcut_2d(data.vertices):
            msp.add_solid(triangle, dxfattribs={"color": colors[0]})
            colors.rotate()
        msp.add_lwpolyline(data.vertices, close=True)
        bbox = BoundingBox2d(data.vertices)
        doc.set_modelspace_vport(bbox.size.y, bbox.center)
        doc.saveas(CWD / filename)


class PolyData:
    def __init__(self, name, vertices):
        self.name = name
        self.vertices = vertices


POLYGON_DATA0 = [
    PolyData(
        name="Star",
        vertices=[
            (350, 75),
            (379, 161),
            (469, 161),
            (397, 215),
            (423, 301),
            (350, 250),
            (277, 301),
            (303, 215),
            (231, 161),
            (321, 161),
        ],
    ),
    PolyData(
        name="Simple Diamond",
        vertices=[
            (0, 1),
            (-1, 0),
            (0, -1),
            (1, 0),
        ],
    ),
    PolyData(
        name="No Concave Vertex",
        vertices=[
            (-2.0, -17.0),
            (-2.0, -8.0),
            (-8.0, -2.0),
            (-17.0, -2.0),
            (-20.0, -8.0),
            (-18.0, -17.0),
            (-12.0, -24.0),
            (-7.0, -22.0),
        ],
    ),
    PolyData(
        name="Slanted Side",
        vertices=[
            (-10.0, -20.0),
            (-10.0, -30.0),
            (0.0, -20.0),
            (0.0, -10.0),
            (-20.0, -10.0),
            (-20.0, -20.0),
        ],
    ),
    PolyData(
        name="New Thing",
        vertices=[
            (-20.0, -20.0),
            (-10.0, -20.0),
            (-10.0, -30.0),
            (0.0, -20.0),
            (10.0, -20.0),
            (0.0, -10.0),
            (10.0, 0.0),
            (0.0, 0.0),
            (-10.0, -10.0),
            (-10.0, 0.0),
            (-20.0, -10.0),
            (-30.0, -10.0),
        ],
    ),
    PolyData(
        name="Edge Case 1",
        vertices=[
            (40.04332790675601, -30.70794551983977),
            (54.13, -30.70794551983977),
            (54.13, -28.03),
            (69.13, -28.03),
            (69.11, -52.53),
            (40.04332790675601, -52.53),
        ],
    ),
    PolyData(  # 6
        name="Edge Case 2",
        vertices=[
            (229.28340553, 78.91250014),
            (258.42948809, 17.98278109),
            (132.01956999, -22.96900817),
            (107.97774096, 23.39276058),
            (65.85573925, 28.63846858),
            (41.66373597, -92.78859248),
            (-5.59948763, -54.18987786),
            (-44.61508682, -69.7461117),
            (-28.41208894, -106.93810071),
            (-71.11899145, -125.56044277),
            (-100.84787818, -88.51853387),
            (-211.53564549, -160.76853269),
            (-244.22754588, -147.51172179),
            (-226.83717643, -42.0984372),
            (-230.65279618, -10.5455196),
            (-240.50239817, 70.87826746),
            (-12.48219264, 137.70176109),
            (4.65848369, 204.21077075),
            (176.5243417, 193.73497584),
            (171.13537712, 87.27009315),
            (229.28340553, 78.91250014),
        ],
    ),
    PolyData(  # 7
        name="Edge Case 3-A",
        vertices=[
            (229, 78),
            (66, 28.7),
            (-244.2, -147.5),
            (-226, -42),
            (229, 78),
        ],
    ),
    PolyData(  # 8
        name="Edge Case 3-B",
        vertices=[
            (229000, 78000),
            (66000, 28700),
            (-244200, -147500),
            (-226000, -42000),
            (229000, 78000),
        ],
    ),
    PolyData(  # 9
        name="Edge Case 4",
        vertices=[
            (-1179, -842),
            (-489, -1049),
            (101, -1226),
            (520, -558),
            (779, -175),
            (856, 257),
            (544, 806),
            (-72, 713),
            (-1004, 945),
            (-988, 62),
            (-1179, -842),
        ],
    ),
]


if __name__ == "__main__":
    render_mapbox_test_cases()
    render(hole_in_hole)
    render(hole_beyond_exterior_path)
    # render_polydata()