abstract-image 3.3.0 → 3.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +38 -27
- package/LICENSE +21 -21
- package/README.md +73 -73
- package/lib/exporters/__tests__/dxf2d-export-image/test-defs/dxf2d-ellipse.js +379 -379
- package/lib/exporters/__tests__/dxf2d-export-image/test-defs/dxf2d-group.js +123 -123
- package/lib/exporters/__tests__/dxf2d-export-image/test-defs/dxf2d-line.js +55 -55
- package/lib/exporters/__tests__/dxf2d-export-image/test-defs/dxf2d-polygon.js +89 -89
- package/lib/exporters/__tests__/dxf2d-export-image/test-defs/dxf2d-polyline.js +79 -79
- package/lib/exporters/__tests__/dxf2d-export-image/test-defs/dxf2d-rectangle.js +99 -99
- package/lib/exporters/__tests__/dxf2d-export-image/test-defs/dxf2d-text-growth-directions.js +135 -135
- package/lib/exporters/__tests__/dxf2d-export-image/test-defs/dxf2d-text.js +63 -63
- package/lib/exporters/__tests__/eps-export-image/test-defs/eps-ellipse.js +24 -24
- package/lib/exporters/__tests__/eps-export-image/test-defs/eps-empty-text.js +26 -26
- package/lib/exporters/__tests__/eps-export-image/test-defs/eps-group.js +31 -31
- package/lib/exporters/__tests__/eps-export-image/test-defs/eps-line.js +20 -20
- package/lib/exporters/__tests__/eps-export-image/test-defs/eps-polygon.js +34 -34
- package/lib/exporters/__tests__/eps-export-image/test-defs/eps-polyline.js +26 -26
- package/lib/exporters/__tests__/eps-export-image/test-defs/eps-rectangle.js +20 -20
- package/lib/exporters/__tests__/eps-export-image/test-defs/eps-text-growth-directions.js +59 -59
- package/lib/exporters/__tests__/eps-export-image/test-defs/eps-text.js +26 -26
- package/lib/exporters/__tests__/react-svg-export-image/test-defs/react-svg-binary-url.d.ts +3 -0
- package/lib/exporters/__tests__/react-svg-export-image/test-defs/react-svg-binary-url.d.ts.map +1 -0
- package/lib/exporters/__tests__/react-svg-export-image/test-defs/react-svg-binary-url.js +33 -0
- package/lib/exporters/__tests__/react-svg-export-image/test-defs/react-svg-binary-url.js.map +1 -0
- package/lib/exporters/__tests__/svg-export-image.test.d.ts +2 -0
- package/lib/exporters/__tests__/svg-export-image.test.d.ts.map +1 -0
- package/lib/exporters/__tests__/svg-export-image.test.js +35 -0
- package/lib/exporters/__tests__/svg-export-image.test.js.map +1 -0
- package/package.json +2 -2
- package/src/__stories__/react-svg-export/example-1.stories.tsx +54 -54
- package/src/__stories__/svg-export/example-1.stories.tsx +42 -42
- package/src/exporters/__tests__/dxf2d-export-image/export-test-def.ts +11 -11
- package/src/exporters/__tests__/dxf2d-export-image/export.test.tsx +13 -13
- package/src/exporters/__tests__/dxf2d-export-image/test-defs/dxf2d-ellipse.ts +405 -405
- package/src/exporters/__tests__/dxf2d-export-image/test-defs/dxf2d-group.ts +166 -166
- package/src/exporters/__tests__/dxf2d-export-image/test-defs/dxf2d-line.ts +80 -80
- package/src/exporters/__tests__/dxf2d-export-image/test-defs/dxf2d-polygon.ts +114 -114
- package/src/exporters/__tests__/dxf2d-export-image/test-defs/dxf2d-polyline.ts +103 -103
- package/src/exporters/__tests__/dxf2d-export-image/test-defs/dxf2d-rectangle.ts +125 -125
- package/src/exporters/__tests__/dxf2d-export-image/test-defs/dxf2d-text-growth-directions.ts +214 -214
- package/src/exporters/__tests__/dxf2d-export-image/test-defs/dxf2d-text.ts +97 -97
- package/src/exporters/__tests__/eps-export-image/export-test-def.ts +11 -11
- package/src/exporters/__tests__/eps-export-image/export.test.tsx +13 -13
- package/src/exporters/__tests__/eps-export-image/test-defs/eps-ellipse.ts +50 -50
- package/src/exporters/__tests__/eps-export-image/test-defs/eps-empty-text.ts +60 -60
- package/src/exporters/__tests__/eps-export-image/test-defs/eps-group.ts +74 -74
- package/src/exporters/__tests__/eps-export-image/test-defs/eps-line.ts +45 -45
- package/src/exporters/__tests__/eps-export-image/test-defs/eps-polygon.ts +65 -65
- package/src/exporters/__tests__/eps-export-image/test-defs/eps-polyline.ts +58 -58
- package/src/exporters/__tests__/eps-export-image/test-defs/eps-rectangle.ts +46 -46
- package/src/exporters/__tests__/eps-export-image/test-defs/eps-text-growth-directions.ts +138 -138
- package/src/exporters/__tests__/eps-export-image/test-defs/eps-text.ts +60 -60
- package/src/exporters/__tests__/exception/png-unsupported.test.tsx +25 -25
- package/src/exporters/__tests__/exception/react-svg-direction-exception.test.tsx +65 -65
- package/src/exporters/__tests__/exception/svg-direction-exception.test.tsx +65 -65
- package/src/exporters/__tests__/png-export-image/export-test-def.ts +11 -11
- package/src/exporters/__tests__/png-export-image/export.test.tsx +13 -13
- package/src/exporters/__tests__/png-export-image/test-defs/png-createPNG.tsx +26 -26
- package/src/exporters/__tests__/react-svg-export-image/export-test-def.tsx +13 -13
- package/src/exporters/__tests__/react-svg-export-image/export.test.tsx +13 -13
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-binary-png.tsx +26 -26
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-binary-url.tsx +26 -0
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-binary.tsx +25 -25
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-callback.tsx +60 -60
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-ellipse.tsx +28 -28
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-empty-text.tsx +35 -35
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-group.tsx +44 -44
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-line.tsx +26 -26
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-polygon.tsx +32 -32
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-polyline.tsx +33 -33
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-rectangle.tsx +27 -27
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-subimage.tsx +36 -36
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-text-bold.tsx +50 -50
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-text-growth-directions.tsx +80 -80
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-text-italic.tsx +65 -65
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-text-sub.tsx +35 -35
- package/src/exporters/__tests__/react-svg-export-image/test-defs/react-svg-text.tsx +35 -35
- package/src/exporters/__tests__/svg-export-image/export-test-def.ts +11 -11
- package/src/exporters/__tests__/svg-export-image/export.test.tsx +13 -13
- package/src/exporters/__tests__/svg-export-image/test-defs/svg-binary.tsx +25 -25
- package/src/exporters/__tests__/svg-export-image/test-defs/svg-ellipse.ts +27 -27
- package/src/exporters/__tests__/svg-export-image/test-defs/svg-empty-text.ts +34 -34
- package/src/exporters/__tests__/svg-export-image/test-defs/svg-group.ts +44 -44
- package/src/exporters/__tests__/svg-export-image/test-defs/svg-line.ts +26 -26
- package/src/exporters/__tests__/svg-export-image/test-defs/svg-polygon.ts +32 -32
- package/src/exporters/__tests__/svg-export-image/test-defs/svg-polyline.ts +33 -33
- package/src/exporters/__tests__/svg-export-image/test-defs/svg-rectangle.ts +27 -27
- package/src/exporters/__tests__/svg-export-image/test-defs/svg-text-bold.ts +50 -50
- package/src/exporters/__tests__/svg-export-image/test-defs/svg-text-growth-directions.ts +80 -80
- package/src/exporters/__tests__/svg-export-image/test-defs/svg-text-italic.ts +65 -65
- package/src/exporters/__tests__/svg-export-image/test-defs/svg-text.ts +35 -35
- package/src/exporters/dxf2d-export-image.ts +218 -218
- package/src/exporters/eps-export-image.ts +154 -154
- package/src/exporters/index.ts +3 -3
- package/src/exporters/png-export-image.ts +12 -12
- package/src/exporters/react-svg-export-image.tsx +315 -315
- package/src/exporters/svg-export-image.ts +309 -309
- package/src/index.ts +11 -11
- package/src/model/__tests__/color/export-test-def.ts +13 -13
- package/src/model/__tests__/color/export.test.tsx +14 -14
- package/src/model/__tests__/color/test-defs/color-from-string.ts +46 -46
- package/src/model/__tests__/color/test-defs/color-to-string.ts +35 -35
- package/src/model/__tests__/color/test-defs/color-undefined-2.ts +8 -8
- package/src/model/__tests__/color/test-defs/color-undefined.ts +8 -8
- package/src/model/abstract-image.ts +25 -25
- package/src/model/color.ts +52 -52
- package/src/model/component.ts +279 -279
- package/src/model/index.ts +5 -5
- package/src/model/point.ts +11 -11
- package/src/model/size.ts +11 -11
|
@@ -29,385 +29,385 @@ const dxf = AbstractImage.dxf2dExportImage(image);
|
|
|
29
29
|
exports.test = {
|
|
30
30
|
name: "dxf2d ellipse",
|
|
31
31
|
abstractImage: dxf,
|
|
32
|
-
expectedImage: `999
|
|
33
|
-
ELIGO DXF GENERATOR
|
|
34
|
-
0
|
|
35
|
-
SECTION
|
|
36
|
-
2
|
|
37
|
-
HEADER
|
|
38
|
-
9
|
|
39
|
-
$ACADVER
|
|
40
|
-
1
|
|
41
|
-
AC1009
|
|
42
|
-
9
|
|
43
|
-
$INSBASE
|
|
44
|
-
10
|
|
45
|
-
0.0
|
|
46
|
-
20
|
|
47
|
-
0.0
|
|
48
|
-
30
|
|
49
|
-
0.0
|
|
50
|
-
9
|
|
51
|
-
$EXTMIN
|
|
52
|
-
10
|
|
53
|
-
0.0
|
|
54
|
-
20
|
|
55
|
-
0.0
|
|
56
|
-
9
|
|
57
|
-
$EXTMAX
|
|
58
|
-
10
|
|
59
|
-
400
|
|
60
|
-
20
|
|
61
|
-
400
|
|
62
|
-
0
|
|
63
|
-
ENDSEC
|
|
64
|
-
0
|
|
65
|
-
SECTION
|
|
66
|
-
2
|
|
67
|
-
ENTITIES
|
|
68
|
-
0
|
|
69
|
-
POLYLINE
|
|
70
|
-
8
|
|
71
|
-
1
|
|
72
|
-
66
|
|
73
|
-
1
|
|
74
|
-
0
|
|
75
|
-
VERTEX
|
|
76
|
-
8
|
|
77
|
-
1
|
|
78
|
-
10
|
|
79
|
-
100
|
|
80
|
-
20
|
|
81
|
-
350
|
|
82
|
-
30
|
|
83
|
-
0.0
|
|
84
|
-
0
|
|
85
|
-
VERTEX
|
|
86
|
-
8
|
|
87
|
-
1
|
|
88
|
-
10
|
|
89
|
-
99.80785280403231
|
|
90
|
-
20
|
|
91
|
-
348.0490967798387
|
|
92
|
-
30
|
|
93
|
-
0.0
|
|
94
|
-
0
|
|
95
|
-
VERTEX
|
|
96
|
-
8
|
|
97
|
-
1
|
|
98
|
-
10
|
|
99
|
-
99.23879532511287
|
|
100
|
-
20
|
|
101
|
-
346.1731656763491
|
|
102
|
-
30
|
|
103
|
-
0.0
|
|
104
|
-
0
|
|
105
|
-
VERTEX
|
|
106
|
-
8
|
|
107
|
-
1
|
|
108
|
-
10
|
|
109
|
-
98.31469612302546
|
|
110
|
-
20
|
|
111
|
-
344.444297669804
|
|
112
|
-
30
|
|
113
|
-
0.0
|
|
114
|
-
0
|
|
115
|
-
VERTEX
|
|
116
|
-
8
|
|
117
|
-
1
|
|
118
|
-
10
|
|
119
|
-
97.07106781186548
|
|
120
|
-
20
|
|
121
|
-
342.9289321881345
|
|
122
|
-
30
|
|
123
|
-
0.0
|
|
124
|
-
0
|
|
125
|
-
VERTEX
|
|
126
|
-
8
|
|
127
|
-
1
|
|
128
|
-
10
|
|
129
|
-
95.55570233019603
|
|
130
|
-
20
|
|
131
|
-
341.68530387697456
|
|
132
|
-
30
|
|
133
|
-
0.0
|
|
134
|
-
0
|
|
135
|
-
VERTEX
|
|
136
|
-
8
|
|
137
|
-
1
|
|
138
|
-
10
|
|
139
|
-
93.8268343236509
|
|
140
|
-
20
|
|
141
|
-
340.76120467488715
|
|
142
|
-
30
|
|
143
|
-
0.0
|
|
144
|
-
0
|
|
145
|
-
VERTEX
|
|
146
|
-
8
|
|
147
|
-
1
|
|
148
|
-
10
|
|
149
|
-
91.95090322016128
|
|
150
|
-
20
|
|
151
|
-
340.19214719596766
|
|
152
|
-
30
|
|
153
|
-
0.0
|
|
154
|
-
0
|
|
155
|
-
VERTEX
|
|
156
|
-
8
|
|
157
|
-
1
|
|
158
|
-
10
|
|
159
|
-
90
|
|
160
|
-
20
|
|
161
|
-
340
|
|
162
|
-
30
|
|
163
|
-
0.0
|
|
164
|
-
0
|
|
165
|
-
VERTEX
|
|
166
|
-
8
|
|
167
|
-
1
|
|
168
|
-
10
|
|
169
|
-
88.04909677983872
|
|
170
|
-
20
|
|
171
|
-
340.19214719596766
|
|
172
|
-
30
|
|
173
|
-
0.0
|
|
174
|
-
0
|
|
175
|
-
VERTEX
|
|
176
|
-
8
|
|
177
|
-
1
|
|
178
|
-
10
|
|
179
|
-
86.1731656763491
|
|
180
|
-
20
|
|
181
|
-
340.76120467488715
|
|
182
|
-
30
|
|
183
|
-
0.0
|
|
184
|
-
0
|
|
185
|
-
VERTEX
|
|
186
|
-
8
|
|
187
|
-
1
|
|
188
|
-
10
|
|
189
|
-
84.44429766980397
|
|
190
|
-
20
|
|
191
|
-
341.68530387697456
|
|
192
|
-
30
|
|
193
|
-
0.0
|
|
194
|
-
0
|
|
195
|
-
VERTEX
|
|
196
|
-
8
|
|
197
|
-
1
|
|
198
|
-
10
|
|
199
|
-
82.92893218813452
|
|
200
|
-
20
|
|
201
|
-
342.9289321881345
|
|
202
|
-
30
|
|
203
|
-
0.0
|
|
204
|
-
0
|
|
205
|
-
VERTEX
|
|
206
|
-
8
|
|
207
|
-
1
|
|
208
|
-
10
|
|
209
|
-
81.68530387697454
|
|
210
|
-
20
|
|
211
|
-
344.444297669804
|
|
212
|
-
30
|
|
213
|
-
0.0
|
|
214
|
-
0
|
|
215
|
-
VERTEX
|
|
216
|
-
8
|
|
217
|
-
1
|
|
218
|
-
10
|
|
219
|
-
80.76120467488713
|
|
220
|
-
20
|
|
221
|
-
346.1731656763491
|
|
222
|
-
30
|
|
223
|
-
0.0
|
|
224
|
-
0
|
|
225
|
-
VERTEX
|
|
226
|
-
8
|
|
227
|
-
1
|
|
228
|
-
10
|
|
229
|
-
80.19214719596769
|
|
230
|
-
20
|
|
231
|
-
348.0490967798387
|
|
232
|
-
30
|
|
233
|
-
0.0
|
|
234
|
-
0
|
|
235
|
-
VERTEX
|
|
236
|
-
8
|
|
237
|
-
1
|
|
238
|
-
10
|
|
239
|
-
80
|
|
240
|
-
20
|
|
241
|
-
350
|
|
242
|
-
30
|
|
243
|
-
0.0
|
|
244
|
-
0
|
|
245
|
-
VERTEX
|
|
246
|
-
8
|
|
247
|
-
1
|
|
248
|
-
10
|
|
249
|
-
80.19214719596769
|
|
250
|
-
20
|
|
251
|
-
351.9509032201613
|
|
252
|
-
30
|
|
253
|
-
0.0
|
|
254
|
-
0
|
|
255
|
-
VERTEX
|
|
256
|
-
8
|
|
257
|
-
1
|
|
258
|
-
10
|
|
259
|
-
80.76120467488713
|
|
260
|
-
20
|
|
261
|
-
353.8268343236509
|
|
262
|
-
30
|
|
263
|
-
0.0
|
|
264
|
-
0
|
|
265
|
-
VERTEX
|
|
266
|
-
8
|
|
267
|
-
1
|
|
268
|
-
10
|
|
269
|
-
81.68530387697454
|
|
270
|
-
20
|
|
271
|
-
355.555702330196
|
|
272
|
-
30
|
|
273
|
-
0.0
|
|
274
|
-
0
|
|
275
|
-
VERTEX
|
|
276
|
-
8
|
|
277
|
-
1
|
|
278
|
-
10
|
|
279
|
-
82.92893218813452
|
|
280
|
-
20
|
|
281
|
-
357.0710678118655
|
|
282
|
-
30
|
|
283
|
-
0.0
|
|
284
|
-
0
|
|
285
|
-
VERTEX
|
|
286
|
-
8
|
|
287
|
-
1
|
|
288
|
-
10
|
|
289
|
-
84.44429766980397
|
|
290
|
-
20
|
|
291
|
-
358.31469612302544
|
|
292
|
-
30
|
|
293
|
-
0.0
|
|
294
|
-
0
|
|
295
|
-
VERTEX
|
|
296
|
-
8
|
|
297
|
-
1
|
|
298
|
-
10
|
|
299
|
-
86.1731656763491
|
|
300
|
-
20
|
|
301
|
-
359.23879532511285
|
|
302
|
-
30
|
|
303
|
-
0.0
|
|
304
|
-
0
|
|
305
|
-
VERTEX
|
|
306
|
-
8
|
|
307
|
-
1
|
|
308
|
-
10
|
|
309
|
-
88.04909677983872
|
|
310
|
-
20
|
|
311
|
-
359.8078528040323
|
|
312
|
-
30
|
|
313
|
-
0.0
|
|
314
|
-
0
|
|
315
|
-
VERTEX
|
|
316
|
-
8
|
|
317
|
-
1
|
|
318
|
-
10
|
|
319
|
-
90
|
|
320
|
-
20
|
|
321
|
-
360
|
|
322
|
-
30
|
|
323
|
-
0.0
|
|
324
|
-
0
|
|
325
|
-
VERTEX
|
|
326
|
-
8
|
|
327
|
-
1
|
|
328
|
-
10
|
|
329
|
-
91.95090322016128
|
|
330
|
-
20
|
|
331
|
-
359.80785280403234
|
|
332
|
-
30
|
|
333
|
-
0.0
|
|
334
|
-
0
|
|
335
|
-
VERTEX
|
|
336
|
-
8
|
|
337
|
-
1
|
|
338
|
-
10
|
|
339
|
-
93.8268343236509
|
|
340
|
-
20
|
|
341
|
-
359.23879532511285
|
|
342
|
-
30
|
|
343
|
-
0.0
|
|
344
|
-
0
|
|
345
|
-
VERTEX
|
|
346
|
-
8
|
|
347
|
-
1
|
|
348
|
-
10
|
|
349
|
-
95.55570233019601
|
|
350
|
-
20
|
|
351
|
-
358.31469612302544
|
|
352
|
-
30
|
|
353
|
-
0.0
|
|
354
|
-
0
|
|
355
|
-
VERTEX
|
|
356
|
-
8
|
|
357
|
-
1
|
|
358
|
-
10
|
|
359
|
-
97.07106781186548
|
|
360
|
-
20
|
|
361
|
-
357.0710678118655
|
|
362
|
-
30
|
|
363
|
-
0.0
|
|
364
|
-
0
|
|
365
|
-
VERTEX
|
|
366
|
-
8
|
|
367
|
-
1
|
|
368
|
-
10
|
|
369
|
-
98.31469612302546
|
|
370
|
-
20
|
|
371
|
-
355.555702330196
|
|
372
|
-
30
|
|
373
|
-
0.0
|
|
374
|
-
0
|
|
375
|
-
VERTEX
|
|
376
|
-
8
|
|
377
|
-
1
|
|
378
|
-
10
|
|
379
|
-
99.23879532511286
|
|
380
|
-
20
|
|
381
|
-
353.8268343236509
|
|
382
|
-
30
|
|
383
|
-
0.0
|
|
384
|
-
0
|
|
385
|
-
VERTEX
|
|
386
|
-
8
|
|
387
|
-
1
|
|
388
|
-
10
|
|
389
|
-
99.80785280403231
|
|
390
|
-
20
|
|
391
|
-
351.9509032201613
|
|
392
|
-
30
|
|
393
|
-
0.0
|
|
394
|
-
0
|
|
395
|
-
VERTEX
|
|
396
|
-
8
|
|
397
|
-
1
|
|
398
|
-
10
|
|
399
|
-
100
|
|
400
|
-
20
|
|
401
|
-
350
|
|
402
|
-
30
|
|
403
|
-
0.0
|
|
404
|
-
0
|
|
405
|
-
SEQEND
|
|
406
|
-
8
|
|
407
|
-
1
|
|
408
|
-
0
|
|
409
|
-
ENDSEC
|
|
410
|
-
0
|
|
32
|
+
expectedImage: `999
|
|
33
|
+
ELIGO DXF GENERATOR
|
|
34
|
+
0
|
|
35
|
+
SECTION
|
|
36
|
+
2
|
|
37
|
+
HEADER
|
|
38
|
+
9
|
|
39
|
+
$ACADVER
|
|
40
|
+
1
|
|
41
|
+
AC1009
|
|
42
|
+
9
|
|
43
|
+
$INSBASE
|
|
44
|
+
10
|
|
45
|
+
0.0
|
|
46
|
+
20
|
|
47
|
+
0.0
|
|
48
|
+
30
|
|
49
|
+
0.0
|
|
50
|
+
9
|
|
51
|
+
$EXTMIN
|
|
52
|
+
10
|
|
53
|
+
0.0
|
|
54
|
+
20
|
|
55
|
+
0.0
|
|
56
|
+
9
|
|
57
|
+
$EXTMAX
|
|
58
|
+
10
|
|
59
|
+
400
|
|
60
|
+
20
|
|
61
|
+
400
|
|
62
|
+
0
|
|
63
|
+
ENDSEC
|
|
64
|
+
0
|
|
65
|
+
SECTION
|
|
66
|
+
2
|
|
67
|
+
ENTITIES
|
|
68
|
+
0
|
|
69
|
+
POLYLINE
|
|
70
|
+
8
|
|
71
|
+
1
|
|
72
|
+
66
|
|
73
|
+
1
|
|
74
|
+
0
|
|
75
|
+
VERTEX
|
|
76
|
+
8
|
|
77
|
+
1
|
|
78
|
+
10
|
|
79
|
+
100
|
|
80
|
+
20
|
|
81
|
+
350
|
|
82
|
+
30
|
|
83
|
+
0.0
|
|
84
|
+
0
|
|
85
|
+
VERTEX
|
|
86
|
+
8
|
|
87
|
+
1
|
|
88
|
+
10
|
|
89
|
+
99.80785280403231
|
|
90
|
+
20
|
|
91
|
+
348.0490967798387
|
|
92
|
+
30
|
|
93
|
+
0.0
|
|
94
|
+
0
|
|
95
|
+
VERTEX
|
|
96
|
+
8
|
|
97
|
+
1
|
|
98
|
+
10
|
|
99
|
+
99.23879532511287
|
|
100
|
+
20
|
|
101
|
+
346.1731656763491
|
|
102
|
+
30
|
|
103
|
+
0.0
|
|
104
|
+
0
|
|
105
|
+
VERTEX
|
|
106
|
+
8
|
|
107
|
+
1
|
|
108
|
+
10
|
|
109
|
+
98.31469612302546
|
|
110
|
+
20
|
|
111
|
+
344.444297669804
|
|
112
|
+
30
|
|
113
|
+
0.0
|
|
114
|
+
0
|
|
115
|
+
VERTEX
|
|
116
|
+
8
|
|
117
|
+
1
|
|
118
|
+
10
|
|
119
|
+
97.07106781186548
|
|
120
|
+
20
|
|
121
|
+
342.9289321881345
|
|
122
|
+
30
|
|
123
|
+
0.0
|
|
124
|
+
0
|
|
125
|
+
VERTEX
|
|
126
|
+
8
|
|
127
|
+
1
|
|
128
|
+
10
|
|
129
|
+
95.55570233019603
|
|
130
|
+
20
|
|
131
|
+
341.68530387697456
|
|
132
|
+
30
|
|
133
|
+
0.0
|
|
134
|
+
0
|
|
135
|
+
VERTEX
|
|
136
|
+
8
|
|
137
|
+
1
|
|
138
|
+
10
|
|
139
|
+
93.8268343236509
|
|
140
|
+
20
|
|
141
|
+
340.76120467488715
|
|
142
|
+
30
|
|
143
|
+
0.0
|
|
144
|
+
0
|
|
145
|
+
VERTEX
|
|
146
|
+
8
|
|
147
|
+
1
|
|
148
|
+
10
|
|
149
|
+
91.95090322016128
|
|
150
|
+
20
|
|
151
|
+
340.19214719596766
|
|
152
|
+
30
|
|
153
|
+
0.0
|
|
154
|
+
0
|
|
155
|
+
VERTEX
|
|
156
|
+
8
|
|
157
|
+
1
|
|
158
|
+
10
|
|
159
|
+
90
|
|
160
|
+
20
|
|
161
|
+
340
|
|
162
|
+
30
|
|
163
|
+
0.0
|
|
164
|
+
0
|
|
165
|
+
VERTEX
|
|
166
|
+
8
|
|
167
|
+
1
|
|
168
|
+
10
|
|
169
|
+
88.04909677983872
|
|
170
|
+
20
|
|
171
|
+
340.19214719596766
|
|
172
|
+
30
|
|
173
|
+
0.0
|
|
174
|
+
0
|
|
175
|
+
VERTEX
|
|
176
|
+
8
|
|
177
|
+
1
|
|
178
|
+
10
|
|
179
|
+
86.1731656763491
|
|
180
|
+
20
|
|
181
|
+
340.76120467488715
|
|
182
|
+
30
|
|
183
|
+
0.0
|
|
184
|
+
0
|
|
185
|
+
VERTEX
|
|
186
|
+
8
|
|
187
|
+
1
|
|
188
|
+
10
|
|
189
|
+
84.44429766980397
|
|
190
|
+
20
|
|
191
|
+
341.68530387697456
|
|
192
|
+
30
|
|
193
|
+
0.0
|
|
194
|
+
0
|
|
195
|
+
VERTEX
|
|
196
|
+
8
|
|
197
|
+
1
|
|
198
|
+
10
|
|
199
|
+
82.92893218813452
|
|
200
|
+
20
|
|
201
|
+
342.9289321881345
|
|
202
|
+
30
|
|
203
|
+
0.0
|
|
204
|
+
0
|
|
205
|
+
VERTEX
|
|
206
|
+
8
|
|
207
|
+
1
|
|
208
|
+
10
|
|
209
|
+
81.68530387697454
|
|
210
|
+
20
|
|
211
|
+
344.444297669804
|
|
212
|
+
30
|
|
213
|
+
0.0
|
|
214
|
+
0
|
|
215
|
+
VERTEX
|
|
216
|
+
8
|
|
217
|
+
1
|
|
218
|
+
10
|
|
219
|
+
80.76120467488713
|
|
220
|
+
20
|
|
221
|
+
346.1731656763491
|
|
222
|
+
30
|
|
223
|
+
0.0
|
|
224
|
+
0
|
|
225
|
+
VERTEX
|
|
226
|
+
8
|
|
227
|
+
1
|
|
228
|
+
10
|
|
229
|
+
80.19214719596769
|
|
230
|
+
20
|
|
231
|
+
348.0490967798387
|
|
232
|
+
30
|
|
233
|
+
0.0
|
|
234
|
+
0
|
|
235
|
+
VERTEX
|
|
236
|
+
8
|
|
237
|
+
1
|
|
238
|
+
10
|
|
239
|
+
80
|
|
240
|
+
20
|
|
241
|
+
350
|
|
242
|
+
30
|
|
243
|
+
0.0
|
|
244
|
+
0
|
|
245
|
+
VERTEX
|
|
246
|
+
8
|
|
247
|
+
1
|
|
248
|
+
10
|
|
249
|
+
80.19214719596769
|
|
250
|
+
20
|
|
251
|
+
351.9509032201613
|
|
252
|
+
30
|
|
253
|
+
0.0
|
|
254
|
+
0
|
|
255
|
+
VERTEX
|
|
256
|
+
8
|
|
257
|
+
1
|
|
258
|
+
10
|
|
259
|
+
80.76120467488713
|
|
260
|
+
20
|
|
261
|
+
353.8268343236509
|
|
262
|
+
30
|
|
263
|
+
0.0
|
|
264
|
+
0
|
|
265
|
+
VERTEX
|
|
266
|
+
8
|
|
267
|
+
1
|
|
268
|
+
10
|
|
269
|
+
81.68530387697454
|
|
270
|
+
20
|
|
271
|
+
355.555702330196
|
|
272
|
+
30
|
|
273
|
+
0.0
|
|
274
|
+
0
|
|
275
|
+
VERTEX
|
|
276
|
+
8
|
|
277
|
+
1
|
|
278
|
+
10
|
|
279
|
+
82.92893218813452
|
|
280
|
+
20
|
|
281
|
+
357.0710678118655
|
|
282
|
+
30
|
|
283
|
+
0.0
|
|
284
|
+
0
|
|
285
|
+
VERTEX
|
|
286
|
+
8
|
|
287
|
+
1
|
|
288
|
+
10
|
|
289
|
+
84.44429766980397
|
|
290
|
+
20
|
|
291
|
+
358.31469612302544
|
|
292
|
+
30
|
|
293
|
+
0.0
|
|
294
|
+
0
|
|
295
|
+
VERTEX
|
|
296
|
+
8
|
|
297
|
+
1
|
|
298
|
+
10
|
|
299
|
+
86.1731656763491
|
|
300
|
+
20
|
|
301
|
+
359.23879532511285
|
|
302
|
+
30
|
|
303
|
+
0.0
|
|
304
|
+
0
|
|
305
|
+
VERTEX
|
|
306
|
+
8
|
|
307
|
+
1
|
|
308
|
+
10
|
|
309
|
+
88.04909677983872
|
|
310
|
+
20
|
|
311
|
+
359.8078528040323
|
|
312
|
+
30
|
|
313
|
+
0.0
|
|
314
|
+
0
|
|
315
|
+
VERTEX
|
|
316
|
+
8
|
|
317
|
+
1
|
|
318
|
+
10
|
|
319
|
+
90
|
|
320
|
+
20
|
|
321
|
+
360
|
|
322
|
+
30
|
|
323
|
+
0.0
|
|
324
|
+
0
|
|
325
|
+
VERTEX
|
|
326
|
+
8
|
|
327
|
+
1
|
|
328
|
+
10
|
|
329
|
+
91.95090322016128
|
|
330
|
+
20
|
|
331
|
+
359.80785280403234
|
|
332
|
+
30
|
|
333
|
+
0.0
|
|
334
|
+
0
|
|
335
|
+
VERTEX
|
|
336
|
+
8
|
|
337
|
+
1
|
|
338
|
+
10
|
|
339
|
+
93.8268343236509
|
|
340
|
+
20
|
|
341
|
+
359.23879532511285
|
|
342
|
+
30
|
|
343
|
+
0.0
|
|
344
|
+
0
|
|
345
|
+
VERTEX
|
|
346
|
+
8
|
|
347
|
+
1
|
|
348
|
+
10
|
|
349
|
+
95.55570233019601
|
|
350
|
+
20
|
|
351
|
+
358.31469612302544
|
|
352
|
+
30
|
|
353
|
+
0.0
|
|
354
|
+
0
|
|
355
|
+
VERTEX
|
|
356
|
+
8
|
|
357
|
+
1
|
|
358
|
+
10
|
|
359
|
+
97.07106781186548
|
|
360
|
+
20
|
|
361
|
+
357.0710678118655
|
|
362
|
+
30
|
|
363
|
+
0.0
|
|
364
|
+
0
|
|
365
|
+
VERTEX
|
|
366
|
+
8
|
|
367
|
+
1
|
|
368
|
+
10
|
|
369
|
+
98.31469612302546
|
|
370
|
+
20
|
|
371
|
+
355.555702330196
|
|
372
|
+
30
|
|
373
|
+
0.0
|
|
374
|
+
0
|
|
375
|
+
VERTEX
|
|
376
|
+
8
|
|
377
|
+
1
|
|
378
|
+
10
|
|
379
|
+
99.23879532511286
|
|
380
|
+
20
|
|
381
|
+
353.8268343236509
|
|
382
|
+
30
|
|
383
|
+
0.0
|
|
384
|
+
0
|
|
385
|
+
VERTEX
|
|
386
|
+
8
|
|
387
|
+
1
|
|
388
|
+
10
|
|
389
|
+
99.80785280403231
|
|
390
|
+
20
|
|
391
|
+
351.9509032201613
|
|
392
|
+
30
|
|
393
|
+
0.0
|
|
394
|
+
0
|
|
395
|
+
VERTEX
|
|
396
|
+
8
|
|
397
|
+
1
|
|
398
|
+
10
|
|
399
|
+
100
|
|
400
|
+
20
|
|
401
|
+
350
|
|
402
|
+
30
|
|
403
|
+
0.0
|
|
404
|
+
0
|
|
405
|
+
SEQEND
|
|
406
|
+
8
|
|
407
|
+
1
|
|
408
|
+
0
|
|
409
|
+
ENDSEC
|
|
410
|
+
0
|
|
411
411
|
EOF`,
|
|
412
412
|
};
|
|
413
413
|
//# sourceMappingURL=dxf2d-ellipse.js.map
|