circuit-json-to-lbrn 0.0.18 → 0.0.19
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/dist/index.js +25 -20
- package/lib/element-handlers/addPcbHole/addCirclePcbHole.ts +2 -1
- package/lib/element-handlers/addPcbHole/addOvalPcbHole.ts +2 -1
- package/lib/element-handlers/addPcbHole/addPillPcbHole.ts +2 -1
- package/lib/element-handlers/addPcbHole/addRectPcbHole.ts +2 -1
- package/lib/element-handlers/addPcbHole/addRotatedPillPcbHole.ts +2 -1
- package/lib/element-handlers/addPcbVia/index.ts +1 -1
- package/lib/element-handlers/addPlatedHole/addCirclePlatedHole.ts +1 -2
- package/lib/element-handlers/addPlatedHole/addCircularHoleWithRectPad.ts +1 -1
- package/lib/element-handlers/addPlatedHole/addHoleWithPolygonPad.ts +11 -3
- package/lib/element-handlers/addPlatedHole/addOvalPlatedHole.ts +6 -2
- package/lib/element-handlers/addPlatedHole/addPillHoleWithRectPad.ts +1 -1
- package/lib/element-handlers/addPlatedHole/addPillPlatedHole.ts +5 -1
- package/lib/element-handlers/addPlatedHole/addRotatedPillHoleWithRectPad.ts +1 -1
- package/package.json +1 -1
- package/tests/examples/addPcbVia/__snapshots__/pcb-via-with-soldermask.snap.svg +1 -1
- package/tests/examples/soldermask/__snapshots__/soldermask-only.snap.svg +3 -3
- package/tests/examples/soldermask/soldermask-only.test.ts +10 -0
package/dist/index.js
CHANGED
|
@@ -88,7 +88,7 @@ var addCirclePlatedHole = (platedHole, ctx) => {
|
|
|
88
88
|
})
|
|
89
89
|
);
|
|
90
90
|
}
|
|
91
|
-
if (platedHole.hole_diameter > 0) {
|
|
91
|
+
if (platedHole.hole_diameter > 0 && includeCopper) {
|
|
92
92
|
const innerRadius = platedHole.hole_diameter / 2;
|
|
93
93
|
const inner = createCirclePath(centerX, centerY, innerRadius);
|
|
94
94
|
project.children.push(
|
|
@@ -180,7 +180,7 @@ var addOvalPlatedHole = (platedHole, ctx) => {
|
|
|
180
180
|
})
|
|
181
181
|
);
|
|
182
182
|
}
|
|
183
|
-
if (platedHole.hole_width > 0 && platedHole.hole_height > 0) {
|
|
183
|
+
if (platedHole.hole_width > 0 && platedHole.hole_height > 0 && includeCopper) {
|
|
184
184
|
const inner = createOvalPath(
|
|
185
185
|
centerX,
|
|
186
186
|
centerY,
|
|
@@ -337,7 +337,7 @@ var addCircularHoleWithRectPad = (platedHole, ctx) => {
|
|
|
337
337
|
})
|
|
338
338
|
);
|
|
339
339
|
}
|
|
340
|
-
if (holeRadius > 0) {
|
|
340
|
+
if (holeRadius > 0 && includeCopper) {
|
|
341
341
|
const holeCenterX = centerX + platedHole.hole_offset_x;
|
|
342
342
|
const holeCenterY = centerY + platedHole.hole_offset_y;
|
|
343
343
|
const holePath = createCirclePath(holeCenterX, holeCenterY, holeRadius, 32);
|
|
@@ -491,7 +491,7 @@ var addPillHoleWithRectPad = (platedHole, ctx) => {
|
|
|
491
491
|
}
|
|
492
492
|
const holeWidth = platedHole.hole_width;
|
|
493
493
|
const holeHeight = platedHole.hole_height;
|
|
494
|
-
if (holeWidth > 0 && holeHeight > 0) {
|
|
494
|
+
if (holeWidth > 0 && holeHeight > 0 && includeCopper) {
|
|
495
495
|
const holeCenterX = centerX + platedHole.hole_offset_x;
|
|
496
496
|
const holeCenterY = centerY + platedHole.hole_offset_y;
|
|
497
497
|
const holePath = createPillPath(
|
|
@@ -575,7 +575,7 @@ var addRotatedPillHoleWithRectPad = (platedHole, ctx) => {
|
|
|
575
575
|
const holeWidth = platedHole.hole_width;
|
|
576
576
|
const holeHeight = platedHole.hole_height;
|
|
577
577
|
const holeRotation = (platedHole.hole_ccw_rotation ?? 0) * (Math.PI / 180);
|
|
578
|
-
if (holeWidth > 0 && holeHeight > 0) {
|
|
578
|
+
if (holeWidth > 0 && holeHeight > 0 && includeCopper) {
|
|
579
579
|
const holeCenterX = centerX + platedHole.hole_offset_x;
|
|
580
580
|
const holeCenterY = centerY + platedHole.hole_offset_y;
|
|
581
581
|
const holePath = createPillPath(
|
|
@@ -628,7 +628,7 @@ var addHoleWithPolygonPad = (platedHole, ctx) => {
|
|
|
628
628
|
includeSoldermask,
|
|
629
629
|
soldermaskMargin
|
|
630
630
|
} = ctx;
|
|
631
|
-
if (platedHole.pad_outline.length >= 3) {
|
|
631
|
+
if (platedHole.pad_outline.length >= 3 && includeCopper) {
|
|
632
632
|
const pad = createPolygonPathFromOutline(
|
|
633
633
|
platedHole.pad_outline,
|
|
634
634
|
platedHole.x + origin.x,
|
|
@@ -655,7 +655,7 @@ var addHoleWithPolygonPad = (platedHole, ctx) => {
|
|
|
655
655
|
);
|
|
656
656
|
}
|
|
657
657
|
}
|
|
658
|
-
if (platedHole.hole_shape === "circle" && platedHole.hole_diameter) {
|
|
658
|
+
if (platedHole.hole_shape === "circle" && platedHole.hole_diameter && includeCopper) {
|
|
659
659
|
const centerX = platedHole.x + platedHole.hole_offset_x + origin.x;
|
|
660
660
|
const centerY = platedHole.y + platedHole.hole_offset_y + origin.y;
|
|
661
661
|
const radius = platedHole.hole_diameter / 2;
|
|
@@ -669,7 +669,7 @@ var addHoleWithPolygonPad = (platedHole, ctx) => {
|
|
|
669
669
|
})
|
|
670
670
|
);
|
|
671
671
|
}
|
|
672
|
-
if (platedHole.hole_shape === "pill" && platedHole.hole_diameter) {
|
|
672
|
+
if (platedHole.hole_shape === "pill" && platedHole.hole_diameter && includeCopper) {
|
|
673
673
|
const centerX = platedHole.x + platedHole.hole_offset_x + origin.x;
|
|
674
674
|
const centerY = platedHole.y + platedHole.hole_offset_y + origin.y;
|
|
675
675
|
const radius = platedHole.hole_diameter / 2;
|
|
@@ -731,7 +731,7 @@ var addPcbPlatedHolePill = (platedHole, ctx) => {
|
|
|
731
731
|
})
|
|
732
732
|
);
|
|
733
733
|
}
|
|
734
|
-
if (platedHole.hole_width > 0 && platedHole.hole_height > 0) {
|
|
734
|
+
if (platedHole.hole_width > 0 && platedHole.hole_height > 0 && includeCopper) {
|
|
735
735
|
const inner = createPillPath(
|
|
736
736
|
centerX,
|
|
737
737
|
centerY,
|
|
@@ -1422,7 +1422,7 @@ var addPcbVia = (via, ctx) => {
|
|
|
1422
1422
|
})
|
|
1423
1423
|
);
|
|
1424
1424
|
}
|
|
1425
|
-
if (via.hole_diameter > 0) {
|
|
1425
|
+
if (via.hole_diameter > 0 && includeCopper) {
|
|
1426
1426
|
const innerRadius = via.hole_diameter / 2;
|
|
1427
1427
|
const inner = createCirclePath(centerX, centerY, innerRadius);
|
|
1428
1428
|
project.children.push(
|
|
@@ -1445,7 +1445,8 @@ var addCirclePcbHole = (hole, ctx) => {
|
|
|
1445
1445
|
soldermaskCutSetting,
|
|
1446
1446
|
origin,
|
|
1447
1447
|
includeSoldermask,
|
|
1448
|
-
soldermaskMargin
|
|
1448
|
+
soldermaskMargin,
|
|
1449
|
+
includeCopper
|
|
1449
1450
|
} = ctx;
|
|
1450
1451
|
const centerX = hole.x + origin.x;
|
|
1451
1452
|
const centerY = hole.y + origin.y;
|
|
@@ -1461,7 +1462,7 @@ var addCirclePcbHole = (hole, ctx) => {
|
|
|
1461
1462
|
})
|
|
1462
1463
|
);
|
|
1463
1464
|
}
|
|
1464
|
-
if (hole.hole_diameter > 0) {
|
|
1465
|
+
if (hole.hole_diameter > 0 && includeCopper) {
|
|
1465
1466
|
const radius = hole.hole_diameter / 2;
|
|
1466
1467
|
const circlePath = createCirclePath(centerX, centerY, radius);
|
|
1467
1468
|
project.children.push(
|
|
@@ -1484,7 +1485,8 @@ var addRectPcbHole = (hole, ctx) => {
|
|
|
1484
1485
|
soldermaskCutSetting,
|
|
1485
1486
|
origin,
|
|
1486
1487
|
includeSoldermask,
|
|
1487
|
-
soldermaskMargin
|
|
1488
|
+
soldermaskMargin,
|
|
1489
|
+
includeCopper
|
|
1488
1490
|
} = ctx;
|
|
1489
1491
|
const centerX = hole.x + origin.x;
|
|
1490
1492
|
const centerY = hole.y + origin.y;
|
|
@@ -1506,7 +1508,7 @@ var addRectPcbHole = (hole, ctx) => {
|
|
|
1506
1508
|
})
|
|
1507
1509
|
);
|
|
1508
1510
|
}
|
|
1509
|
-
if (hole.hole_width > 0 && hole.hole_height > 0) {
|
|
1511
|
+
if (hole.hole_width > 0 && hole.hole_height > 0 && includeCopper) {
|
|
1510
1512
|
const rectPath = createRoundedRectPath(
|
|
1511
1513
|
centerX,
|
|
1512
1514
|
centerY,
|
|
@@ -1535,7 +1537,8 @@ var addOvalPcbHole = (hole, ctx) => {
|
|
|
1535
1537
|
soldermaskCutSetting,
|
|
1536
1538
|
origin,
|
|
1537
1539
|
includeSoldermask,
|
|
1538
|
-
soldermaskMargin
|
|
1540
|
+
soldermaskMargin,
|
|
1541
|
+
includeCopper
|
|
1539
1542
|
} = ctx;
|
|
1540
1543
|
const centerX = hole.x + origin.x;
|
|
1541
1544
|
const centerY = hole.y + origin.y;
|
|
@@ -1555,7 +1558,7 @@ var addOvalPcbHole = (hole, ctx) => {
|
|
|
1555
1558
|
})
|
|
1556
1559
|
);
|
|
1557
1560
|
}
|
|
1558
|
-
if (hole.hole_width > 0 && hole.hole_height > 0) {
|
|
1561
|
+
if (hole.hole_width > 0 && hole.hole_height > 0 && includeCopper) {
|
|
1559
1562
|
const ovalPath = createOvalPath(
|
|
1560
1563
|
centerX,
|
|
1561
1564
|
centerY,
|
|
@@ -1582,7 +1585,8 @@ var addPillPcbHole = (hole, ctx) => {
|
|
|
1582
1585
|
soldermaskCutSetting,
|
|
1583
1586
|
origin,
|
|
1584
1587
|
includeSoldermask,
|
|
1585
|
-
soldermaskMargin
|
|
1588
|
+
soldermaskMargin,
|
|
1589
|
+
includeCopper
|
|
1586
1590
|
} = ctx;
|
|
1587
1591
|
const centerX = hole.x + origin.x;
|
|
1588
1592
|
const centerY = hole.y + origin.y;
|
|
@@ -1602,7 +1606,7 @@ var addPillPcbHole = (hole, ctx) => {
|
|
|
1602
1606
|
})
|
|
1603
1607
|
);
|
|
1604
1608
|
}
|
|
1605
|
-
if (hole.hole_width > 0 && hole.hole_height > 0) {
|
|
1609
|
+
if (hole.hole_width > 0 && hole.hole_height > 0 && includeCopper) {
|
|
1606
1610
|
const pillPath = createPillPath(
|
|
1607
1611
|
centerX,
|
|
1608
1612
|
centerY,
|
|
@@ -1629,7 +1633,8 @@ var addRotatedPillPcbHole = (hole, ctx) => {
|
|
|
1629
1633
|
soldermaskCutSetting,
|
|
1630
1634
|
origin,
|
|
1631
1635
|
includeSoldermask,
|
|
1632
|
-
soldermaskMargin
|
|
1636
|
+
soldermaskMargin,
|
|
1637
|
+
includeCopper
|
|
1633
1638
|
} = ctx;
|
|
1634
1639
|
const centerX = hole.x + origin.x;
|
|
1635
1640
|
const centerY = hole.y + origin.y;
|
|
@@ -1651,7 +1656,7 @@ var addRotatedPillPcbHole = (hole, ctx) => {
|
|
|
1651
1656
|
})
|
|
1652
1657
|
);
|
|
1653
1658
|
}
|
|
1654
|
-
if (hole.hole_width > 0 && hole.hole_height > 0) {
|
|
1659
|
+
if (hole.hole_width > 0 && hole.hole_height > 0 && includeCopper) {
|
|
1655
1660
|
const pillPath = createPillPath(
|
|
1656
1661
|
centerX,
|
|
1657
1662
|
centerY,
|
|
@@ -17,6 +17,7 @@ export const addCirclePcbHole = (
|
|
|
17
17
|
origin,
|
|
18
18
|
includeSoldermask,
|
|
19
19
|
soldermaskMargin,
|
|
20
|
+
includeCopper,
|
|
20
21
|
} = ctx
|
|
21
22
|
const centerX = hole.x + origin.x
|
|
22
23
|
const centerY = hole.y + origin.y
|
|
@@ -36,7 +37,7 @@ export const addCirclePcbHole = (
|
|
|
36
37
|
}
|
|
37
38
|
|
|
38
39
|
// Add the hole - cut through the board
|
|
39
|
-
if (hole.hole_diameter > 0) {
|
|
40
|
+
if (hole.hole_diameter > 0 && includeCopper) {
|
|
40
41
|
const radius = hole.hole_diameter / 2
|
|
41
42
|
const circlePath = createCirclePath(centerX, centerY, radius)
|
|
42
43
|
project.children.push(
|
|
@@ -17,6 +17,7 @@ export const addOvalPcbHole = (
|
|
|
17
17
|
origin,
|
|
18
18
|
includeSoldermask,
|
|
19
19
|
soldermaskMargin,
|
|
20
|
+
includeCopper,
|
|
20
21
|
} = ctx
|
|
21
22
|
const centerX = hole.x + origin.x
|
|
22
23
|
const centerY = hole.y + origin.y
|
|
@@ -40,7 +41,7 @@ export const addOvalPcbHole = (
|
|
|
40
41
|
}
|
|
41
42
|
|
|
42
43
|
// Add the hole - cut through the board
|
|
43
|
-
if (hole.hole_width > 0 && hole.hole_height > 0) {
|
|
44
|
+
if (hole.hole_width > 0 && hole.hole_height > 0 && includeCopper) {
|
|
44
45
|
const ovalPath = createOvalPath(
|
|
45
46
|
centerX,
|
|
46
47
|
centerY,
|
|
@@ -17,6 +17,7 @@ export const addPillPcbHole = (
|
|
|
17
17
|
origin,
|
|
18
18
|
includeSoldermask,
|
|
19
19
|
soldermaskMargin,
|
|
20
|
+
includeCopper,
|
|
20
21
|
} = ctx
|
|
21
22
|
const centerX = hole.x + origin.x
|
|
22
23
|
const centerY = hole.y + origin.y
|
|
@@ -40,7 +41,7 @@ export const addPillPcbHole = (
|
|
|
40
41
|
}
|
|
41
42
|
|
|
42
43
|
// Add the hole - cut through the board
|
|
43
|
-
if (hole.hole_width > 0 && hole.hole_height > 0) {
|
|
44
|
+
if (hole.hole_width > 0 && hole.hole_height > 0 && includeCopper) {
|
|
44
45
|
const pillPath = createPillPath(
|
|
45
46
|
centerX,
|
|
46
47
|
centerY,
|
|
@@ -17,6 +17,7 @@ export const addRectPcbHole = (
|
|
|
17
17
|
origin,
|
|
18
18
|
includeSoldermask,
|
|
19
19
|
soldermaskMargin,
|
|
20
|
+
includeCopper,
|
|
20
21
|
} = ctx
|
|
21
22
|
const centerX = hole.x + origin.x
|
|
22
23
|
const centerY = hole.y + origin.y
|
|
@@ -41,7 +42,7 @@ export const addRectPcbHole = (
|
|
|
41
42
|
}
|
|
42
43
|
|
|
43
44
|
// Add the hole - cut through the board
|
|
44
|
-
if (hole.hole_width > 0 && hole.hole_height > 0) {
|
|
45
|
+
if (hole.hole_width > 0 && hole.hole_height > 0 && includeCopper) {
|
|
45
46
|
const rectPath = createRoundedRectPath(
|
|
46
47
|
centerX,
|
|
47
48
|
centerY,
|
|
@@ -17,6 +17,7 @@ export const addRotatedPillPcbHole = (
|
|
|
17
17
|
origin,
|
|
18
18
|
includeSoldermask,
|
|
19
19
|
soldermaskMargin,
|
|
20
|
+
includeCopper,
|
|
20
21
|
} = ctx
|
|
21
22
|
const centerX = hole.x + origin.x
|
|
22
23
|
const centerY = hole.y + origin.y
|
|
@@ -42,7 +43,7 @@ export const addRotatedPillPcbHole = (
|
|
|
42
43
|
}
|
|
43
44
|
|
|
44
45
|
// Add the hole - cut through the board
|
|
45
|
-
if (hole.hole_width > 0 && hole.hole_height > 0) {
|
|
46
|
+
if (hole.hole_width > 0 && hole.hole_height > 0 && includeCopper) {
|
|
46
47
|
const pillPath = createPillPath(
|
|
47
48
|
centerX,
|
|
48
49
|
centerY,
|
|
@@ -69,7 +69,7 @@ export const addPcbVia = (via: PcbVia, ctx: ConvertContext): void => {
|
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
// Add inner circle (hole) - always cut through the board regardless of mode
|
|
72
|
-
if (via.hole_diameter > 0) {
|
|
72
|
+
if (via.hole_diameter > 0 && includeCopper) {
|
|
73
73
|
const innerRadius = via.hole_diameter / 2
|
|
74
74
|
const inner = createCirclePath(centerX, centerY, innerRadius)
|
|
75
75
|
project.children.push(
|
|
@@ -61,8 +61,7 @@ export const addCirclePlatedHole = (
|
|
|
61
61
|
)
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
|
|
65
|
-
if (platedHole.hole_diameter > 0) {
|
|
64
|
+
if (platedHole.hole_diameter > 0 && includeCopper) {
|
|
66
65
|
const innerRadius = platedHole.hole_diameter / 2
|
|
67
66
|
const inner = createCirclePath(centerX, centerY, innerRadius)
|
|
68
67
|
project.children.push(
|
|
@@ -69,7 +69,7 @@ export const addCircularHoleWithRectPad = (
|
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
// Add the circular hole (as a cutout) - always cut through the board regardless of mode
|
|
72
|
-
if (holeRadius > 0) {
|
|
72
|
+
if (holeRadius > 0 && includeCopper) {
|
|
73
73
|
const holeCenterX = centerX + platedHole.hole_offset_x
|
|
74
74
|
const holeCenterY = centerY + platedHole.hole_offset_y
|
|
75
75
|
const holePath = createCirclePath(holeCenterX, holeCenterY, holeRadius, 32)
|
|
@@ -20,7 +20,7 @@ export const addHoleWithPolygonPad = (
|
|
|
20
20
|
} = ctx
|
|
21
21
|
|
|
22
22
|
// Create the polygon pad
|
|
23
|
-
if (platedHole.pad_outline.length >= 3) {
|
|
23
|
+
if (platedHole.pad_outline.length >= 3 && includeCopper) {
|
|
24
24
|
const pad = createPolygonPathFromOutline(
|
|
25
25
|
platedHole.pad_outline,
|
|
26
26
|
platedHole.x + origin.x,
|
|
@@ -54,7 +54,11 @@ export const addHoleWithPolygonPad = (
|
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
if (
|
|
57
|
+
if (
|
|
58
|
+
platedHole.hole_shape === "circle" &&
|
|
59
|
+
platedHole.hole_diameter &&
|
|
60
|
+
includeCopper
|
|
61
|
+
) {
|
|
58
62
|
const centerX = platedHole.x + platedHole.hole_offset_x + origin.x
|
|
59
63
|
const centerY = platedHole.y + platedHole.hole_offset_y + origin.y
|
|
60
64
|
const radius = platedHole.hole_diameter / 2
|
|
@@ -69,7 +73,11 @@ export const addHoleWithPolygonPad = (
|
|
|
69
73
|
}),
|
|
70
74
|
)
|
|
71
75
|
}
|
|
72
|
-
if (
|
|
76
|
+
if (
|
|
77
|
+
platedHole.hole_shape === "pill" &&
|
|
78
|
+
platedHole.hole_diameter &&
|
|
79
|
+
includeCopper
|
|
80
|
+
) {
|
|
73
81
|
const centerX = platedHole.x + platedHole.hole_offset_x + origin.x
|
|
74
82
|
const centerY = platedHole.y + platedHole.hole_offset_y + origin.y
|
|
75
83
|
const radius = platedHole.hole_diameter / 2
|
|
@@ -68,8 +68,12 @@ export const addOvalPlatedHole = (
|
|
|
68
68
|
)
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
-
// Add inner oval (hole)
|
|
72
|
-
if (
|
|
71
|
+
// Add inner oval (hole)
|
|
72
|
+
if (
|
|
73
|
+
platedHole.hole_width > 0 &&
|
|
74
|
+
platedHole.hole_height > 0 &&
|
|
75
|
+
includeCopper
|
|
76
|
+
) {
|
|
73
77
|
const inner = createOvalPath(
|
|
74
78
|
centerX,
|
|
75
79
|
centerY,
|
|
@@ -72,7 +72,7 @@ export const addPillHoleWithRectPad = (
|
|
|
72
72
|
const holeWidth = platedHole.hole_width
|
|
73
73
|
const holeHeight = platedHole.hole_height
|
|
74
74
|
|
|
75
|
-
if (holeWidth > 0 && holeHeight > 0) {
|
|
75
|
+
if (holeWidth > 0 && holeHeight > 0 && includeCopper) {
|
|
76
76
|
const holeCenterX = centerX + platedHole.hole_offset_x
|
|
77
77
|
const holeCenterY = centerY + platedHole.hole_offset_y
|
|
78
78
|
const holePath = createPillPath(
|
|
@@ -64,7 +64,11 @@ export const addPcbPlatedHolePill = (
|
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
// Add inner pill shape (hole)
|
|
67
|
-
if (
|
|
67
|
+
if (
|
|
68
|
+
platedHole.hole_width > 0 &&
|
|
69
|
+
platedHole.hole_height > 0 &&
|
|
70
|
+
includeCopper
|
|
71
|
+
) {
|
|
68
72
|
const inner = createPillPath(
|
|
69
73
|
centerX,
|
|
70
74
|
centerY,
|
|
@@ -78,7 +78,7 @@ export const addRotatedPillHoleWithRectPad = (
|
|
|
78
78
|
const holeHeight = platedHole.hole_height
|
|
79
79
|
const holeRotation = (platedHole.hole_ccw_rotation ?? 0) * (Math.PI / 180)
|
|
80
80
|
|
|
81
|
-
if (holeWidth > 0 && holeHeight > 0) {
|
|
81
|
+
if (holeWidth > 0 && holeHeight > 0 && includeCopper) {
|
|
82
82
|
const holeCenterX = centerX + platedHole.hole_offset_x
|
|
83
83
|
const holeCenterY = centerY + platedHole.hole_offset_y
|
|
84
84
|
const holePath = createPillPath(
|
package/package.json
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
<style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="150" y="50" width="500" height="500" data-type="pcb_boundary" data-pcb-layer="global"/><path class="pcb-board" d="M 150 550 L 650 550 L 650 50 L 150 50 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="5" data-type="pcb_board" data-pcb-layer="board"/><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="300" cy="200" r="37.5" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="300" cy="200" r="20" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="500" cy="400" r="50" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="500" cy="400" r="25" data-type="pcb_via" data-pcb-layer="drill"/></g>
|
|
4
4
|
</g>
|
|
5
5
|
<g transform="translate(0, 600) scale(26.666666666666668, 26.666666666666668) translate(14.9, 14.9)">
|
|
6
|
-
<rect x="-14.9" y="-14.9" width="30" height="30" fill="white"/><g transform="matrix(1 0 0 -1 0 0.1999999999999993)"><g transform="matrix(1,0,0,1,0,0)"><clipPath id="clip-1764624022137-oezzvwg71__stack1"><path d="M -1.0499999999999998 2.1 L -1.0540929823286325 2.183314569280127 L -1.066332511657254 2.265826773713709 L -1.0866007146276224 2.3467419756662933 L -1.1147023973654062 2.4252809175103263 L -1.1503669253038982 2.500687226302098 L -1.1932508295428366 2.572234698066662 L -1.2429411146416736 2.6392342915390987 L -1.2989592359914344 2.7010407640085656 L -1.3607657084609013 2.7570588853583264 L -1.427765301933338 2.8067491704571634 L -1.4993127736979017 2.8496330746961016 L -1.5747190824896735 2.885297602634594 L -1.653258024333707 2.9133992853723774 L -1.7341732262862908 2.933667488342746 L -1.8166854307198732 2.9459070176713675 L -1.9 2.95 L -1.9833145692801264 2.9459070176713675 L -2.065826773713709 2.933667488342746 L -2.1467419756662927 2.913399285372378 L -2.225280917510326 2.885297602634594 L -2.300687226302098 2.8496330746961016 L -2.3722346980666615 2.806749170457164 L -2.4392342915390985 2.757058885358327 L -2.5010407640085655 2.7010407640085656 L -2.5570588853583263 2.6392342915390987 L -2.6067491704571637 2.572234698066662 L -2.6496330746961014 2.500687226302098 L -2.6852976026345936 2.4252809175103263 L -2.713399285372377 2.3467419756662933 L -2.733667488342746 2.265826773713709 L -2.7459070176713674 2.183314569280127 L -2.75 2.1 L -2.7459070176713674 2.0166854307198734 L -2.733667488342746 1.934173226286291 L -2.7133992853723776 1.8532580243337073 L -2.6852976026345936 1.774719082489674 L -2.6496330746961014 1.6993127736979021 L -2.6067491704571637 1.6277653019333385 L -2.5570588853583267 1.5607657084609017 L -2.5010407640085655 1.4989592359914348 L -2.439234291539099 1.442941114641674 L -2.372234698066662 1.3932508295428367 L -2.3006872263020983 1.3503669253038986 L -2.2252809175103265 1.3147023973654066 L -2.146741975666293 1.2866007146276226 L -2.0658267737137095 1.2663325116572544 L -1.9833145692801264 1.2540929823286326 L -1.9000000000000001 1.25 L -1.8166854307198739 1.2540929823286326 L -1.7341732262862908 1.2663325116572541 L -1.6532580243337072 1.2866007146276224 L -1.5747190824896733 1.3147023973654064 L -1.499312773697902 1.3503669253038983 L -1.4277653019333383 1.3932508295428365 L -1.3607657084609013 1.4429411146416737 L -1.2989592359914348 1.4989592359914345 L -1.2429411146416738 1.560765708460901 L -1.1932508295428366 1.6277653019333382 L -1.1503669253038984 1.699312773697902 L -1.1147023973654064 1.7747190824896732 L -1.0866007146276224 1.853258024333707 L -1.0663325116572542 1.9341732262862907 L -1.0540929823286325 2.016685430719874 L -1.0499999999999998 2.1 L -1.0499999999999998 2.1 Z"/></clipPath><g clip-path="url(#clip-1764624022137-oezzvwg71__stack1)"><line x1="-1.2226493526370572" y1="1.25" x2="-1.0499999999999998" y2="1.4226493526370574" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.4772077938642145" y1="1.25" x2="-1.0499999999999998" y2="1.6772077938642147" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.7317662350913718" y1="1.25" x2="-1.0499999999999998" y2="1.931766235091372" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.986324676318529" y1="1.25" x2="-1.0499999999999998" y2="2.1863246763185287" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.2408831175456863" y1="1.25" x2="-1.0499999999999998" y2="2.440883117545686" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.4954415587728427" y1="1.25" x2="-1.0499999999999998" y2="2.695441558772843" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.75" y1="1.25" x2="-1.0499999999999998" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.75" y1="1.5045584412271573" x2="-1.304558441227157" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.75" y1="1.7591168824543137" x2="-1.5591168824543136" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.75" y1="2.013675323681471" x2="-1.8136753236814709" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.75" y1="2.2682337649086284" x2="-2.068233764908628" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.75" y1="2.5227922061357857" x2="-2.3227922061357855" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.75" y1="2.777350647362943" x2="-2.577350647362943" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.0499999999999998" y1="2.777350647362943" x2="-1.222649352637057" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.0499999999999998" y1="2.5227922061357857" x2="-1.4772077938642143" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.0499999999999998" y1="2.2682337649086284" x2="-1.7317662350913716" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.0499999999999998" y1="2.013675323681471" x2="-1.9863246763185287" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.0499999999999998" y1="1.7591168824543137" x2="-2.2408831175456863" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.0499999999999998" y1="1.5045584412271573" x2="-2.4954415587728427" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.0499999999999998" y1="1.25" x2="-2.7499999999999996" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.3045584412271571" y1="1.25" x2="-2.75" y2="2.6954415587728433" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.559116882454314" y1="1.25" x2="-2.75" y2="2.4408831175456864" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.8136753236814709" y1="1.25" x2="-2.75" y2="2.186324676318529" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.0682337649086286" y1="1.25" x2="-2.75" y2="1.9317662350913716" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.3227922061357855" y1="1.25" x2="-2.75" y2="1.6772077938642145" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.577350647362943" y1="1.25" x2="-2.75" y2="1.4226493526370572" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/></g><path d="M -1.0499999999999998 2.1 L -1.0540929823286325 2.183314569280127 L -1.066332511657254 2.265826773713709 L -1.0866007146276224 2.3467419756662933 L -1.1147023973654062 2.4252809175103263 L -1.1503669253038982 2.500687226302098 L -1.1932508295428366 2.572234698066662 L -1.2429411146416736 2.6392342915390987 L -1.2989592359914344 2.7010407640085656 L -1.3607657084609013 2.7570588853583264 L -1.427765301933338 2.8067491704571634 L -1.4993127736979017 2.8496330746961016 L -1.5747190824896735 2.885297602634594 L -1.653258024333707 2.9133992853723774 L -1.7341732262862908 2.933667488342746 L -1.8166854307198732 2.9459070176713675 L -1.9 2.95 L -1.9833145692801264 2.9459070176713675 L -2.065826773713709 2.933667488342746 L -2.1467419756662927 2.913399285372378 L -2.225280917510326 2.885297602634594 L -2.300687226302098 2.8496330746961016 L -2.3722346980666615 2.806749170457164 L -2.4392342915390985 2.757058885358327 L -2.5010407640085655 2.7010407640085656 L -2.5570588853583263 2.6392342915390987 L -2.6067491704571637 2.572234698066662 L -2.6496330746961014 2.500687226302098 L -2.6852976026345936 2.4252809175103263 L -2.713399285372377 2.3467419756662933 L -2.733667488342746 2.265826773713709 L -2.7459070176713674 2.183314569280127 L -2.75 2.1 L -2.7459070176713674 2.0166854307198734 L -2.733667488342746 1.934173226286291 L -2.7133992853723776 1.8532580243337073 L -2.6852976026345936 1.774719082489674 L -2.6496330746961014 1.6993127736979021 L -2.6067491704571637 1.6277653019333385 L -2.5570588853583267 1.5607657084609017 L -2.5010407640085655 1.4989592359914348 L -2.439234291539099 1.442941114641674 L -2.372234698066662 1.3932508295428367 L -2.3006872263020983 1.3503669253038986 L -2.2252809175103265 1.3147023973654066 L -2.146741975666293 1.2866007146276226 L -2.0658267737137095 1.2663325116572544 L -1.9833145692801264 1.2540929823286326 L -1.9000000000000001 1.25 L -1.8166854307198739 1.2540929823286326 L -1.7341732262862908 1.2663325116572541 L -1.6532580243337072 1.2866007146276224 L -1.5747190824896733 1.3147023973654064 L -1.499312773697902 1.3503669253038983 L -1.4277653019333383 1.3932508295428365 L -1.3607657084609013 1.4429411146416737 L -1.2989592359914348 1.4989592359914345 L -1.2429411146416738 1.560765708460901 L -1.1932508295428366 1.6277653019333382 L -1.1503669253038984 1.699312773697902 L -1.1147023973654064 1.7747190824896732 L -1.0866007146276224 1.853258024333707 L -1.0663325116572542 1.9341732262862907 L -1.0540929823286325 2.016685430719874 L -1.0499999999999998 2.1 L -1.0499999999999998 2.1 Z" fill="none" stroke="#FF0000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -1.5 2.1 L -1.5019261093311211 2.1392068561318243 L -1.5076858878387078 2.1780361288064514 L -1.5172238657071164 2.216113870901785 L -1.5304481869954851 2.253073372946036 L -1.5472314942606578 2.288558694730399 L -1.5674121550789817 2.322228093207841 L -1.5907958186549052 2.3537573136654584 L -1.6171572875253808 2.382842712474619 L -1.6462426863345416 2.409204181345095 L -1.677771906792159 2.4325878449210183 L -1.7114413052696007 2.4527685057393422 L -1.746926627053964 2.469551813004515 L -1.783886129098215 2.482776134292884 L -1.8219638711935486 2.492314112161292 L -1.8607931438681755 2.498073890668879 L -1.9 2.5 L -1.939206856131824 2.498073890668879 L -1.9780361288064512 2.492314112161292 L -2.0161138709017847 2.482776134292884 L -2.0530733729460358 2.469551813004515 L -2.088558694730399 2.4527685057393422 L -2.122228093207841 2.4325878449210183 L -2.153757313665458 2.409204181345095 L -2.182842712474619 2.382842712474619 L -2.2092041813450947 2.3537573136654584 L -2.232587844921018 2.322228093207841 L -2.252768505739342 2.288558694730399 L -2.2695518130045147 2.253073372946036 L -2.2827761342928836 2.216113870901785 L -2.292314112161292 2.1780361288064514 L -2.2980738906688787 2.1392068561318243 L -2.3 2.1 L -2.2980738906688787 2.060793143868176 L -2.292314112161292 2.021963871193549 L -2.2827761342928836 1.9838861290982153 L -2.2695518130045147 1.9469266270539642 L -2.252768505739342 1.911441305269601 L -2.232587844921018 1.8777719067921592 L -2.2092041813450947 1.846242686334542 L -2.182842712474619 1.8171572875253812 L -2.153757313665458 1.7907958186549053 L -2.122228093207841 1.7674121550789819 L -2.088558694730399 1.7472314942606582 L -2.053073372946036 1.7304481869954855 L -2.0161138709017847 1.7172238657071166 L -1.9780361288064514 1.707685887838708 L -1.939206856131824 1.7019261093311213 L -1.9 1.7000000000000002 L -1.860793143868176 1.7019261093311213 L -1.8219638711935486 1.707685887838708 L -1.783886129098215 1.7172238657071164 L -1.7469266270539638 1.7304481869954853 L -1.711441305269601 1.747231494260658 L -1.677771906792159 1.7674121550789819 L -1.6462426863345416 1.7907958186549053 L -1.617157287525381 1.817157287525381 L -1.5907958186549052 1.8462426863345418 L -1.5674121550789817 1.8777719067921592 L -1.547231494260658 1.9114413052696009 L -1.5304481869954853 1.9469266270539638 L -1.5172238657071164 1.983886129098215 L -1.5076858878387078 2.021963871193549 L -1.5019261093311211 2.060793143868176 L -1.5 2.1 L -1.5 2.1 Z" fill="none" stroke="#0000FF" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><clipPath id="clip-1764624022137-5kdk25wmt__stack1"><path d="M 3.2 -1.9 L 3.1947031993394166 -1.7921811456374832 L 3.1788638084435537 -1.6854006457822588 L 3.1526343693054297 -1.5806868550200912 L 3.1162674857624157 -1.4790482243984011 L 3.070113390783191 -1.3814635894914025 L 3.0146165735328 -1.2888727436784375 L 2.950311498699011 -1.2021673874199899 L 2.8778174593052026 -1.1221825406947976 L 2.7978326125800104 -1.0496885013009891 L 2.7111272563215625 -0.9853834264672001 L 2.6185364105085975 -0.9298866092168094 L 2.520951775601599 -0.8837325142375845 L 2.419313144979909 -0.84736563069457 L 2.314599354217741 -0.8211361915564463 L 2.207818854362517 -0.8052968006605834 L 2.1 -0.7999999999999998 L 1.9921811456374834 -0.8052968006605832 L 1.885400645782259 -0.8211361915564463 L 1.7806868550200916 -0.84736563069457 L 1.6790482243984013 -0.8837325142375845 L 1.5814635894914026 -0.9298866092168093 L 1.488872743678438 -0.9853834264672 L 1.4021673874199903 -1.049688501300989 L 1.3221825406947978 -1.1221825406947974 L 1.2496885013009893 -1.2021673874199899 L 1.1853834264672 -1.2888727436784375 L 1.1298866092168096 -1.3814635894914022 L 1.0837325142375847 -1.479048224398401 L 1.0473656306945702 -1.5806868550200912 L 1.0211361915564465 -1.6854006457822583 L 1.0052968006605836 -1.792181145637483 L 1 -1.8999999999999997 L 1.0052968006605834 -2.0078188543625166 L 1.0211361915564465 -2.114599354217741 L 1.0473656306945702 -2.219313144979908 L 1.0837325142375844 -2.3209517756015985 L 1.1298866092168094 -2.4185364105085974 L 1.1853834264672 -2.5111272563215623 L 1.249688501300989 -2.5978326125800097 L 1.3221825406947976 -2.677817459305202 L 1.4021673874199896 -2.75031149869901 L 1.4888727436784377 -2.8146165735328 L 1.5814635894914022 -2.8701133907831906 L 1.6790482243984006 -2.916267485762415 L 1.7806868550200914 -2.9526343693054296 L 1.8854006457822585 -2.9788638084435535 L 1.9921811456374836 -2.9947031993394164 L 2.1 -3 L 2.2078188543625163 -2.9947031993394164 L 2.314599354217741 -2.9788638084435535 L 2.4193131449799083 -2.9526343693054296 L 2.520951775601599 -2.9162674857624156 L 2.6185364105085975 -2.8701133907831906 L 2.711127256321562 -2.8146165735328 L 2.7978326125800104 -2.7503114986990105 L 2.877817459305202 -2.6778174593052024 L 2.95031149869901 -2.5978326125800106 L 3.0146165735328 -2.5111272563215623 L 3.0701133907831903 -2.418536410508598 L 3.1162674857624153 -2.3209517756015994 L 3.1526343693054297 -2.2193131449799086 L 3.1788638084435537 -2.1145993542177415 L 3.1947031993394166 -2.0078188543625166 L 3.2 -1.9 L 3.2 -1.9 Z"/></clipPath><g clip-path="url(#clip-1764624022137-5kdk25wmt__stack1)"><line x1="3.0364675298172568" y1="-3" x2="3.2" y2="-2.8364675298172566" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.7819090885901003" y1="-3" x2="3.2" y2="-2.5819090885901" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.527350647362943" y1="-3" x2="3.2" y2="-2.327350647362943" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.2727922061357857" y1="-3" x2="3.2" y2="-2.0727922061357855" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.0182337649086284" y1="-3" x2="3.2" y2="-1.8182337649086282" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.763675323681471" y1="-3" x2="3.2" y2="-1.563675323681471" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.5091168824543137" y1="-3" x2="3.2" y2="-1.309116882454314" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.254558441227157" y1="-3" x2="3.2" y2="-1.0545584412271576" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-3" x2="3.2" y2="-0.8000000000000007" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-2.7454415587728427" x2="2.9454415587728437" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-2.4908831175456854" x2="2.6908831175456864" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-2.2363246763185285" x2="2.436324676318529" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-1.9817662350913714" x2="2.181766235091372" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-1.7272077938642145" x2="1.927207793864215" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-1.472649352637057" x2="1.6726493526370572" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-1.2180909114099006" x2="1.4180909114099007" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-0.9635324701827432" x2="1.1635324701827434" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-0.9635324701827432" x2="3.0364675298172568" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-1.2180909114099006" x2="2.7819090885900994" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-1.4726493526370577" x2="2.5273506473629426" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-1.7272077938642147" x2="2.2727922061357853" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-1.981766235091372" x2="2.0182337649086284" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-2.236324676318529" x2="1.7636753236814713" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-2.4908831175456867" x2="1.5091168824543142" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-2.7454415587728427" x2="1.2545584412271575" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-3" x2="1.0000000000000004" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.945441558772843" y1="-3" x2="1" y2="-1.0545584412271567" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.6908831175456855" y1="-3" x2="1" y2="-1.3091168824543138" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.4363246763185282" y1="-3" x2="1" y2="-1.563675323681471" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.181766235091372" y1="-3" x2="1" y2="-1.818233764908628" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.9272077938642145" y1="-3" x2="1" y2="-2.0727922061357855" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.672649352637057" y1="-3" x2="1" y2="-2.327350647362943" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.4180909114099" y1="-3" x2="1" y2="-2.5819090885900997" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.163532470182743" y1="-3" x2="1" y2="-2.836467529817257" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/></g><path d="M 3.2 -1.9 L 3.1947031993394166 -1.7921811456374832 L 3.1788638084435537 -1.6854006457822588 L 3.1526343693054297 -1.5806868550200912 L 3.1162674857624157 -1.4790482243984011 L 3.070113390783191 -1.3814635894914025 L 3.0146165735328 -1.2888727436784375 L 2.950311498699011 -1.2021673874199899 L 2.8778174593052026 -1.1221825406947976 L 2.7978326125800104 -1.0496885013009891 L 2.7111272563215625 -0.9853834264672001 L 2.6185364105085975 -0.9298866092168094 L 2.520951775601599 -0.8837325142375845 L 2.419313144979909 -0.84736563069457 L 2.314599354217741 -0.8211361915564463 L 2.207818854362517 -0.8052968006605834 L 2.1 -0.7999999999999998 L 1.9921811456374834 -0.8052968006605832 L 1.885400645782259 -0.8211361915564463 L 1.7806868550200916 -0.84736563069457 L 1.6790482243984013 -0.8837325142375845 L 1.5814635894914026 -0.9298866092168093 L 1.488872743678438 -0.9853834264672 L 1.4021673874199903 -1.049688501300989 L 1.3221825406947978 -1.1221825406947974 L 1.2496885013009893 -1.2021673874199899 L 1.1853834264672 -1.2888727436784375 L 1.1298866092168096 -1.3814635894914022 L 1.0837325142375847 -1.479048224398401 L 1.0473656306945702 -1.5806868550200912 L 1.0211361915564465 -1.6854006457822583 L 1.0052968006605836 -1.792181145637483 L 1 -1.8999999999999997 L 1.0052968006605834 -2.0078188543625166 L 1.0211361915564465 -2.114599354217741 L 1.0473656306945702 -2.219313144979908 L 1.0837325142375844 -2.3209517756015985 L 1.1298866092168094 -2.4185364105085974 L 1.1853834264672 -2.5111272563215623 L 1.249688501300989 -2.5978326125800097 L 1.3221825406947976 -2.677817459305202 L 1.4021673874199896 -2.75031149869901 L 1.4888727436784377 -2.8146165735328 L 1.5814635894914022 -2.8701133907831906 L 1.6790482243984006 -2.916267485762415 L 1.7806868550200914 -2.9526343693054296 L 1.8854006457822585 -2.9788638084435535 L 1.9921811456374836 -2.9947031993394164 L 2.1 -3 L 2.2078188543625163 -2.9947031993394164 L 2.314599354217741 -2.9788638084435535 L 2.4193131449799083 -2.9526343693054296 L 2.520951775601599 -2.9162674857624156 L 2.6185364105085975 -2.8701133907831906 L 2.711127256321562 -2.8146165735328 L 2.7978326125800104 -2.7503114986990105 L 2.877817459305202 -2.6778174593052024 L 2.95031149869901 -2.5978326125800106 L 3.0146165735328 -2.5111272563215623 L 3.0701133907831903 -2.418536410508598 L 3.1162674857624153 -2.3209517756015994 L 3.1526343693054297 -2.2193131449799086 L 3.1788638084435537 -2.1145993542177415 L 3.1947031993394166 -2.0078188543625166 L 3.2 -1.9 L 3.2 -1.9 Z" fill="none" stroke="#FF0000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 2.6 -1.9 L 2.5975923633360987 -1.8509914298352197 L 2.5903926402016153 -1.8024548389919357 L 2.5784701678661044 -1.7548576613727687 L 2.5619397662556436 -1.708658283817455 L 2.5409606321741776 -1.6643016315870012 L 2.5157348061512725 -1.6222148834901988 L 2.4865052266813685 -1.582803357918177 L 2.453553390593274 -1.5464466094067262 L 2.417196642081823 -1.5134947733186315 L 2.377785116509801 -1.4842651938487272 L 2.335698368412999 -1.4590393678258224 L 2.291341716182545 -1.4380602337443564 L 2.245142338627231 -1.4215298321338956 L 2.197545161008064 -1.4096073597983847 L 2.1490085701647805 -1.4024076366639016 L 2.1 -1.4 L 2.0509914298352196 -1.4024076366639013 L 2.002454838991936 -1.4096073597983847 L 1.954857661372769 -1.4215298321338954 L 1.9086582838174553 -1.4380602337443564 L 1.8643016315870011 -1.4590393678258224 L 1.822214883490199 -1.4842651938487272 L 1.7828033579181775 -1.5134947733186315 L 1.7464466094067264 -1.5464466094067262 L 1.7134947733186316 -1.582803357918177 L 1.6842651938487274 -1.6222148834901988 L 1.6590393678258226 -1.664301631587001 L 1.6380602337443566 -1.7086582838174549 L 1.6215298321338958 -1.7548576613727687 L 1.6096073597983849 -1.8024548389919357 L 1.6024076366639017 -1.8509914298352195 L 1.6 -1.9 L 1.6024076366639015 -1.9490085701647801 L 1.6096073597983849 -1.9975451610080641 L 1.6215298321338956 -2.045142338627231 L 1.6380602337443566 -2.0913417161825447 L 1.6590393678258226 -2.135698368412999 L 1.6842651938487274 -2.177785116509801 L 1.7134947733186316 -2.2171966420818228 L 1.7464466094067261 -2.2535533905932734 L 1.7828033579181772 -2.2865052266813684 L 1.822214883490199 -2.3157348061512724 L 1.8643016315870011 -2.3409606321741774 L 1.9086582838174548 -2.3619397662556434 L 1.9548576613727688 -2.378470167866104 L 2.0024548389919357 -2.390392640201615 L 2.0509914298352196 -2.3975923633360985 L 2.1 -2.4 L 2.14900857016478 -2.3975923633360985 L 2.197545161008064 -2.390392640201615 L 2.245142338627231 -2.378470167866104 L 2.291341716182545 -2.3619397662556434 L 2.335698368412999 -2.3409606321741774 L 2.377785116509801 -2.315734806151273 L 2.417196642081823 -2.2865052266813684 L 2.4535533905932736 -2.253553390593274 L 2.4865052266813685 -2.2171966420818228 L 2.5157348061512725 -2.177785116509801 L 2.5409606321741776 -2.135698368412999 L 2.5619397662556436 -2.091341716182545 L 2.5784701678661044 -2.0451423386272314 L 2.5903926402016153 -1.9975451610080643 L 2.5975923633360987 -1.9490085701647801 L 2.6 -1.9 L 2.6 -1.9 Z" fill="none" stroke="#0000FF" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -4.9 -4.9 L 5.1 -4.9 L 5.1 5.1 L -4.9 5.1 L -4.9 -4.9 L -4.9 -4.9" fill="none" stroke="#FF0000" stroke-width="0.1"/></g></g>
|
|
6
|
+
<rect x="-14.9" y="-14.9" width="30" height="30" fill="white"/><g transform="matrix(1 0 0 -1 0 0.1999999999999993)"><g transform="matrix(1,0,0,1,0,0)"><path d="M -4.9 -4.9 L 5.1 -4.9 L 5.1 5.1 L -4.9 5.1 L -4.9 -4.9 L -4.9 -4.9" fill="none" stroke="#FF0000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><clipPath id="clip-1764683842476-s81338akc__stack1"><path d="M -1.0499999999999998 2.1 L -1.0540929823286325 2.183314569280127 L -1.066332511657254 2.265826773713709 L -1.0866007146276224 2.3467419756662933 L -1.1147023973654062 2.4252809175103263 L -1.1503669253038982 2.500687226302098 L -1.1932508295428366 2.572234698066662 L -1.2429411146416736 2.6392342915390987 L -1.2989592359914344 2.7010407640085656 L -1.3607657084609013 2.7570588853583264 L -1.427765301933338 2.8067491704571634 L -1.4993127736979017 2.8496330746961016 L -1.5747190824896735 2.885297602634594 L -1.653258024333707 2.9133992853723774 L -1.7341732262862908 2.933667488342746 L -1.8166854307198732 2.9459070176713675 L -1.9 2.95 L -1.9833145692801264 2.9459070176713675 L -2.065826773713709 2.933667488342746 L -2.1467419756662927 2.913399285372378 L -2.225280917510326 2.885297602634594 L -2.300687226302098 2.8496330746961016 L -2.3722346980666615 2.806749170457164 L -2.4392342915390985 2.757058885358327 L -2.5010407640085655 2.7010407640085656 L -2.5570588853583263 2.6392342915390987 L -2.6067491704571637 2.572234698066662 L -2.6496330746961014 2.500687226302098 L -2.6852976026345936 2.4252809175103263 L -2.713399285372377 2.3467419756662933 L -2.733667488342746 2.265826773713709 L -2.7459070176713674 2.183314569280127 L -2.75 2.1 L -2.7459070176713674 2.0166854307198734 L -2.733667488342746 1.934173226286291 L -2.7133992853723776 1.8532580243337073 L -2.6852976026345936 1.774719082489674 L -2.6496330746961014 1.6993127736979021 L -2.6067491704571637 1.6277653019333385 L -2.5570588853583267 1.5607657084609017 L -2.5010407640085655 1.4989592359914348 L -2.439234291539099 1.442941114641674 L -2.372234698066662 1.3932508295428367 L -2.3006872263020983 1.3503669253038986 L -2.2252809175103265 1.3147023973654066 L -2.146741975666293 1.2866007146276226 L -2.0658267737137095 1.2663325116572544 L -1.9833145692801264 1.2540929823286326 L -1.9000000000000001 1.25 L -1.8166854307198739 1.2540929823286326 L -1.7341732262862908 1.2663325116572541 L -1.6532580243337072 1.2866007146276224 L -1.5747190824896733 1.3147023973654064 L -1.499312773697902 1.3503669253038983 L -1.4277653019333383 1.3932508295428365 L -1.3607657084609013 1.4429411146416737 L -1.2989592359914348 1.4989592359914345 L -1.2429411146416738 1.560765708460901 L -1.1932508295428366 1.6277653019333382 L -1.1503669253038984 1.699312773697902 L -1.1147023973654064 1.7747190824896732 L -1.0866007146276224 1.853258024333707 L -1.0663325116572542 1.9341732262862907 L -1.0540929823286325 2.016685430719874 L -1.0499999999999998 2.1 L -1.0499999999999998 2.1 Z"/></clipPath><g clip-path="url(#clip-1764683842476-s81338akc__stack1)"><line x1="-1.2226493526370572" y1="1.25" x2="-1.0499999999999998" y2="1.4226493526370574" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.4772077938642145" y1="1.25" x2="-1.0499999999999998" y2="1.6772077938642147" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.7317662350913718" y1="1.25" x2="-1.0499999999999998" y2="1.931766235091372" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.986324676318529" y1="1.25" x2="-1.0499999999999998" y2="2.1863246763185287" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.2408831175456863" y1="1.25" x2="-1.0499999999999998" y2="2.440883117545686" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.4954415587728427" y1="1.25" x2="-1.0499999999999998" y2="2.695441558772843" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.75" y1="1.25" x2="-1.0499999999999998" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.75" y1="1.5045584412271573" x2="-1.304558441227157" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.75" y1="1.7591168824543137" x2="-1.5591168824543136" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.75" y1="2.013675323681471" x2="-1.8136753236814709" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.75" y1="2.2682337649086284" x2="-2.068233764908628" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.75" y1="2.5227922061357857" x2="-2.3227922061357855" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.75" y1="2.777350647362943" x2="-2.577350647362943" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.0499999999999998" y1="2.777350647362943" x2="-1.222649352637057" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.0499999999999998" y1="2.5227922061357857" x2="-1.4772077938642143" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.0499999999999998" y1="2.2682337649086284" x2="-1.7317662350913716" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.0499999999999998" y1="2.013675323681471" x2="-1.9863246763185287" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.0499999999999998" y1="1.7591168824543137" x2="-2.2408831175456863" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.0499999999999998" y1="1.5045584412271573" x2="-2.4954415587728427" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.0499999999999998" y1="1.25" x2="-2.7499999999999996" y2="2.95" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.3045584412271571" y1="1.25" x2="-2.75" y2="2.6954415587728433" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.559116882454314" y1="1.25" x2="-2.75" y2="2.4408831175456864" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-1.8136753236814709" y1="1.25" x2="-2.75" y2="2.186324676318529" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.0682337649086286" y1="1.25" x2="-2.75" y2="1.9317662350913716" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.3227922061357855" y1="1.25" x2="-2.75" y2="1.6772077938642145" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="-2.577350647362943" y1="1.25" x2="-2.75" y2="1.4226493526370572" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/></g><path d="M -1.0499999999999998 2.1 L -1.0540929823286325 2.183314569280127 L -1.066332511657254 2.265826773713709 L -1.0866007146276224 2.3467419756662933 L -1.1147023973654062 2.4252809175103263 L -1.1503669253038982 2.500687226302098 L -1.1932508295428366 2.572234698066662 L -1.2429411146416736 2.6392342915390987 L -1.2989592359914344 2.7010407640085656 L -1.3607657084609013 2.7570588853583264 L -1.427765301933338 2.8067491704571634 L -1.4993127736979017 2.8496330746961016 L -1.5747190824896735 2.885297602634594 L -1.653258024333707 2.9133992853723774 L -1.7341732262862908 2.933667488342746 L -1.8166854307198732 2.9459070176713675 L -1.9 2.95 L -1.9833145692801264 2.9459070176713675 L -2.065826773713709 2.933667488342746 L -2.1467419756662927 2.913399285372378 L -2.225280917510326 2.885297602634594 L -2.300687226302098 2.8496330746961016 L -2.3722346980666615 2.806749170457164 L -2.4392342915390985 2.757058885358327 L -2.5010407640085655 2.7010407640085656 L -2.5570588853583263 2.6392342915390987 L -2.6067491704571637 2.572234698066662 L -2.6496330746961014 2.500687226302098 L -2.6852976026345936 2.4252809175103263 L -2.713399285372377 2.3467419756662933 L -2.733667488342746 2.265826773713709 L -2.7459070176713674 2.183314569280127 L -2.75 2.1 L -2.7459070176713674 2.0166854307198734 L -2.733667488342746 1.934173226286291 L -2.7133992853723776 1.8532580243337073 L -2.6852976026345936 1.774719082489674 L -2.6496330746961014 1.6993127736979021 L -2.6067491704571637 1.6277653019333385 L -2.5570588853583267 1.5607657084609017 L -2.5010407640085655 1.4989592359914348 L -2.439234291539099 1.442941114641674 L -2.372234698066662 1.3932508295428367 L -2.3006872263020983 1.3503669253038986 L -2.2252809175103265 1.3147023973654066 L -2.146741975666293 1.2866007146276226 L -2.0658267737137095 1.2663325116572544 L -1.9833145692801264 1.2540929823286326 L -1.9000000000000001 1.25 L -1.8166854307198739 1.2540929823286326 L -1.7341732262862908 1.2663325116572541 L -1.6532580243337072 1.2866007146276224 L -1.5747190824896733 1.3147023973654064 L -1.499312773697902 1.3503669253038983 L -1.4277653019333383 1.3932508295428365 L -1.3607657084609013 1.4429411146416737 L -1.2989592359914348 1.4989592359914345 L -1.2429411146416738 1.560765708460901 L -1.1932508295428366 1.6277653019333382 L -1.1503669253038984 1.699312773697902 L -1.1147023973654064 1.7747190824896732 L -1.0866007146276224 1.853258024333707 L -1.0663325116572542 1.9341732262862907 L -1.0540929823286325 2.016685430719874 L -1.0499999999999998 2.1 L -1.0499999999999998 2.1 Z" fill="none" stroke="#FF0000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><clipPath id="clip-1764683842476-n63a3s0mg__stack1"><path d="M 3.2 -1.9 L 3.1947031993394166 -1.7921811456374832 L 3.1788638084435537 -1.6854006457822588 L 3.1526343693054297 -1.5806868550200912 L 3.1162674857624157 -1.4790482243984011 L 3.070113390783191 -1.3814635894914025 L 3.0146165735328 -1.2888727436784375 L 2.950311498699011 -1.2021673874199899 L 2.8778174593052026 -1.1221825406947976 L 2.7978326125800104 -1.0496885013009891 L 2.7111272563215625 -0.9853834264672001 L 2.6185364105085975 -0.9298866092168094 L 2.520951775601599 -0.8837325142375845 L 2.419313144979909 -0.84736563069457 L 2.314599354217741 -0.8211361915564463 L 2.207818854362517 -0.8052968006605834 L 2.1 -0.7999999999999998 L 1.9921811456374834 -0.8052968006605832 L 1.885400645782259 -0.8211361915564463 L 1.7806868550200916 -0.84736563069457 L 1.6790482243984013 -0.8837325142375845 L 1.5814635894914026 -0.9298866092168093 L 1.488872743678438 -0.9853834264672 L 1.4021673874199903 -1.049688501300989 L 1.3221825406947978 -1.1221825406947974 L 1.2496885013009893 -1.2021673874199899 L 1.1853834264672 -1.2888727436784375 L 1.1298866092168096 -1.3814635894914022 L 1.0837325142375847 -1.479048224398401 L 1.0473656306945702 -1.5806868550200912 L 1.0211361915564465 -1.6854006457822583 L 1.0052968006605836 -1.792181145637483 L 1 -1.8999999999999997 L 1.0052968006605834 -2.0078188543625166 L 1.0211361915564465 -2.114599354217741 L 1.0473656306945702 -2.219313144979908 L 1.0837325142375844 -2.3209517756015985 L 1.1298866092168094 -2.4185364105085974 L 1.1853834264672 -2.5111272563215623 L 1.249688501300989 -2.5978326125800097 L 1.3221825406947976 -2.677817459305202 L 1.4021673874199896 -2.75031149869901 L 1.4888727436784377 -2.8146165735328 L 1.5814635894914022 -2.8701133907831906 L 1.6790482243984006 -2.916267485762415 L 1.7806868550200914 -2.9526343693054296 L 1.8854006457822585 -2.9788638084435535 L 1.9921811456374836 -2.9947031993394164 L 2.1 -3 L 2.2078188543625163 -2.9947031993394164 L 2.314599354217741 -2.9788638084435535 L 2.4193131449799083 -2.9526343693054296 L 2.520951775601599 -2.9162674857624156 L 2.6185364105085975 -2.8701133907831906 L 2.711127256321562 -2.8146165735328 L 2.7978326125800104 -2.7503114986990105 L 2.877817459305202 -2.6778174593052024 L 2.95031149869901 -2.5978326125800106 L 3.0146165735328 -2.5111272563215623 L 3.0701133907831903 -2.418536410508598 L 3.1162674857624153 -2.3209517756015994 L 3.1526343693054297 -2.2193131449799086 L 3.1788638084435537 -2.1145993542177415 L 3.1947031993394166 -2.0078188543625166 L 3.2 -1.9 L 3.2 -1.9 Z"/></clipPath><g clip-path="url(#clip-1764683842476-n63a3s0mg__stack1)"><line x1="3.0364675298172568" y1="-3" x2="3.2" y2="-2.8364675298172566" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.7819090885901003" y1="-3" x2="3.2" y2="-2.5819090885901" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.527350647362943" y1="-3" x2="3.2" y2="-2.327350647362943" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.2727922061357857" y1="-3" x2="3.2" y2="-2.0727922061357855" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.0182337649086284" y1="-3" x2="3.2" y2="-1.8182337649086282" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.763675323681471" y1="-3" x2="3.2" y2="-1.563675323681471" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.5091168824543137" y1="-3" x2="3.2" y2="-1.309116882454314" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.254558441227157" y1="-3" x2="3.2" y2="-1.0545584412271576" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-3" x2="3.2" y2="-0.8000000000000007" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-2.7454415587728427" x2="2.9454415587728437" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-2.4908831175456854" x2="2.6908831175456864" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-2.2363246763185285" x2="2.436324676318529" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-1.9817662350913714" x2="2.181766235091372" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-1.7272077938642145" x2="1.927207793864215" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-1.472649352637057" x2="1.6726493526370572" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-1.2180909114099006" x2="1.4180909114099007" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1" y1="-0.9635324701827432" x2="1.1635324701827434" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-0.9635324701827432" x2="3.0364675298172568" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-1.2180909114099006" x2="2.7819090885900994" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-1.4726493526370577" x2="2.5273506473629426" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-1.7272077938642147" x2="2.2727922061357853" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-1.981766235091372" x2="2.0182337649086284" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-2.236324676318529" x2="1.7636753236814713" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-2.4908831175456867" x2="1.5091168824543142" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-2.7454415587728427" x2="1.2545584412271575" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.2" y1="-3" x2="1.0000000000000004" y2="-0.7999999999999998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.945441558772843" y1="-3" x2="1" y2="-1.0545584412271567" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.6908831175456855" y1="-3" x2="1" y2="-1.3091168824543138" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.4363246763185282" y1="-3" x2="1" y2="-1.563675323681471" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.181766235091372" y1="-3" x2="1" y2="-1.818233764908628" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.9272077938642145" y1="-3" x2="1" y2="-2.0727922061357855" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.672649352637057" y1="-3" x2="1" y2="-2.327350647362943" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.4180909114099" y1="-3" x2="1" y2="-2.5819090885900997" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.163532470182743" y1="-3" x2="1" y2="-2.836467529817257" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/></g><path d="M 3.2 -1.9 L 3.1947031993394166 -1.7921811456374832 L 3.1788638084435537 -1.6854006457822588 L 3.1526343693054297 -1.5806868550200912 L 3.1162674857624157 -1.4790482243984011 L 3.070113390783191 -1.3814635894914025 L 3.0146165735328 -1.2888727436784375 L 2.950311498699011 -1.2021673874199899 L 2.8778174593052026 -1.1221825406947976 L 2.7978326125800104 -1.0496885013009891 L 2.7111272563215625 -0.9853834264672001 L 2.6185364105085975 -0.9298866092168094 L 2.520951775601599 -0.8837325142375845 L 2.419313144979909 -0.84736563069457 L 2.314599354217741 -0.8211361915564463 L 2.207818854362517 -0.8052968006605834 L 2.1 -0.7999999999999998 L 1.9921811456374834 -0.8052968006605832 L 1.885400645782259 -0.8211361915564463 L 1.7806868550200916 -0.84736563069457 L 1.6790482243984013 -0.8837325142375845 L 1.5814635894914026 -0.9298866092168093 L 1.488872743678438 -0.9853834264672 L 1.4021673874199903 -1.049688501300989 L 1.3221825406947978 -1.1221825406947974 L 1.2496885013009893 -1.2021673874199899 L 1.1853834264672 -1.2888727436784375 L 1.1298866092168096 -1.3814635894914022 L 1.0837325142375847 -1.479048224398401 L 1.0473656306945702 -1.5806868550200912 L 1.0211361915564465 -1.6854006457822583 L 1.0052968006605836 -1.792181145637483 L 1 -1.8999999999999997 L 1.0052968006605834 -2.0078188543625166 L 1.0211361915564465 -2.114599354217741 L 1.0473656306945702 -2.219313144979908 L 1.0837325142375844 -2.3209517756015985 L 1.1298866092168094 -2.4185364105085974 L 1.1853834264672 -2.5111272563215623 L 1.249688501300989 -2.5978326125800097 L 1.3221825406947976 -2.677817459305202 L 1.4021673874199896 -2.75031149869901 L 1.4888727436784377 -2.8146165735328 L 1.5814635894914022 -2.8701133907831906 L 1.6790482243984006 -2.916267485762415 L 1.7806868550200914 -2.9526343693054296 L 1.8854006457822585 -2.9788638084435535 L 1.9921811456374836 -2.9947031993394164 L 2.1 -3 L 2.2078188543625163 -2.9947031993394164 L 2.314599354217741 -2.9788638084435535 L 2.4193131449799083 -2.9526343693054296 L 2.520951775601599 -2.9162674857624156 L 2.6185364105085975 -2.8701133907831906 L 2.711127256321562 -2.8146165735328 L 2.7978326125800104 -2.7503114986990105 L 2.877817459305202 -2.6778174593052024 L 2.95031149869901 -2.5978326125800106 L 3.0146165735328 -2.5111272563215623 L 3.0701133907831903 -2.418536410508598 L 3.1162674857624153 -2.3209517756015994 L 3.1526343693054297 -2.2193131449799086 L 3.1788638084435537 -2.1145993542177415 L 3.1947031993394166 -2.0078188543625166 L 3.2 -1.9 L 3.2 -1.9 Z" fill="none" stroke="#FF0000" stroke-width="0.1"/></g></g>
|
|
7
7
|
</g>
|
|
8
8
|
</svg>
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<svg width="800" height="1400" viewBox="0 0 800 1400" xmlns="http://www.w3.org/2000/svg">
|
|
2
2
|
<g transform="translate(0, 0)">
|
|
3
|
-
<style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="150" y="50" width="500" height="500" data-type="pcb_boundary" data-pcb-layer="global"/><path class="pcb-board" d="M 150 550 L 650 550 L 650 50 L 150 50 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="5" data-type="pcb_board" data-pcb-layer="board"/><circle class="pcb-pad" fill="rgb(200, 52, 52)" cx="300" cy="300" r="25" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="475" y="275" width="50" height="50" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 300 300 L 500 300" stroke-width="10" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"
|
|
3
|
+
<style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="150" y="50" width="500" height="500" data-type="pcb_boundary" data-pcb-layer="global"/><path class="pcb-board" d="M 150 550 L 650 550 L 650 50 L 150 50 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="5" data-type="pcb_board" data-pcb-layer="board"/><circle class="pcb-pad" fill="rgb(200, 52, 52)" cx="300" cy="300" r="25" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="475" y="275" width="50" height="50" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 300 300 L 500 300" stroke-width="10" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><g data-type="pcb_plated_hole" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="400" cy="450" r="50" data-type="pcb_plated_hole" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="400" cy="450" r="25" data-type="pcb_plated_hole_drill" data-pcb-layer="drill"/></g>
|
|
4
4
|
</g>
|
|
5
|
-
<g transform="translate(0, 600) scale(26.666666666666668, 26.666666666666668) translate(12.4,
|
|
6
|
-
<rect x="-12.4" y="-14.4" width="30" height="30" fill="white"/><g transform="matrix(1 0 0 -1 0 1.1999999999999993)"><g transform="matrix(1,0,0,1,0,0)"><clipPath id="clip-1764608597265-s0ajpdry8__stack1"><path d="M 1.1 0.6 L 1.0975923633360987 0.6490085701647803 L 1.0903926402016153 0.6975451610080641 L 1.0784701678661044 0.7451423386272311 L 1.0619397662556436 0.7913417161825449 L 1.0409606321741776 0.8356983684129988 L 1.0157348061512728 0.8777851165098011 L 0.9865052266813685 0.9171966420818227 L 0.9535533905932738 0.9535533905932737 L 0.9171966420818228 0.9865052266813685 L 0.8777851165098012 1.0157348061512725 L 0.835698368412999 1.0409606321741776 L 0.791341716182545 1.0619397662556433 L 0.7451423386272312 1.0784701678661044 L 0.6975451610080643 1.0903926402016153 L 0.6490085701647805 1.0975923633360984 L 0.6000000000000001 1.1 L 0.5509914298352198 1.0975923633360984 L 0.502454838991936 1.0903926402016153 L 0.454857661372769 1.0784701678661044 L 0.4086582838174552 1.0619397662556433 L 0.36430163158700124 1.0409606321741776 L 0.3222148834901991 1.0157348061512725 L 0.2828033579181774 0.9865052266813685 L 0.24644660940672636 0.9535533905932738 L 0.2134947733186316 0.9171966420818227 L 0.18426519384872742 0.8777851165098011 L 0.15903936782582262 0.8356983684129989 L 0.13806023374435672 0.7913417161825449 L 0.12152983213389568 0.7451423386272311 L 0.10960735979838487 0.6975451610080643 L 0.10240763666390168 0.6490085701647804 L 0.10000000000000009 0.6000000000000001 L 0.10240763666390162 0.5509914298352196 L 0.10960735979838487 0.5024548389919358 L 0.12152983213389562 0.45485766137276895 L 0.13806023374435666 0.40865828381745517 L 0.15903936782582256 0.36430163158700113 L 0.18426519384872736 0.322214883490199 L 0.21349477331863154 0.28280335791817734 L 0.24644660940672625 0.24644660940672625 L 0.2828033579181772 0.21349477331863165 L 0.322214883490199 0.18426519384872736 L 0.36430163158700113 0.1590393678258225 L 0.40865828381745495 0.13806023374435672 L 0.45485766137276884 0.12152983213389557 L 0.5024548389919358 0.10960735979838482 L 0.5509914298352199 0.10240763666390151 L 0.6 0.09999999999999998 L 0.6490085701647801 0.10240763666390151 L 0.6975451610080643 0.10960735979838476 L 0.7451423386272311 0.12152983213389551 L 0.7913417161825451 0.13806023374435666 L 0.8356983684129988 0.15903936782582245 L 0.877785116509801 0.18426519384872725 L 0.9171966420818229 0.21349477331863154 L 0.9535533905932738 0.24644660940672614 L 0.9865052266813684 0.282803357918177 L 1.0157348061512728 0.3222148834901989 L 1.0409606321741776 0.364301631587001 L 1.0619397662556433 0.4086582838174548 L 1.0784701678661044 0.45485766137276873 L 1.0903926402016153 0.5024548389919357 L 1.0975923633360987 0.5509914298352198 L 1.1 0.6 L 1.1 0.6 Z"/></clipPath><g clip-path="url(#clip-1764608597265-s0ajpdry8__stack1)"><line x1="0.8636753236814714" y1="0.09999999999999998" x2="1.1" y2="0.33632467631852864" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.6091168824543142" y1="0.09999999999999998" x2="1.1" y2="0.5908831175456859" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.35455844122715696" y1="0.09999999999999998" x2="1.1" y2="0.845441558772843" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.10000000000000009" y1="0.1000000000000002" x2="1.1" y2="1.1" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.10000000000000009" y1="0.3545584412271573" x2="0.845441558772843" y2="1.1" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.10000000000000009" y1="0.6091168824543143" x2="0.5908831175456859" y2="1.1" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.10000000000000009" y1="0.8636753236814716" x2="0.33632467631852864" y2="1.1" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.1" y1="0.8636753236814714" x2="0.8636753236814715" y2="1.1" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.1" y1="0.6091168824543142" x2="0.6091168824543143" y2="1.1" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.1" y1="0.3545584412271571" x2="0.3545584412271574" y2="1.1" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.1" y1="0.09999999999999998" x2="0.10000000000000042" y2="1.1" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.8454415587728429" y1="0.09999999999999998" x2="0.10000000000000009" y2="0.845441558772843" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.590883117545686" y1="0.09999999999999998" x2="0.10000000000000009" y2="0.5908831175456859" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.3363246763185288" y1="0.09999999999999998" x2="0.10000000000000009" y2="0.3363246763185287" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/></g><path d="M 1.1 0.6 L 1.0975923633360987 0.6490085701647803 L 1.0903926402016153 0.6975451610080641 L 1.0784701678661044 0.7451423386272311 L 1.0619397662556436 0.7913417161825449 L 1.0409606321741776 0.8356983684129988 L 1.0157348061512728 0.8777851165098011 L 0.9865052266813685 0.9171966420818227 L 0.9535533905932738 0.9535533905932737 L 0.9171966420818228 0.9865052266813685 L 0.8777851165098012 1.0157348061512725 L 0.835698368412999 1.0409606321741776 L 0.791341716182545 1.0619397662556433 L 0.7451423386272312 1.0784701678661044 L 0.6975451610080643 1.0903926402016153 L 0.6490085701647805 1.0975923633360984 L 0.6000000000000001 1.1 L 0.5509914298352198 1.0975923633360984 L 0.502454838991936 1.0903926402016153 L 0.454857661372769 1.0784701678661044 L 0.4086582838174552 1.0619397662556433 L 0.36430163158700124 1.0409606321741776 L 0.3222148834901991 1.0157348061512725 L 0.2828033579181774 0.9865052266813685 L 0.24644660940672636 0.9535533905932738 L 0.2134947733186316 0.9171966420818227 L 0.18426519384872742 0.8777851165098011 L 0.15903936782582262 0.8356983684129989 L 0.13806023374435672 0.7913417161825449 L 0.12152983213389568 0.7451423386272311 L 0.10960735979838487 0.6975451610080643 L 0.10240763666390168 0.6490085701647804 L 0.10000000000000009 0.6000000000000001 L 0.10240763666390162 0.5509914298352196 L 0.10960735979838487 0.5024548389919358 L 0.12152983213389562 0.45485766137276895 L 0.13806023374435666 0.40865828381745517 L 0.15903936782582256 0.36430163158700113 L 0.18426519384872736 0.322214883490199 L 0.21349477331863154 0.28280335791817734 L 0.24644660940672625 0.24644660940672625 L 0.2828033579181772 0.21349477331863165 L 0.322214883490199 0.18426519384872736 L 0.36430163158700113 0.1590393678258225 L 0.40865828381745495 0.13806023374435672 L 0.45485766137276884 0.12152983213389557 L 0.5024548389919358 0.10960735979838482 L 0.5509914298352199 0.10240763666390151 L 0.6 0.09999999999999998 L 0.6490085701647801 0.10240763666390151 L 0.6975451610080643 0.10960735979838476 L 0.7451423386272311 0.12152983213389551 L 0.7913417161825451 0.13806023374435666 L 0.8356983684129988 0.15903936782582245 L 0.877785116509801 0.18426519384872725 L 0.9171966420818229 0.21349477331863154 L 0.9535533905932738 0.24644660940672614 L 0.9865052266813684 0.282803357918177 L 1.0157348061512728 0.3222148834901989 L 1.0409606321741776 0.364301631587001 L 1.0619397662556433 0.4086582838174548 L 1.0784701678661044 0.45485766137276873 L 1.0903926402016153 0.5024548389919357 L 1.0975923633360987 0.5509914298352198 L 1.1 0.6 L 1.1 0.6 Z" fill="none" stroke="#FF0000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><clipPath id="clip-1764608597265-t44boaq4t__stack1"><path d="M 4.1 0.09999999999999998 L 5.1 0.09999999999999998 L 5.1 1.1 L 4.1 1.1 L 4.1 0.09999999999999998 L 4.1 0.09999999999999998 Z"/></clipPath><g clip-path="url(#clip-1764608597265-t44boaq4t__stack1)"><line x1="4.863675323681472" y1="0.09999999999999998" x2="5.1" y2="0.336324676318528" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.609116882454314" y1="0.09999999999999998" x2="5.1" y2="0.5908831175456853" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.354558441227157" y1="0.09999999999999998" x2="5.1" y2="0.8454415587728427" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.1" y1="0.09999999999999998" x2="5.1" y2="1.1" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.1" y1="0.3545584412271573" x2="4.845441558772842" y2="1.1" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.1" y1="0.6091168824543146" x2="4.590883117545685" y2="1.1" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.1" y1="0.8636753236814719" x2="4.336324676318528" y2="1.1" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="5.1" y1="0.8636753236814719" x2="4.863675323681472" y2="1.1" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="5.1" y1="0.6091168824543146" x2="4.609116882454314" y2="1.1" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="5.1" y1="0.3545584412271573" x2="4.354558441227157" y2="1.1" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="5.1" y1="0.09999999999999998" x2="4.1" y2="1.1" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.845441558772842" y1="0.09999999999999998" x2="4.1" y2="0.845441558772843" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.590883117545685" y1="0.09999999999999998" x2="4.1" y2="0.5908831175456856" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.336324676318528" y1="0.09999999999999998" x2="4.1" y2="0.33632467631852814" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/></g><path d="M 4.1 0.09999999999999998 L 5.1 0.09999999999999998 L 5.1 1.1 L 4.1 1.1 L 4.1 0.09999999999999998 L 4.1 0.09999999999999998 Z" fill="none" stroke="#FF0000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -2.4 -4.4 L 7.6 -4.4 L 7.6 5.6 L -2.4 5.6 L -2.4 -4.4 L -2.4 -4.4" fill="none" stroke="#FF0000" stroke-width="0.1"/></g></g>
|
|
5
|
+
<g transform="translate(0, 600) scale(26.666666666666668, 26.666666666666668) translate(12.4, 10.9)">
|
|
6
|
+
<rect x="-12.4" y="-10.9" width="30" height="30" fill="white"/><g transform="matrix(1 0 0 -1 0 8.200000000000001)"><g transform="matrix(1,0,0,1,0,0)"><clipPath id="clip-1764685481442-e6i8qq3iy__stack1"><path d="M 1.1 4.1 L 1.0975923633360987 4.14900857016478 L 1.0903926402016153 4.197545161008064 L 1.0784701678661044 4.245142338627231 L 1.0619397662556436 4.2913417161825445 L 1.0409606321741776 4.335698368412999 L 1.0157348061512728 4.3777851165098 L 0.9865052266813685 4.417196642081822 L 0.9535533905932738 4.453553390593274 L 0.9171966420818228 4.486505226681368 L 0.8777851165098012 4.515734806151272 L 0.835698368412999 4.540960632174177 L 0.791341716182545 4.561939766255643 L 0.7451423386272312 4.578470167866104 L 0.6975451610080643 4.590392640201615 L 0.6490085701647805 4.597592363336098 L 0.6000000000000001 4.6 L 0.5509914298352198 4.597592363336098 L 0.502454838991936 4.590392640201615 L 0.454857661372769 4.578470167866104 L 0.4086582838174552 4.561939766255643 L 0.36430163158700124 4.540960632174177 L 0.3222148834901991 4.515734806151272 L 0.2828033579181774 4.486505226681368 L 0.24644660940672636 4.453553390593274 L 0.2134947733186316 4.417196642081822 L 0.18426519384872742 4.3777851165098 L 0.15903936782582262 4.335698368412999 L 0.13806023374435672 4.2913417161825445 L 0.12152983213389568 4.245142338627231 L 0.10960735979838487 4.197545161008064 L 0.10240763666390168 4.14900857016478 L 0.10000000000000009 4.1 L 0.10240763666390162 4.05099142983522 L 0.10960735979838487 4.002454838991936 L 0.12152983213389562 3.9548576613727686 L 0.13806023374435666 3.908658283817455 L 0.15903936782582256 3.8643016315870007 L 0.18426519384872736 3.8222148834901986 L 0.21349477331863154 3.7828033579181772 L 0.24644660940672625 3.7464466094067257 L 0.2828033579181772 3.713494773318631 L 0.322214883490199 3.684265193848727 L 0.36430163158700113 3.659039367825822 L 0.40865828381745495 3.6380602337443566 L 0.45485766137276884 3.6215298321338953 L 0.5024548389919358 3.6096073597983844 L 0.5509914298352199 3.602407636663901 L 0.6 3.5999999999999996 L 0.6490085701647801 3.602407636663901 L 0.6975451610080643 3.6096073597983844 L 0.7451423386272311 3.6215298321338953 L 0.7913417161825451 3.638060233744356 L 0.8356983684129988 3.659039367825822 L 0.877785116509801 3.6842651938487267 L 0.9171966420818229 3.713494773318631 L 0.9535533905932738 3.7464466094067257 L 0.9865052266813684 3.782803357918177 L 1.0157348061512728 3.8222148834901986 L 1.0409606321741776 3.8643016315870007 L 1.0619397662556433 3.9086582838174544 L 1.0784701678661044 3.9548576613727686 L 1.0903926402016153 4.002454838991936 L 1.0975923633360987 4.05099142983522 L 1.1 4.1 L 1.1 4.1 Z"/></clipPath><g clip-path="url(#clip-1764685481442-e6i8qq3iy__stack1)"><line x1="0.8636753236814715" y1="3.5999999999999996" x2="1.1" y2="3.836324676318528" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.6091168824543145" y1="3.5999999999999996" x2="1.1" y2="4.090883117545685" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.3545584412271572" y1="3.5999999999999996" x2="1.1" y2="4.345441558772842" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.10000000000000009" y1="3.5999999999999996" x2="1.1" y2="4.6" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.10000000000000009" y1="3.854558441227157" x2="0.845441558772843" y2="4.6" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.10000000000000009" y1="4.109116882454314" x2="0.5908831175456856" y2="4.6" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.10000000000000009" y1="4.363675323681472" x2="0.33632467631852825" y2="4.6" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.1" y1="4.363675323681472" x2="0.863675323681472" y2="4.6" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.1" y1="4.109116882454314" x2="0.6091168824543147" y2="4.6" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.1" y1="3.854558441227157" x2="0.3545584412271574" y2="4.6" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.1" y1="3.5999999999999996" x2="0.10000000000000009" y2="4.6" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.8454415587728428" y1="3.5999999999999996" x2="0.10000000000000009" y2="4.345441558772842" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.5908831175456857" y1="3.5999999999999996" x2="0.10000000000000009" y2="4.090883117545685" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="0.3363246763185288" y1="3.5999999999999996" x2="0.10000000000000009" y2="3.8363246763185286" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/></g><path d="M 1.1 4.1 L 1.0975923633360987 4.14900857016478 L 1.0903926402016153 4.197545161008064 L 1.0784701678661044 4.245142338627231 L 1.0619397662556436 4.2913417161825445 L 1.0409606321741776 4.335698368412999 L 1.0157348061512728 4.3777851165098 L 0.9865052266813685 4.417196642081822 L 0.9535533905932738 4.453553390593274 L 0.9171966420818228 4.486505226681368 L 0.8777851165098012 4.515734806151272 L 0.835698368412999 4.540960632174177 L 0.791341716182545 4.561939766255643 L 0.7451423386272312 4.578470167866104 L 0.6975451610080643 4.590392640201615 L 0.6490085701647805 4.597592363336098 L 0.6000000000000001 4.6 L 0.5509914298352198 4.597592363336098 L 0.502454838991936 4.590392640201615 L 0.454857661372769 4.578470167866104 L 0.4086582838174552 4.561939766255643 L 0.36430163158700124 4.540960632174177 L 0.3222148834901991 4.515734806151272 L 0.2828033579181774 4.486505226681368 L 0.24644660940672636 4.453553390593274 L 0.2134947733186316 4.417196642081822 L 0.18426519384872742 4.3777851165098 L 0.15903936782582262 4.335698368412999 L 0.13806023374435672 4.2913417161825445 L 0.12152983213389568 4.245142338627231 L 0.10960735979838487 4.197545161008064 L 0.10240763666390168 4.14900857016478 L 0.10000000000000009 4.1 L 0.10240763666390162 4.05099142983522 L 0.10960735979838487 4.002454838991936 L 0.12152983213389562 3.9548576613727686 L 0.13806023374435666 3.908658283817455 L 0.15903936782582256 3.8643016315870007 L 0.18426519384872736 3.8222148834901986 L 0.21349477331863154 3.7828033579181772 L 0.24644660940672625 3.7464466094067257 L 0.2828033579181772 3.713494773318631 L 0.322214883490199 3.684265193848727 L 0.36430163158700113 3.659039367825822 L 0.40865828381745495 3.6380602337443566 L 0.45485766137276884 3.6215298321338953 L 0.5024548389919358 3.6096073597983844 L 0.5509914298352199 3.602407636663901 L 0.6 3.5999999999999996 L 0.6490085701647801 3.602407636663901 L 0.6975451610080643 3.6096073597983844 L 0.7451423386272311 3.6215298321338953 L 0.7913417161825451 3.638060233744356 L 0.8356983684129988 3.659039367825822 L 0.877785116509801 3.6842651938487267 L 0.9171966420818229 3.713494773318631 L 0.9535533905932738 3.7464466094067257 L 0.9865052266813684 3.782803357918177 L 1.0157348061512728 3.8222148834901986 L 1.0409606321741776 3.8643016315870007 L 1.0619397662556433 3.9086582838174544 L 1.0784701678661044 3.9548576613727686 L 1.0903926402016153 4.002454838991936 L 1.0975923633360987 4.05099142983522 L 1.1 4.1 L 1.1 4.1 Z" fill="none" stroke="#FF0000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><clipPath id="clip-1764685481442-7z71ezcaj__stack1"><path d="M 4.1 3.5999999999999996 L 5.1 3.5999999999999996 L 5.1 4.6 L 4.1 4.6 L 4.1 3.5999999999999996 L 4.1 3.5999999999999996 Z"/></clipPath><g clip-path="url(#clip-1764685481442-7z71ezcaj__stack1)"><line x1="4.863675323681472" y1="3.5999999999999996" x2="5.1" y2="3.8363246763185277" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.609116882454314" y1="3.5999999999999996" x2="5.1" y2="4.090883117545685" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.354558441227157" y1="3.5999999999999996" x2="5.1" y2="4.345441558772842" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.1" y1="3.5999999999999996" x2="5.1" y2="4.6" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.1" y1="3.854558441227157" x2="4.845441558772842" y2="4.6" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.1" y1="4.109116882454314" x2="4.590883117545685" y2="4.6" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.1" y1="4.363675323681472" x2="4.336324676318528" y2="4.6" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="5.1" y1="4.363675323681472" x2="4.863675323681472" y2="4.6" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="5.1" y1="4.109116882454314" x2="4.609116882454314" y2="4.6" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="5.1" y1="3.854558441227157" x2="4.354558441227157" y2="4.6" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="5.1" y1="3.5999999999999996" x2="4.1" y2="4.6" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.845441558772842" y1="3.5999999999999996" x2="4.1" y2="4.345441558772842" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.590883117545685" y1="3.5999999999999996" x2="4.1" y2="4.090883117545685" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="4.336324676318528" y1="3.5999999999999996" x2="4.1" y2="3.8363246763185277" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/></g><path d="M 4.1 3.5999999999999996 L 5.1 3.5999999999999996 L 5.1 4.6 L 4.1 4.6 L 4.1 3.5999999999999996 L 4.1 3.5999999999999996 Z" fill="none" stroke="#FF0000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><clipPath id="clip-1764685481442-fe4x6m37y__stack1"><path d="M 3.6 1.0999999999999996 L 3.595184726672197 1.1980171403295603 L 3.5807852804032305 1.2950903220161278 L 3.556940335732209 1.390284677254462 L 3.5238795325112866 1.4826834323650895 L 3.481921264348355 1.5713967368259973 L 3.4314696123025454 1.6555702330196018 L 3.373010453362737 1.7343932841636451 L 3.3071067811865476 1.807106781186547 L 3.2343932841636454 1.8730104533627365 L 3.1555702330196023 1.931469612302545 L 3.071396736825998 1.9819212643483546 L 2.98268343236509 2.0238795325112866 L 2.8902846772544626 2.0569403357322082 L 2.7950903220161285 2.08078528040323 L 2.698017140329561 2.0951847266721964 L 2.6 2.0999999999999996 L 2.5019828596704397 2.095184726672197 L 2.4049096779838717 2.08078528040323 L 2.309715322745538 2.0569403357322087 L 2.2173165676349105 2.0238795325112866 L 2.1286032631740026 1.9819212643483546 L 2.0444297669803984 1.931469612302545 L 1.9656067158363548 1.8730104533627367 L 1.8928932188134526 1.807106781186547 L 1.8269895466372632 1.7343932841636451 L 1.7685303876974547 1.6555702330196018 L 1.7180787356516452 1.5713967368259976 L 1.6761204674887134 1.4826834323650895 L 1.6430596642677913 1.3902846772544621 L 1.6192147195967697 1.2950903220161283 L 1.6048152733278034 1.1980171403295605 L 1.6 1.0999999999999999 L 1.6048152733278032 1.001982859670439 L 1.6192147195967697 0.9049096779838712 L 1.643059664267791 0.8097153227455376 L 1.6761204674887131 0.71731656763491 L 1.7180787356516452 0.628603263174002 L 1.7685303876974547 0.5444297669803977 L 1.826989546637263 0.4656067158363544 L 1.8928932188134524 0.3928932188134522 L 1.9656067158363544 0.326989546637263 L 2.044429766980398 0.2685303876974544 L 2.128603263174002 0.2180787356516447 L 2.2173165676349096 0.17612046748871313 L 2.3097153227455376 0.14305966426779082 L 2.4049096779838712 0.11921471959676933 L 2.5019828596704397 0.10481527332780272 L 2.6 0.09999999999999964 L 2.69801714032956 0.10481527332780272 L 2.7950903220161285 0.11921471959676921 L 2.890284677254462 0.1430596642677907 L 2.98268343236509 0.17612046748871302 L 3.0713967368259976 0.2180787356516446 L 3.155570233019602 0.2685303876974542 L 3.234393284163646 0.32698954663726276 L 3.3071067811865476 0.39289321881345196 L 3.3730104533627365 0.4656067158363537 L 3.4314696123025454 0.5444297669803975 L 3.481921264348355 0.6286032631740017 L 3.5238795325112866 0.7173165676349093 L 3.556940335732209 0.8097153227455371 L 3.5807852804032305 0.9049096779838709 L 3.595184726672197 1.0019828596704392 L 3.6 1.0999999999999996 L 3.6 1.0999999999999996 Z"/></clipPath><g clip-path="url(#clip-1764685481442-fe4x6m37y__stack1)"><line x1="3.3819090885901" y1="0.09999999999999964" x2="3.6" y2="0.31809091140989976" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.1273506473629427" y1="0.09999999999999964" x2="3.6" y2="0.5726493526370569" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.8727922061357853" y1="0.09999999999999964" x2="3.6" y2="0.8272077938642141" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.618233764908628" y1="0.09999999999999964" x2="3.6" y2="1.0817662350913713" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.3636753236814707" y1="0.09999999999999964" x2="3.6" y2="1.3363246763185286" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.1091168824543134" y1="0.09999999999999964" x2="3.6" y2="1.5908831175456857" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.8545584412271572" y1="0.09999999999999964" x2="3.6" y2="1.8454415587728419" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.6" y1="0.09999999999999987" x2="3.6" y2="2.0999999999999996" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.6" y1="0.35455844122715713" x2="3.3454415587728428" y2="2.0999999999999996" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.6" y1="0.6091168824543137" x2="3.0908831175456863" y2="2.0999999999999996" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.6" y1="0.8636753236814709" x2="2.836324676318529" y2="2.0999999999999996" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.6" y1="1.1182337649086278" x2="2.581766235091372" y2="2.0999999999999996" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.6" y1="1.3727922061357853" x2="2.327207793864215" y2="2.0999999999999996" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.6" y1="1.6273506473629424" x2="2.0726493526370575" y2="2.0999999999999996" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.6" y1="1.8819090885900993" x2="1.8180909114099004" y2="2.0999999999999996" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.6" y1="1.8819090885900998" x2="3.3819090885901004" y2="2.0999999999999996" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.6" y1="1.6273506473629424" x2="3.127350647362943" y2="2.0999999999999996" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.6" y1="1.3727922061357851" x2="2.872792206135786" y2="2.0999999999999996" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.6" y1="1.1182337649086278" x2="2.6182337649086285" y2="2.0999999999999996" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.6" y1="0.8636753236814705" x2="2.363675323681471" y2="2.0999999999999996" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.6" y1="0.6091168824543131" x2="2.109116882454314" y2="2.0999999999999996" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.6" y1="0.3545584412271566" x2="1.8545584412271574" y2="2.0999999999999996" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.5999999999999996" y1="0.09999999999999964" x2="1.6000000000000003" y2="2.0999999999999996" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.3454415587728423" y1="0.09999999999999964" x2="1.6" y2="1.8454415587728425" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="3.090883117545686" y1="0.09999999999999964" x2="1.6" y2="1.590883117545686" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.8363246763185286" y1="0.09999999999999964" x2="1.6" y2="1.3363246763185286" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.5817662350913717" y1="0.09999999999999964" x2="1.6" y2="1.0817662350913715" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.327207793864215" y1="0.09999999999999964" x2="1.6" y2="0.8272077938642144" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="2.0726493526370575" y1="0.09999999999999964" x2="1.6" y2="0.5726493526370571" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/><line x1="1.8180909114099002" y1="0.09999999999999964" x2="1.6" y2="0.3180909114098998" stroke="#FF0000" stroke-width="0.1" stroke-opacity="0.8"/></g><path d="M 3.6 1.0999999999999996 L 3.595184726672197 1.1980171403295603 L 3.5807852804032305 1.2950903220161278 L 3.556940335732209 1.390284677254462 L 3.5238795325112866 1.4826834323650895 L 3.481921264348355 1.5713967368259973 L 3.4314696123025454 1.6555702330196018 L 3.373010453362737 1.7343932841636451 L 3.3071067811865476 1.807106781186547 L 3.2343932841636454 1.8730104533627365 L 3.1555702330196023 1.931469612302545 L 3.071396736825998 1.9819212643483546 L 2.98268343236509 2.0238795325112866 L 2.8902846772544626 2.0569403357322082 L 2.7950903220161285 2.08078528040323 L 2.698017140329561 2.0951847266721964 L 2.6 2.0999999999999996 L 2.5019828596704397 2.095184726672197 L 2.4049096779838717 2.08078528040323 L 2.309715322745538 2.0569403357322087 L 2.2173165676349105 2.0238795325112866 L 2.1286032631740026 1.9819212643483546 L 2.0444297669803984 1.931469612302545 L 1.9656067158363548 1.8730104533627367 L 1.8928932188134526 1.807106781186547 L 1.8269895466372632 1.7343932841636451 L 1.7685303876974547 1.6555702330196018 L 1.7180787356516452 1.5713967368259976 L 1.6761204674887134 1.4826834323650895 L 1.6430596642677913 1.3902846772544621 L 1.6192147195967697 1.2950903220161283 L 1.6048152733278034 1.1980171403295605 L 1.6 1.0999999999999999 L 1.6048152733278032 1.001982859670439 L 1.6192147195967697 0.9049096779838712 L 1.643059664267791 0.8097153227455376 L 1.6761204674887131 0.71731656763491 L 1.7180787356516452 0.628603263174002 L 1.7685303876974547 0.5444297669803977 L 1.826989546637263 0.4656067158363544 L 1.8928932188134524 0.3928932188134522 L 1.9656067158363544 0.326989546637263 L 2.044429766980398 0.2685303876974544 L 2.128603263174002 0.2180787356516447 L 2.2173165676349096 0.17612046748871313 L 2.3097153227455376 0.14305966426779082 L 2.4049096779838712 0.11921471959676933 L 2.5019828596704397 0.10481527332780272 L 2.6 0.09999999999999964 L 2.69801714032956 0.10481527332780272 L 2.7950903220161285 0.11921471959676921 L 2.890284677254462 0.1430596642677907 L 2.98268343236509 0.17612046748871302 L 3.0713967368259976 0.2180787356516446 L 3.155570233019602 0.2685303876974542 L 3.234393284163646 0.32698954663726276 L 3.3071067811865476 0.39289321881345196 L 3.3730104533627365 0.4656067158363537 L 3.4314696123025454 0.5444297669803975 L 3.481921264348355 0.6286032631740017 L 3.5238795325112866 0.7173165676349093 L 3.556940335732209 0.8097153227455371 L 3.5807852804032305 0.9049096779838709 L 3.595184726672197 1.0019828596704392 L 3.6 1.0999999999999996 L 3.6 1.0999999999999996 Z" fill="none" stroke="#FF0000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -2.4 -0.9000000000000004 L 7.6 -0.9000000000000004 L 7.6 9.1 L -2.4 9.1 L -2.4 -0.9000000000000004 L -2.4 -0.9000000000000004" fill="none" stroke="#FF0000" stroke-width="0.1"/></g></g>
|
|
7
7
|
</g>
|
|
8
8
|
</svg>
|
|
@@ -69,6 +69,16 @@ const circuitJson: CircuitJson = [
|
|
|
69
69
|
y: 0,
|
|
70
70
|
layers: ["top"],
|
|
71
71
|
},
|
|
72
|
+
{
|
|
73
|
+
type: "pcb_plated_hole",
|
|
74
|
+
pcb_plated_hole_id: "pcb_plated_hole_1",
|
|
75
|
+
shape: "circle",
|
|
76
|
+
x: 0,
|
|
77
|
+
y: -3,
|
|
78
|
+
hole_diameter: 1,
|
|
79
|
+
outer_diameter: 2,
|
|
80
|
+
layers: ["top"],
|
|
81
|
+
},
|
|
72
82
|
{
|
|
73
83
|
type: "pcb_trace",
|
|
74
84
|
pcb_trace_id: "trace_1",
|