Implemented Base Jumpers
@ -148,6 +148,13 @@ To see how to specify the output formats, as well as additional options, run:
|
||||
$ wireviz --help
|
||||
```
|
||||
|
||||
For using the .gv output one needs to use the following command:
|
||||
|
||||
```
|
||||
dot <filename>.gv | gvpr -q -cf <filename>_pin2pin.gvpr | neato -n2 -T<type> -o <filename>.<type>
|
||||
```
|
||||
|
||||
|
||||
|
||||
### (Re-)Building the example projects
|
||||
|
||||
|
||||
@ -83,8 +83,18 @@ tweak: # optional tweaking of .gv output
|
||||
hide_disconnected_pins: <bool> # defaults to false
|
||||
|
||||
# loops
|
||||
loops: <List> # every list item is itself a list of exactly two pins
|
||||
# on the connector that are to be shorted
|
||||
loops: # a list(dict) of loops
|
||||
- <str>: <List> # every list item is itself a list of pins
|
||||
# on the connector that are to be shorted with a cable loop
|
||||
# more information about the loop can be added by additional
|
||||
# components definition (see below)
|
||||
# Shorts
|
||||
shorts: # a list(dict) of shorts
|
||||
- <str>: <List> # every list item is itself a list of pins
|
||||
# on the connector that are to be shorted represented inside
|
||||
# the connector table
|
||||
# more information about the loop can be added by additional
|
||||
# components definition (see below)
|
||||
```
|
||||
|
||||
## Cable attributes
|
||||
|
||||
416
examples/demo01.gv
generated
@ -1,186 +1,266 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4-dev
|
||||
// Graph generated by WireViz 0.4-dev251
|
||||
// https://github.com/formatc1702/WireViz
|
||||
graph [bgcolor="#FFFFFF" fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor="#FFFFFF" fontname=arial height=0 margin=0 shape=none style=filled width=0]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">D-Sub</td>
|
||||
<td balign="left">female</td>
|
||||
<td balign="left">9-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td>DCD</td>
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RX</td>
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>TX</td>
|
||||
<td port="p3r">3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DTR</td>
|
||||
<td port="p4r">4</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>GND</td>
|
||||
<td port="p5r">5</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DSR</td>
|
||||
<td port="p6r">6</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RTS</td>
|
||||
<td port="p7r">7</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>CTS</td>
|
||||
<td port="p8r">8</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RI</td>
|
||||
<td port="p9r">9</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>D-Sub</td>
|
||||
<td>female</td>
|
||||
<td>9-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>DCD</td>
|
||||
[]
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RX</td>
|
||||
[]
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>TX</td>
|
||||
[]
|
||||
<td port="p3r">3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DTR</td>
|
||||
[]
|
||||
<td port="p4r">4</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>GND</td>
|
||||
[]
|
||||
<td port="p5r">5</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DSR</td>
|
||||
[]
|
||||
<td port="p6r">6</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RTS</td>
|
||||
[]
|
||||
<td port="p7r">7</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>CTS</td>
|
||||
[]
|
||||
<td port="p8r">8</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RI</td>
|
||||
[]
|
||||
<td port="p9r">9</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
edge [color="#000000:#ffffff:#000000"]
|
||||
X1:p7r:e -- X1:p8r:e
|
||||
> shape=box style=filled]
|
||||
edge [color="#000000"]
|
||||
X1:p7r:e -- X1:p8r:e [label=" " color="#000000" noLabel=noLabel]
|
||||
X2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X2</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Molex KK 254</td>
|
||||
<td balign="left">female</td>
|
||||
<td balign="left">3-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>RX</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p3l">3</td>
|
||||
<td>TX</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Molex KK 254</td>
|
||||
<td>female</td>
|
||||
<td>3-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>RX</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p3l">3</td>
|
||||
<td>TX</td>
|
||||
[]
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
edge [color="#000000:#ffffff:#000000"]
|
||||
> shape=box style=filled]
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>3x</td>
|
||||
<td>0.25 mm²</td>
|
||||
<td>+ S</td>
|
||||
<td>0.2 m</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:5:GND</td>
|
||||
<td> </td>
|
||||
<td>1:WH</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:1:GND </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w1">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:2:RX</td>
|
||||
<td> </td>
|
||||
<td>2:BN</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:3:TX </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w2">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:3:TX</td>
|
||||
<td> </td>
|
||||
<td>3:GN</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:2:RX </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w3">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:5:GND</td>
|
||||
<td> </td>
|
||||
<td>Shield</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="2" port="w4">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> shape=box style=filled]
|
||||
edge [color="#000000:#FFFFFF:#000000"]
|
||||
X1:p5r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
X1:p2r:e -- W1:w2:w
|
||||
W1:w2:e -- X2:p3l:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
edge [color="#000000:#00AA00:#000000"]
|
||||
X1:p3r:e -- W1:w3:w
|
||||
W1:w3:e -- X2:p2l:w
|
||||
edge [color="#000000"]
|
||||
X1:p5r:e -- W1:ws:w
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">W1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">3x</td>
|
||||
<td balign="left">0.25 mm²</td>
|
||||
<td balign="left">+ S</td>
|
||||
<td balign="left">0.2 m</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td>X1:5:GND</td>
|
||||
<td>
|
||||
1:WH
|
||||
</td>
|
||||
<td>X2:1:GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ffffff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:2:RX</td>
|
||||
<td>
|
||||
2:BN
|
||||
</td>
|
||||
<td>X2:3:TX</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:3:TX</td>
|
||||
<td>
|
||||
3:GN
|
||||
</td>
|
||||
<td>X2:2:RX</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w3" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#00ff00" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td>X1:5:GND</td>
|
||||
<td>Shield</td>
|
||||
<td><!-- s_out --></td>
|
||||
</tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0" port="ws"></td></tr>
|
||||
<tr><td> </td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
X1:p5r:e -- W1:w4:w
|
||||
W1:w1:e -- W1:w1:w [color="#000000:#FFFFFF:#000000" straight=straight]
|
||||
W1:w2:e -- W1:w2:w [color="#000000:#895956:#000000" straight=straight]
|
||||
W1:w3:e -- W1:w3:w [color="#000000:#00AA00:#000000" straight=straight]
|
||||
W1:w4:e -- W1:w4:w [color="#000000" straight=straight]
|
||||
}
|
||||
|
||||
340
examples/demo01.html
generated
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="generator" content="WireViz 0.4-dev - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.4-dev251 - https://github.com/formatc1702/WireViz">
|
||||
<title>demo01</title>
|
||||
<style>
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
}
|
||||
|
||||
</style>
|
||||
</head><body style="font-family:arial;background-color:#ffffff">
|
||||
</head><body style="font-family:arial;background-color:#FFFFFF">
|
||||
<h1>demo01</h1>
|
||||
<h2>Diagram</h2>
|
||||
|
||||
@ -30,181 +30,215 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="833pt" height="291pt"
|
||||
viewBox="0.00 0.00 833.00 291.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 287)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-287 829,-287 829,4 -4,4"/>
|
||||
<svg width="827pt" height="305pt"
|
||||
viewBox="0.00 0.00 826.75 305.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 301)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-301 822.75,-301 822.75,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="139,-253 0,-253 0,0 139,0 139,-253"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="0,0 0,-253 139,-253 139,0 0,0"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-229.5 0.5,-252.5 139.5,-252.5 139.5,-229.5 0.5,-229.5"/>
|
||||
<text text-anchor="start" x="61" y="-237.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-206.5 0.5,-229.5 48.5,-229.5 48.5,-206.5 0.5,-206.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-214.3" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="48.5,-206.5 48.5,-229.5 99.5,-229.5 99.5,-206.5 48.5,-206.5"/>
|
||||
<text text-anchor="start" x="52.5" y="-214.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="99.5,-206.5 99.5,-229.5 139.5,-229.5 139.5,-206.5 99.5,-206.5"/>
|
||||
<text text-anchor="start" x="103.5" y="-214.3" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-183.5 0.5,-206.5 82.5,-206.5 82.5,-183.5 0.5,-183.5"/>
|
||||
<text text-anchor="start" x="26" y="-191.3" font-family="arial" font-size="14.00">DCD</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,-183.5 82.5,-206.5 139.5,-206.5 139.5,-183.5 82.5,-183.5"/>
|
||||
<text text-anchor="start" x="107" y="-191.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-160.5 0.5,-183.5 82.5,-183.5 82.5,-160.5 0.5,-160.5"/>
|
||||
<text text-anchor="start" x="31.5" y="-168.3" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,-160.5 82.5,-183.5 139.5,-183.5 139.5,-160.5 82.5,-160.5"/>
|
||||
<text text-anchor="start" x="107" y="-168.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-137.5 0.5,-160.5 82.5,-160.5 82.5,-137.5 0.5,-137.5"/>
|
||||
<text text-anchor="start" x="32.5" y="-145.3" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,-137.5 82.5,-160.5 139.5,-160.5 139.5,-137.5 82.5,-137.5"/>
|
||||
<text text-anchor="start" x="107" y="-145.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-114.5 0.5,-137.5 82.5,-137.5 82.5,-114.5 0.5,-114.5"/>
|
||||
<text text-anchor="start" x="27" y="-122.3" font-family="arial" font-size="14.00">DTR</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,-114.5 82.5,-137.5 139.5,-137.5 139.5,-114.5 82.5,-114.5"/>
|
||||
<text text-anchor="start" x="107" y="-122.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-91.5 0.5,-114.5 82.5,-114.5 82.5,-91.5 0.5,-91.5"/>
|
||||
<text text-anchor="start" x="25.5" y="-99.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,-91.5 82.5,-114.5 139.5,-114.5 139.5,-91.5 82.5,-91.5"/>
|
||||
<text text-anchor="start" x="107" y="-99.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-68.5 0.5,-91.5 82.5,-91.5 82.5,-68.5 0.5,-68.5"/>
|
||||
<text text-anchor="start" x="26.5" y="-76.3" font-family="arial" font-size="14.00">DSR</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,-68.5 82.5,-91.5 139.5,-91.5 139.5,-68.5 82.5,-68.5"/>
|
||||
<text text-anchor="start" x="107" y="-76.3" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-45.5 0.5,-68.5 82.5,-68.5 82.5,-45.5 0.5,-45.5"/>
|
||||
<text text-anchor="start" x="27.5" y="-53.3" font-family="arial" font-size="14.00">RTS</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,-45.5 82.5,-68.5 139.5,-68.5 139.5,-45.5 82.5,-45.5"/>
|
||||
<text text-anchor="start" x="107" y="-53.3" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-22.5 0.5,-45.5 82.5,-45.5 82.5,-22.5 0.5,-22.5"/>
|
||||
<text text-anchor="start" x="27.5" y="-30.3" font-family="arial" font-size="14.00">CTS</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,-22.5 82.5,-45.5 139.5,-45.5 139.5,-22.5 82.5,-22.5"/>
|
||||
<text text-anchor="start" x="107" y="-30.3" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,0.5 0.5,-22.5 82.5,-22.5 82.5,0.5 0.5,0.5"/>
|
||||
<text text-anchor="start" x="34.5" y="-7.3" font-family="arial" font-size="14.00">RI</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,0.5 82.5,-22.5 139.5,-22.5 139.5,0.5 82.5,0.5"/>
|
||||
<text text-anchor="start" x="107" y="-7.3" font-family="arial" font-size="14.00">9</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="139.5,-265 0,-265 0,0 139.5,0 139.5,-265"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,0 0,-265 139.5,-265 139.5,0 0,0"/>
|
||||
<polygon fill="none" stroke="black" points="0,-240.5 0,-265 139.5,-265 139.5,-240.5 0,-240.5"/>
|
||||
<text text-anchor="start" x="60.75" y="-247.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-216 0,-240.5 48.5,-240.5 48.5,-216 0,-216"/>
|
||||
<text text-anchor="start" x="4" y="-223.2" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="48.5,-216 48.5,-240.5 100,-240.5 100,-216 48.5,-216"/>
|
||||
<text text-anchor="start" x="52.5" y="-223.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="100,-216 100,-240.5 139.5,-240.5 139.5,-216 100,-216"/>
|
||||
<text text-anchor="start" x="104" y="-223.2" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-192 0,-216 81.25,-216 81.25,-192 0,-192"/>
|
||||
<text text-anchor="start" x="24.88" y="-198.7" font-family="arial" font-size="14.00">DCD</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,-192 81.25,-216 139.5,-216 139.5,-192 81.25,-192"/>
|
||||
<text text-anchor="start" x="106.25" y="-198.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-168 0,-192 81.25,-192 81.25,-168 0,-168"/>
|
||||
<text text-anchor="start" x="30.5" y="-174.7" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,-168 81.25,-192 139.5,-192 139.5,-168 81.25,-168"/>
|
||||
<text text-anchor="start" x="106.25" y="-174.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-144 0,-168 81.25,-168 81.25,-144 0,-144"/>
|
||||
<text text-anchor="start" x="31.25" y="-150.7" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,-144 81.25,-168 139.5,-168 139.5,-144 81.25,-144"/>
|
||||
<text text-anchor="start" x="106.25" y="-150.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-120 0,-144 81.25,-144 81.25,-120 0,-120"/>
|
||||
<text text-anchor="start" x="25.62" y="-126.7" font-family="arial" font-size="14.00">DTR</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,-120 81.25,-144 139.5,-144 139.5,-120 81.25,-120"/>
|
||||
<text text-anchor="start" x="106.25" y="-126.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0,-96 0,-120 81.25,-120 81.25,-96 0,-96"/>
|
||||
<text text-anchor="start" x="24.88" y="-102.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,-96 81.25,-120 139.5,-120 139.5,-96 81.25,-96"/>
|
||||
<text text-anchor="start" x="106.25" y="-102.7" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-72 0,-96 81.25,-96 81.25,-72 0,-72"/>
|
||||
<text text-anchor="start" x="25.25" y="-78.7" font-family="arial" font-size="14.00">DSR</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,-72 81.25,-96 139.5,-96 139.5,-72 81.25,-72"/>
|
||||
<text text-anchor="start" x="106.25" y="-78.7" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0,-48 0,-72 81.25,-72 81.25,-48 0,-48"/>
|
||||
<text text-anchor="start" x="26" y="-54.7" font-family="arial" font-size="14.00">RTS</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,-48 81.25,-72 139.5,-72 139.5,-48 81.25,-48"/>
|
||||
<text text-anchor="start" x="106.25" y="-54.7" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0,-24 0,-48 81.25,-48 81.25,-24 0,-24"/>
|
||||
<text text-anchor="start" x="26" y="-30.7" font-family="arial" font-size="14.00">CTS</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,-24 81.25,-48 139.5,-48 139.5,-24 81.25,-24"/>
|
||||
<text text-anchor="start" x="106.25" y="-30.7" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="0,0 0,-24 81.25,-24 81.25,0 0,0"/>
|
||||
<text text-anchor="start" x="33.12" y="-6.7" font-family="arial" font-size="14.00">RI</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,0 81.25,-24 139.5,-24 139.5,0 81.25,0"/>
|
||||
<text text-anchor="start" x="106.25" y="-6.7" font-family="arial" font-size="14.00">9</text>
|
||||
</g>
|
||||
<!-- X1--X1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--X1:e</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.95,-54.55C192,-66.5 298,-66.5 296,-45 298,-23.5 192,-23.5 139.95,-35.45"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M139.5,-56.5C192,-68.5 298,-68.5 298,-45 298,-21.5 192,-21.5 139.5,-33.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.05,-58.45C192,-70.5 298,-70.5 300,-45 298,-19.5 192,-19.5 139.05,-31.55"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-60C163.12,-72 210.38,-72 210.38,-48 210.38,-24 163.12,-24 139.5,-36"/>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="494,-283 283,-283 283,-84 494,-84 494,-283"/>
|
||||
<polygon fill="none" stroke="black" points="283.5,-259.5 283.5,-282.5 494.5,-282.5 494.5,-259.5 283.5,-259.5"/>
|
||||
<text text-anchor="start" x="378.5" y="-267.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="283.5,-236.5 283.5,-259.5 318.5,-259.5 318.5,-236.5 283.5,-236.5"/>
|
||||
<text text-anchor="start" x="293.5" y="-244.3" font-family="arial" font-size="14.00">3x</text>
|
||||
<polygon fill="none" stroke="black" points="318.5,-236.5 318.5,-259.5 398.5,-259.5 398.5,-236.5 318.5,-236.5"/>
|
||||
<text text-anchor="start" x="328.5" y="-244.3" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="398.5,-236.5 398.5,-259.5 439.5,-259.5 439.5,-236.5 398.5,-236.5"/>
|
||||
<text text-anchor="start" x="408" y="-244.3" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="439.5,-236.5 439.5,-259.5 494.5,-259.5 494.5,-236.5 439.5,-236.5"/>
|
||||
<text text-anchor="start" x="449" y="-244.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="315.5" y="-223.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="285.5" y="-204.3" font-family="arial" font-size="14.00">X1:5:GND</text>
|
||||
<text text-anchor="start" x="353.5" y="-204.3" font-family="arial" font-size="14.00">     1:WH    </text>
|
||||
<text text-anchor="start" x="428.5" y="-204.3" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="283.5,-196.5 283.5,-198.5 494.5,-198.5 494.5,-196.5 283.5,-196.5"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="283.5,-194.5 283.5,-196.5 494.5,-196.5 494.5,-194.5 283.5,-194.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="283.5,-192.5 283.5,-194.5 494.5,-194.5 494.5,-192.5 283.5,-192.5"/>
|
||||
<text text-anchor="start" x="291" y="-179.3" font-family="arial" font-size="14.00">X1:2:RX</text>
|
||||
<text text-anchor="start" x="355.5" y="-179.3" font-family="arial" font-size="14.00">     2:BN    </text>
|
||||
<text text-anchor="start" x="435" y="-179.3" font-family="arial" font-size="14.00">X2:3:TX</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="283.5,-171.5 283.5,-173.5 494.5,-173.5 494.5,-171.5 283.5,-171.5"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="283.5,-169.5 283.5,-171.5 494.5,-171.5 494.5,-169.5 283.5,-169.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="283.5,-167.5 283.5,-169.5 494.5,-169.5 494.5,-167.5 283.5,-167.5"/>
|
||||
<text text-anchor="start" x="292" y="-154.3" font-family="arial" font-size="14.00">X1:3:TX</text>
|
||||
<text text-anchor="start" x="355" y="-154.3" font-family="arial" font-size="14.00">     3:GN    </text>
|
||||
<text text-anchor="start" x="434" y="-154.3" font-family="arial" font-size="14.00">X2:2:RX</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="283.5,-146.5 283.5,-148.5 494.5,-148.5 494.5,-146.5 283.5,-146.5"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="283.5,-144.5 283.5,-146.5 494.5,-146.5 494.5,-144.5 283.5,-144.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="283.5,-142.5 283.5,-144.5 494.5,-144.5 494.5,-142.5 283.5,-142.5"/>
|
||||
<text text-anchor="start" x="315.5" y="-129.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="285.5" y="-110.3" font-family="arial" font-size="14.00">X1:5:GND</text>
|
||||
<text text-anchor="start" x="369.5" y="-110.3" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="283.5,-102.5 283.5,-104.5 494.5,-104.5 494.5,-102.5 283.5,-102.5"/>
|
||||
<text text-anchor="start" x="315.5" y="-89.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="486.5,-297 283.5,-297 283.5,-88 486.5,-88 486.5,-297"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-88 283.5,-297 486.5,-297 486.5,-88 283.5,-88"/>
|
||||
<polygon fill="none" stroke="black" points="283.5,-272.5 283.5,-297 486.5,-297 486.5,-272.5 283.5,-272.5"/>
|
||||
<text text-anchor="start" x="373.75" y="-279.7" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="283.5,-248 283.5,-272.5 315.88,-272.5 315.88,-248 283.5,-248"/>
|
||||
<text text-anchor="start" x="292.19" y="-255.2" font-family="arial" font-size="14.00">3x</text>
|
||||
<polygon fill="none" stroke="black" points="315.88,-248 315.88,-272.5 394,-272.5 394,-248 315.88,-248"/>
|
||||
<text text-anchor="start" x="324.56" y="-255.2" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="394,-248 394,-272.5 433.12,-272.5 433.12,-248 394,-248"/>
|
||||
<text text-anchor="start" x="402.69" y="-255.2" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="433.12,-248 433.12,-272.5 486.5,-272.5 486.5,-248 433.12,-248"/>
|
||||
<text text-anchor="start" x="441.81" y="-255.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="318.12" y="-232.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="285.5" y="-212.7" font-family="arial" font-size="14.00"> X1:5:GND</text>
|
||||
<text text-anchor="start" x="358.12" y="-212.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="367" y="-212.7" font-family="arial" font-size="14.00">1:WH</text>
|
||||
<text text-anchor="start" x="408.12" y="-212.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="415.5" y="-212.7" font-family="arial" font-size="14.00">X2:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-206 283.5,-208 486.5,-208 486.5,-206 283.5,-206"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-204 283.5,-206 486.5,-206 486.5,-204 283.5,-204"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-202 283.5,-204 486.5,-204 486.5,-202 283.5,-202"/>
|
||||
<text text-anchor="start" x="285.5" y="-186.7" font-family="arial" font-size="14.00"> X1:2:RX</text>
|
||||
<text text-anchor="start" x="358.12" y="-186.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="369.25" y="-186.7" font-family="arial" font-size="14.00">2:BN</text>
|
||||
<text text-anchor="start" x="408.12" y="-186.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="428.25" y="-186.7" font-family="arial" font-size="14.00">X2:3:TX </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-180 283.5,-182 486.5,-182 486.5,-180 283.5,-180"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-178 283.5,-180 486.5,-180 486.5,-178 283.5,-178"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-176 283.5,-178 486.5,-178 486.5,-176 283.5,-176"/>
|
||||
<text text-anchor="start" x="285.5" y="-160.7" font-family="arial" font-size="14.00"> X1:3:TX</text>
|
||||
<text text-anchor="start" x="358.12" y="-160.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="368.5" y="-160.7" font-family="arial" font-size="14.00">3:GN</text>
|
||||
<text text-anchor="start" x="408.12" y="-160.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="426.75" y="-160.7" font-family="arial" font-size="14.00">X2:2:RX </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-154 283.5,-156 486.5,-156 486.5,-154 283.5,-154"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-152 283.5,-154 486.5,-154 486.5,-152 283.5,-152"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-150 283.5,-152 486.5,-152 486.5,-150 283.5,-150"/>
|
||||
<text text-anchor="start" x="318.12" y="-134.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="285.5" y="-114.7" font-family="arial" font-size="14.00"> X1:5:GND</text>
|
||||
<text text-anchor="start" x="358.12" y="-114.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="365.12" y="-114.7" font-family="arial" font-size="14.00">Shield</text>
|
||||
<text text-anchor="start" x="408.12" y="-114.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="480.75" y="-114.7" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-108 283.5,-110 486.5,-110 486.5,-108 283.5,-108"/>
|
||||
<text text-anchor="start" x="318.12" y="-92.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139,-100.5C217.18,-102.68 208.81,-195.68 283,-193.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M139,-102.5C215.19,-102.5 206.81,-195.5 283,-195.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139,-104.5C213.19,-102.32 204.82,-195.32 283,-197.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-106C218.66,-108.21 208.32,-205.21 283.5,-203"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M139.5,-108C216.67,-108 206.33,-205 283.5,-205"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-110C214.68,-107.79 204.34,-204.79 283.5,-207"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-178C203.38,-178.01 219.38,-177.01 283.5,-177"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M139.5,-180C203.5,-180 219.5,-179 283.5,-179"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-182C203.62,-182 219.62,-181 283.5,-181"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139,-170.5C202.76,-170.52 218.75,-168.52 283,-168.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M139,-172.5C203.01,-172.5 218.99,-170.5 283,-170.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139,-174.5C203.25,-174.48 219.24,-172.48 283,-172.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-154C203.14,-154.04 219.12,-151.04 283.5,-151"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M139.5,-156C203.51,-156 219.49,-153 283.5,-153"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-158C203.88,-157.97 219.86,-154.97 283.5,-155"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-108C203.5,-108 219.5,-109 283.5,-109"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139,-147.5C202.54,-147.56 218.49,-143.56 283,-143.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M139,-149.5C203.02,-149.5 218.98,-145.5 283,-145.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139,-151.5C203.51,-151.44 219.46,-147.44 283,-147.5"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-207C418.83,-207 351.17,-207 283.5,-207"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M486.5,-205C418.83,-205 351.17,-205 283.5,-205"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-203C418.83,-203 351.17,-203 283.5,-203"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-181C418.83,-181 351.17,-181 283.5,-181"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M486.5,-179C418.83,-179 351.17,-179 283.5,-179"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-177C418.83,-177 351.17,-177 283.5,-177"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139,-102.5C203,-102.5 219,-103.5 283,-103.5"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-155C418.83,-155 351.17,-155 283.5,-155"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M486.5,-153C418.83,-153 351.17,-153 283.5,-153"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-151C418.83,-151 351.17,-151 283.5,-151"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-109C418.83,-109 351.17,-109 283.5,-109"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="825,-254 638,-254 638,-139 825,-139 825,-254"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="638,-139 638,-254 825,-254 825,-139 638,-139"/>
|
||||
<polygon fill="none" stroke="black" points="638.5,-230.5 638.5,-253.5 825.5,-253.5 825.5,-230.5 638.5,-230.5"/>
|
||||
<text text-anchor="start" x="723" y="-238.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="638.5,-207.5 638.5,-230.5 734.5,-230.5 734.5,-207.5 638.5,-207.5"/>
|
||||
<text text-anchor="start" x="642.5" y="-215.3" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="734.5,-207.5 734.5,-230.5 785.5,-230.5 785.5,-207.5 734.5,-207.5"/>
|
||||
<text text-anchor="start" x="738.5" y="-215.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="785.5,-207.5 785.5,-230.5 825.5,-230.5 825.5,-207.5 785.5,-207.5"/>
|
||||
<text text-anchor="start" x="789.5" y="-215.3" font-family="arial" font-size="14.00">3-pin</text>
|
||||
<polygon fill="none" stroke="black" points="638.5,-184.5 638.5,-207.5 720.5,-207.5 720.5,-184.5 638.5,-184.5"/>
|
||||
<text text-anchor="start" x="675.5" y="-192.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="720.5,-184.5 720.5,-207.5 825.5,-207.5 825.5,-184.5 720.5,-184.5"/>
|
||||
<text text-anchor="start" x="757" y="-192.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="638.5,-161.5 638.5,-184.5 720.5,-184.5 720.5,-161.5 638.5,-161.5"/>
|
||||
<text text-anchor="start" x="675.5" y="-169.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="720.5,-161.5 720.5,-184.5 825.5,-184.5 825.5,-161.5 720.5,-161.5"/>
|
||||
<text text-anchor="start" x="763" y="-169.3" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="638.5,-138.5 638.5,-161.5 720.5,-161.5 720.5,-138.5 638.5,-138.5"/>
|
||||
<text text-anchor="start" x="675.5" y="-146.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="720.5,-138.5 720.5,-161.5 825.5,-161.5 825.5,-138.5 720.5,-138.5"/>
|
||||
<text text-anchor="start" x="764" y="-146.3" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="818.75,-269 630.49,-269 630.49,-148 818.75,-148 818.75,-269"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="630.5,-148 630.5,-269 818.75,-269 818.75,-148 630.5,-148"/>
|
||||
<polygon fill="none" stroke="black" points="630.5,-244.5 630.5,-269 818.75,-269 818.75,-244.5 630.5,-244.5"/>
|
||||
<text text-anchor="start" x="715.62" y="-251.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="630.5,-220 630.5,-244.5 727.75,-244.5 727.75,-220 630.5,-220"/>
|
||||
<text text-anchor="start" x="634.5" y="-227.2" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="727.75,-220 727.75,-244.5 779.25,-244.5 779.25,-220 727.75,-220"/>
|
||||
<text text-anchor="start" x="731.75" y="-227.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="779.25,-220 779.25,-244.5 818.75,-244.5 818.75,-220 779.25,-220"/>
|
||||
<text text-anchor="start" x="783.25" y="-227.2" font-family="arial" font-size="14.00">3-pin</text>
|
||||
<polygon fill="none" stroke="black" points="630.5,-196 630.5,-220 713.12,-220 713.12,-196 630.5,-196"/>
|
||||
<text text-anchor="start" x="667.68" y="-202.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="713.12,-196 713.12,-220 818.75,-220 818.75,-196 713.12,-196"/>
|
||||
<text text-anchor="start" x="750.18" y="-202.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="630.5,-172 630.5,-196 713.12,-196 713.12,-172 630.5,-172"/>
|
||||
<text text-anchor="start" x="667.68" y="-178.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="713.12,-172 713.12,-196 818.75,-196 818.75,-172 713.12,-172"/>
|
||||
<text text-anchor="start" x="755.81" y="-178.7" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="630.5,-148 630.5,-172 713.12,-172 713.12,-148 630.5,-148"/>
|
||||
<text text-anchor="start" x="667.68" y="-154.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="713.12,-148 713.12,-172 818.75,-172 818.75,-148 713.12,-148"/>
|
||||
<text text-anchor="start" x="756.56" y="-154.7" font-family="arial" font-size="14.00">TX</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge3" class="edge">
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-193.5C558,-193.5 574,-193.5 638,-193.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M494,-195.5C558,-195.5 574,-195.5 638,-195.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-197.5C558,-197.5 574,-197.5 638,-197.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-203C550.88,-203.04 566.86,-206.04 630.5,-206"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M486.5,-205C550.51,-205 566.49,-208 630.5,-208"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-207C550.14,-206.97 566.12,-209.97 630.5,-210"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge5" class="edge">
|
||||
<g id="edge11" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-168.5C557.04,-169.36 571.68,-148.36 638,-147.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M494,-170.5C558.68,-170.5 573.32,-149.5 638,-149.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-172.5C560.32,-171.64 574.96,-150.64 638,-151.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-177C549.48,-177.77 564.38,-158.77 630.5,-158"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M486.5,-179C551.05,-179 565.95,-160 630.5,-160"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-181C552.62,-180.24 567.52,-161.24 630.5,-162"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge7" class="edge">
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-143.5C560.9,-144.59 574.67,-171.59 638,-170.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M494,-145.5C559.12,-145.5 572.88,-172.5 638,-172.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-147.5C557.33,-146.41 571.1,-173.41 638,-174.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-151C553.81,-152.23 566.87,-183.23 630.5,-182"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M486.5,-153C551.97,-153 565.03,-184 630.5,-184"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-155C550.13,-153.78 563.19,-184.78 630.5,-186"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
@ -220,33 +254,33 @@
|
||||
<div id="bom">
|
||||
<table class="bom">
|
||||
<tr>
|
||||
<th class="bom_col_id">Id</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_#">#</th>
|
||||
<th class="bom_col_qty">Qty</th>
|
||||
<th class="bom_col_unit">Unit</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_designators">Designators</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">1</td>
|
||||
<td class="bom_col_description">Cable, 3 x 0.25 mm² shielded</td>
|
||||
<td class="bom_col_qty">0.2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">2</td>
|
||||
<td class="bom_col_description">Connector, D-Sub, female, 9 pins</td>
|
||||
<td class="bom_col_#">1</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, D-Sub, female, 9 pins</td>
|
||||
<td class="bom_col_designators">X1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">3</td>
|
||||
<td class="bom_col_description">Connector, Molex KK 254, female, 3 pins</td>
|
||||
<td class="bom_col_#">2</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, Molex KK 254, female, 3 pins</td>
|
||||
<td class="bom_col_designators">X2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_#">3</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Cable, 3 x 0.25 mm² shielded</td>
|
||||
<td class="bom_col_designators">W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
BIN
examples/demo01.png
generated
|
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 45 KiB |
310
examples/demo01.svg
generated
@ -1,181 +1,215 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="833pt" height="291pt"
|
||||
viewBox="0.00 0.00 833.00 291.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 287)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-287 829,-287 829,4 -4,4"/>
|
||||
<svg width="827pt" height="305pt"
|
||||
viewBox="0.00 0.00 826.75 305.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 301)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-301 822.75,-301 822.75,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="139,-253 0,-253 0,0 139,0 139,-253"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="0,0 0,-253 139,-253 139,0 0,0"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-229.5 0.5,-252.5 139.5,-252.5 139.5,-229.5 0.5,-229.5"/>
|
||||
<text text-anchor="start" x="61" y="-237.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-206.5 0.5,-229.5 48.5,-229.5 48.5,-206.5 0.5,-206.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-214.3" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="48.5,-206.5 48.5,-229.5 99.5,-229.5 99.5,-206.5 48.5,-206.5"/>
|
||||
<text text-anchor="start" x="52.5" y="-214.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="99.5,-206.5 99.5,-229.5 139.5,-229.5 139.5,-206.5 99.5,-206.5"/>
|
||||
<text text-anchor="start" x="103.5" y="-214.3" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-183.5 0.5,-206.5 82.5,-206.5 82.5,-183.5 0.5,-183.5"/>
|
||||
<text text-anchor="start" x="26" y="-191.3" font-family="arial" font-size="14.00">DCD</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,-183.5 82.5,-206.5 139.5,-206.5 139.5,-183.5 82.5,-183.5"/>
|
||||
<text text-anchor="start" x="107" y="-191.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-160.5 0.5,-183.5 82.5,-183.5 82.5,-160.5 0.5,-160.5"/>
|
||||
<text text-anchor="start" x="31.5" y="-168.3" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,-160.5 82.5,-183.5 139.5,-183.5 139.5,-160.5 82.5,-160.5"/>
|
||||
<text text-anchor="start" x="107" y="-168.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-137.5 0.5,-160.5 82.5,-160.5 82.5,-137.5 0.5,-137.5"/>
|
||||
<text text-anchor="start" x="32.5" y="-145.3" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,-137.5 82.5,-160.5 139.5,-160.5 139.5,-137.5 82.5,-137.5"/>
|
||||
<text text-anchor="start" x="107" y="-145.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-114.5 0.5,-137.5 82.5,-137.5 82.5,-114.5 0.5,-114.5"/>
|
||||
<text text-anchor="start" x="27" y="-122.3" font-family="arial" font-size="14.00">DTR</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,-114.5 82.5,-137.5 139.5,-137.5 139.5,-114.5 82.5,-114.5"/>
|
||||
<text text-anchor="start" x="107" y="-122.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-91.5 0.5,-114.5 82.5,-114.5 82.5,-91.5 0.5,-91.5"/>
|
||||
<text text-anchor="start" x="25.5" y="-99.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,-91.5 82.5,-114.5 139.5,-114.5 139.5,-91.5 82.5,-91.5"/>
|
||||
<text text-anchor="start" x="107" y="-99.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-68.5 0.5,-91.5 82.5,-91.5 82.5,-68.5 0.5,-68.5"/>
|
||||
<text text-anchor="start" x="26.5" y="-76.3" font-family="arial" font-size="14.00">DSR</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,-68.5 82.5,-91.5 139.5,-91.5 139.5,-68.5 82.5,-68.5"/>
|
||||
<text text-anchor="start" x="107" y="-76.3" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-45.5 0.5,-68.5 82.5,-68.5 82.5,-45.5 0.5,-45.5"/>
|
||||
<text text-anchor="start" x="27.5" y="-53.3" font-family="arial" font-size="14.00">RTS</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,-45.5 82.5,-68.5 139.5,-68.5 139.5,-45.5 82.5,-45.5"/>
|
||||
<text text-anchor="start" x="107" y="-53.3" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-22.5 0.5,-45.5 82.5,-45.5 82.5,-22.5 0.5,-22.5"/>
|
||||
<text text-anchor="start" x="27.5" y="-30.3" font-family="arial" font-size="14.00">CTS</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,-22.5 82.5,-45.5 139.5,-45.5 139.5,-22.5 82.5,-22.5"/>
|
||||
<text text-anchor="start" x="107" y="-30.3" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,0.5 0.5,-22.5 82.5,-22.5 82.5,0.5 0.5,0.5"/>
|
||||
<text text-anchor="start" x="34.5" y="-7.3" font-family="arial" font-size="14.00">RI</text>
|
||||
<polygon fill="none" stroke="black" points="82.5,0.5 82.5,-22.5 139.5,-22.5 139.5,0.5 82.5,0.5"/>
|
||||
<text text-anchor="start" x="107" y="-7.3" font-family="arial" font-size="14.00">9</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="139.5,-265 0,-265 0,0 139.5,0 139.5,-265"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,0 0,-265 139.5,-265 139.5,0 0,0"/>
|
||||
<polygon fill="none" stroke="black" points="0,-240.5 0,-265 139.5,-265 139.5,-240.5 0,-240.5"/>
|
||||
<text text-anchor="start" x="60.75" y="-247.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-216 0,-240.5 48.5,-240.5 48.5,-216 0,-216"/>
|
||||
<text text-anchor="start" x="4" y="-223.2" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="48.5,-216 48.5,-240.5 100,-240.5 100,-216 48.5,-216"/>
|
||||
<text text-anchor="start" x="52.5" y="-223.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="100,-216 100,-240.5 139.5,-240.5 139.5,-216 100,-216"/>
|
||||
<text text-anchor="start" x="104" y="-223.2" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-192 0,-216 81.25,-216 81.25,-192 0,-192"/>
|
||||
<text text-anchor="start" x="24.88" y="-198.7" font-family="arial" font-size="14.00">DCD</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,-192 81.25,-216 139.5,-216 139.5,-192 81.25,-192"/>
|
||||
<text text-anchor="start" x="106.25" y="-198.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-168 0,-192 81.25,-192 81.25,-168 0,-168"/>
|
||||
<text text-anchor="start" x="30.5" y="-174.7" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,-168 81.25,-192 139.5,-192 139.5,-168 81.25,-168"/>
|
||||
<text text-anchor="start" x="106.25" y="-174.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-144 0,-168 81.25,-168 81.25,-144 0,-144"/>
|
||||
<text text-anchor="start" x="31.25" y="-150.7" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,-144 81.25,-168 139.5,-168 139.5,-144 81.25,-144"/>
|
||||
<text text-anchor="start" x="106.25" y="-150.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-120 0,-144 81.25,-144 81.25,-120 0,-120"/>
|
||||
<text text-anchor="start" x="25.62" y="-126.7" font-family="arial" font-size="14.00">DTR</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,-120 81.25,-144 139.5,-144 139.5,-120 81.25,-120"/>
|
||||
<text text-anchor="start" x="106.25" y="-126.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0,-96 0,-120 81.25,-120 81.25,-96 0,-96"/>
|
||||
<text text-anchor="start" x="24.88" y="-102.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,-96 81.25,-120 139.5,-120 139.5,-96 81.25,-96"/>
|
||||
<text text-anchor="start" x="106.25" y="-102.7" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-72 0,-96 81.25,-96 81.25,-72 0,-72"/>
|
||||
<text text-anchor="start" x="25.25" y="-78.7" font-family="arial" font-size="14.00">DSR</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,-72 81.25,-96 139.5,-96 139.5,-72 81.25,-72"/>
|
||||
<text text-anchor="start" x="106.25" y="-78.7" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0,-48 0,-72 81.25,-72 81.25,-48 0,-48"/>
|
||||
<text text-anchor="start" x="26" y="-54.7" font-family="arial" font-size="14.00">RTS</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,-48 81.25,-72 139.5,-72 139.5,-48 81.25,-48"/>
|
||||
<text text-anchor="start" x="106.25" y="-54.7" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0,-24 0,-48 81.25,-48 81.25,-24 0,-24"/>
|
||||
<text text-anchor="start" x="26" y="-30.7" font-family="arial" font-size="14.00">CTS</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,-24 81.25,-48 139.5,-48 139.5,-24 81.25,-24"/>
|
||||
<text text-anchor="start" x="106.25" y="-30.7" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="0,0 0,-24 81.25,-24 81.25,0 0,0"/>
|
||||
<text text-anchor="start" x="33.12" y="-6.7" font-family="arial" font-size="14.00">RI</text>
|
||||
<polygon fill="none" stroke="black" points="81.25,0 81.25,-24 139.5,-24 139.5,0 81.25,0"/>
|
||||
<text text-anchor="start" x="106.25" y="-6.7" font-family="arial" font-size="14.00">9</text>
|
||||
</g>
|
||||
<!-- X1--X1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--X1:e</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.95,-54.55C192,-66.5 298,-66.5 296,-45 298,-23.5 192,-23.5 139.95,-35.45"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M139.5,-56.5C192,-68.5 298,-68.5 298,-45 298,-21.5 192,-21.5 139.5,-33.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.05,-58.45C192,-70.5 298,-70.5 300,-45 298,-19.5 192,-19.5 139.05,-31.55"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-60C163.12,-72 210.38,-72 210.38,-48 210.38,-24 163.12,-24 139.5,-36"/>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="494,-283 283,-283 283,-84 494,-84 494,-283"/>
|
||||
<polygon fill="none" stroke="black" points="283.5,-259.5 283.5,-282.5 494.5,-282.5 494.5,-259.5 283.5,-259.5"/>
|
||||
<text text-anchor="start" x="378.5" y="-267.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="283.5,-236.5 283.5,-259.5 318.5,-259.5 318.5,-236.5 283.5,-236.5"/>
|
||||
<text text-anchor="start" x="293.5" y="-244.3" font-family="arial" font-size="14.00">3x</text>
|
||||
<polygon fill="none" stroke="black" points="318.5,-236.5 318.5,-259.5 398.5,-259.5 398.5,-236.5 318.5,-236.5"/>
|
||||
<text text-anchor="start" x="328.5" y="-244.3" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="398.5,-236.5 398.5,-259.5 439.5,-259.5 439.5,-236.5 398.5,-236.5"/>
|
||||
<text text-anchor="start" x="408" y="-244.3" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="439.5,-236.5 439.5,-259.5 494.5,-259.5 494.5,-236.5 439.5,-236.5"/>
|
||||
<text text-anchor="start" x="449" y="-244.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="315.5" y="-223.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="285.5" y="-204.3" font-family="arial" font-size="14.00">X1:5:GND</text>
|
||||
<text text-anchor="start" x="353.5" y="-204.3" font-family="arial" font-size="14.00">     1:WH    </text>
|
||||
<text text-anchor="start" x="428.5" y="-204.3" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="283.5,-196.5 283.5,-198.5 494.5,-198.5 494.5,-196.5 283.5,-196.5"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="283.5,-194.5 283.5,-196.5 494.5,-196.5 494.5,-194.5 283.5,-194.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="283.5,-192.5 283.5,-194.5 494.5,-194.5 494.5,-192.5 283.5,-192.5"/>
|
||||
<text text-anchor="start" x="291" y="-179.3" font-family="arial" font-size="14.00">X1:2:RX</text>
|
||||
<text text-anchor="start" x="355.5" y="-179.3" font-family="arial" font-size="14.00">     2:BN    </text>
|
||||
<text text-anchor="start" x="435" y="-179.3" font-family="arial" font-size="14.00">X2:3:TX</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="283.5,-171.5 283.5,-173.5 494.5,-173.5 494.5,-171.5 283.5,-171.5"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="283.5,-169.5 283.5,-171.5 494.5,-171.5 494.5,-169.5 283.5,-169.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="283.5,-167.5 283.5,-169.5 494.5,-169.5 494.5,-167.5 283.5,-167.5"/>
|
||||
<text text-anchor="start" x="292" y="-154.3" font-family="arial" font-size="14.00">X1:3:TX</text>
|
||||
<text text-anchor="start" x="355" y="-154.3" font-family="arial" font-size="14.00">     3:GN    </text>
|
||||
<text text-anchor="start" x="434" y="-154.3" font-family="arial" font-size="14.00">X2:2:RX</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="283.5,-146.5 283.5,-148.5 494.5,-148.5 494.5,-146.5 283.5,-146.5"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="283.5,-144.5 283.5,-146.5 494.5,-146.5 494.5,-144.5 283.5,-144.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="283.5,-142.5 283.5,-144.5 494.5,-144.5 494.5,-142.5 283.5,-142.5"/>
|
||||
<text text-anchor="start" x="315.5" y="-129.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="285.5" y="-110.3" font-family="arial" font-size="14.00">X1:5:GND</text>
|
||||
<text text-anchor="start" x="369.5" y="-110.3" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="283.5,-102.5 283.5,-104.5 494.5,-104.5 494.5,-102.5 283.5,-102.5"/>
|
||||
<text text-anchor="start" x="315.5" y="-89.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="486.5,-297 283.5,-297 283.5,-88 486.5,-88 486.5,-297"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-88 283.5,-297 486.5,-297 486.5,-88 283.5,-88"/>
|
||||
<polygon fill="none" stroke="black" points="283.5,-272.5 283.5,-297 486.5,-297 486.5,-272.5 283.5,-272.5"/>
|
||||
<text text-anchor="start" x="373.75" y="-279.7" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="283.5,-248 283.5,-272.5 315.88,-272.5 315.88,-248 283.5,-248"/>
|
||||
<text text-anchor="start" x="292.19" y="-255.2" font-family="arial" font-size="14.00">3x</text>
|
||||
<polygon fill="none" stroke="black" points="315.88,-248 315.88,-272.5 394,-272.5 394,-248 315.88,-248"/>
|
||||
<text text-anchor="start" x="324.56" y="-255.2" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="394,-248 394,-272.5 433.12,-272.5 433.12,-248 394,-248"/>
|
||||
<text text-anchor="start" x="402.69" y="-255.2" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="433.12,-248 433.12,-272.5 486.5,-272.5 486.5,-248 433.12,-248"/>
|
||||
<text text-anchor="start" x="441.81" y="-255.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="318.12" y="-232.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="285.5" y="-212.7" font-family="arial" font-size="14.00"> X1:5:GND</text>
|
||||
<text text-anchor="start" x="358.12" y="-212.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="367" y="-212.7" font-family="arial" font-size="14.00">1:WH</text>
|
||||
<text text-anchor="start" x="408.12" y="-212.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="415.5" y="-212.7" font-family="arial" font-size="14.00">X2:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-206 283.5,-208 486.5,-208 486.5,-206 283.5,-206"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-204 283.5,-206 486.5,-206 486.5,-204 283.5,-204"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-202 283.5,-204 486.5,-204 486.5,-202 283.5,-202"/>
|
||||
<text text-anchor="start" x="285.5" y="-186.7" font-family="arial" font-size="14.00"> X1:2:RX</text>
|
||||
<text text-anchor="start" x="358.12" y="-186.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="369.25" y="-186.7" font-family="arial" font-size="14.00">2:BN</text>
|
||||
<text text-anchor="start" x="408.12" y="-186.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="428.25" y="-186.7" font-family="arial" font-size="14.00">X2:3:TX </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-180 283.5,-182 486.5,-182 486.5,-180 283.5,-180"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-178 283.5,-180 486.5,-180 486.5,-178 283.5,-178"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-176 283.5,-178 486.5,-178 486.5,-176 283.5,-176"/>
|
||||
<text text-anchor="start" x="285.5" y="-160.7" font-family="arial" font-size="14.00"> X1:3:TX</text>
|
||||
<text text-anchor="start" x="358.12" y="-160.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="368.5" y="-160.7" font-family="arial" font-size="14.00">3:GN</text>
|
||||
<text text-anchor="start" x="408.12" y="-160.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="426.75" y="-160.7" font-family="arial" font-size="14.00">X2:2:RX </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-154 283.5,-156 486.5,-156 486.5,-154 283.5,-154"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-152 283.5,-154 486.5,-154 486.5,-152 283.5,-152"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-150 283.5,-152 486.5,-152 486.5,-150 283.5,-150"/>
|
||||
<text text-anchor="start" x="318.12" y="-134.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="285.5" y="-114.7" font-family="arial" font-size="14.00"> X1:5:GND</text>
|
||||
<text text-anchor="start" x="358.12" y="-114.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="365.12" y="-114.7" font-family="arial" font-size="14.00">Shield</text>
|
||||
<text text-anchor="start" x="408.12" y="-114.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="480.75" y="-114.7" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-108 283.5,-110 486.5,-110 486.5,-108 283.5,-108"/>
|
||||
<text text-anchor="start" x="318.12" y="-92.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139,-100.5C217.18,-102.68 208.81,-195.68 283,-193.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M139,-102.5C215.19,-102.5 206.81,-195.5 283,-195.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139,-104.5C213.19,-102.32 204.82,-195.32 283,-197.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-106C218.66,-108.21 208.32,-205.21 283.5,-203"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M139.5,-108C216.67,-108 206.33,-205 283.5,-205"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-110C214.68,-107.79 204.34,-204.79 283.5,-207"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-178C203.38,-178.01 219.38,-177.01 283.5,-177"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M139.5,-180C203.5,-180 219.5,-179 283.5,-179"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-182C203.62,-182 219.62,-181 283.5,-181"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139,-170.5C202.76,-170.52 218.75,-168.52 283,-168.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M139,-172.5C203.01,-172.5 218.99,-170.5 283,-170.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139,-174.5C203.25,-174.48 219.24,-172.48 283,-172.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-154C203.14,-154.04 219.12,-151.04 283.5,-151"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M139.5,-156C203.51,-156 219.49,-153 283.5,-153"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-158C203.88,-157.97 219.86,-154.97 283.5,-155"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-108C203.5,-108 219.5,-109 283.5,-109"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139,-147.5C202.54,-147.56 218.49,-143.56 283,-143.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M139,-149.5C203.02,-149.5 218.98,-145.5 283,-145.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139,-151.5C203.51,-151.44 219.46,-147.44 283,-147.5"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-207C418.83,-207 351.17,-207 283.5,-207"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M486.5,-205C418.83,-205 351.17,-205 283.5,-205"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-203C418.83,-203 351.17,-203 283.5,-203"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-181C418.83,-181 351.17,-181 283.5,-181"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M486.5,-179C418.83,-179 351.17,-179 283.5,-179"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-177C418.83,-177 351.17,-177 283.5,-177"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139,-102.5C203,-102.5 219,-103.5 283,-103.5"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-155C418.83,-155 351.17,-155 283.5,-155"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M486.5,-153C418.83,-153 351.17,-153 283.5,-153"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-151C418.83,-151 351.17,-151 283.5,-151"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-109C418.83,-109 351.17,-109 283.5,-109"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="825,-254 638,-254 638,-139 825,-139 825,-254"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="638,-139 638,-254 825,-254 825,-139 638,-139"/>
|
||||
<polygon fill="none" stroke="black" points="638.5,-230.5 638.5,-253.5 825.5,-253.5 825.5,-230.5 638.5,-230.5"/>
|
||||
<text text-anchor="start" x="723" y="-238.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="638.5,-207.5 638.5,-230.5 734.5,-230.5 734.5,-207.5 638.5,-207.5"/>
|
||||
<text text-anchor="start" x="642.5" y="-215.3" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="734.5,-207.5 734.5,-230.5 785.5,-230.5 785.5,-207.5 734.5,-207.5"/>
|
||||
<text text-anchor="start" x="738.5" y="-215.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="785.5,-207.5 785.5,-230.5 825.5,-230.5 825.5,-207.5 785.5,-207.5"/>
|
||||
<text text-anchor="start" x="789.5" y="-215.3" font-family="arial" font-size="14.00">3-pin</text>
|
||||
<polygon fill="none" stroke="black" points="638.5,-184.5 638.5,-207.5 720.5,-207.5 720.5,-184.5 638.5,-184.5"/>
|
||||
<text text-anchor="start" x="675.5" y="-192.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="720.5,-184.5 720.5,-207.5 825.5,-207.5 825.5,-184.5 720.5,-184.5"/>
|
||||
<text text-anchor="start" x="757" y="-192.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="638.5,-161.5 638.5,-184.5 720.5,-184.5 720.5,-161.5 638.5,-161.5"/>
|
||||
<text text-anchor="start" x="675.5" y="-169.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="720.5,-161.5 720.5,-184.5 825.5,-184.5 825.5,-161.5 720.5,-161.5"/>
|
||||
<text text-anchor="start" x="763" y="-169.3" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="638.5,-138.5 638.5,-161.5 720.5,-161.5 720.5,-138.5 638.5,-138.5"/>
|
||||
<text text-anchor="start" x="675.5" y="-146.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="720.5,-138.5 720.5,-161.5 825.5,-161.5 825.5,-138.5 720.5,-138.5"/>
|
||||
<text text-anchor="start" x="764" y="-146.3" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="818.75,-269 630.49,-269 630.49,-148 818.75,-148 818.75,-269"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="630.5,-148 630.5,-269 818.75,-269 818.75,-148 630.5,-148"/>
|
||||
<polygon fill="none" stroke="black" points="630.5,-244.5 630.5,-269 818.75,-269 818.75,-244.5 630.5,-244.5"/>
|
||||
<text text-anchor="start" x="715.62" y="-251.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="630.5,-220 630.5,-244.5 727.75,-244.5 727.75,-220 630.5,-220"/>
|
||||
<text text-anchor="start" x="634.5" y="-227.2" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="727.75,-220 727.75,-244.5 779.25,-244.5 779.25,-220 727.75,-220"/>
|
||||
<text text-anchor="start" x="731.75" y="-227.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="779.25,-220 779.25,-244.5 818.75,-244.5 818.75,-220 779.25,-220"/>
|
||||
<text text-anchor="start" x="783.25" y="-227.2" font-family="arial" font-size="14.00">3-pin</text>
|
||||
<polygon fill="none" stroke="black" points="630.5,-196 630.5,-220 713.12,-220 713.12,-196 630.5,-196"/>
|
||||
<text text-anchor="start" x="667.68" y="-202.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="713.12,-196 713.12,-220 818.75,-220 818.75,-196 713.12,-196"/>
|
||||
<text text-anchor="start" x="750.18" y="-202.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="630.5,-172 630.5,-196 713.12,-196 713.12,-172 630.5,-172"/>
|
||||
<text text-anchor="start" x="667.68" y="-178.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="713.12,-172 713.12,-196 818.75,-196 818.75,-172 713.12,-172"/>
|
||||
<text text-anchor="start" x="755.81" y="-178.7" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="630.5,-148 630.5,-172 713.12,-172 713.12,-148 630.5,-148"/>
|
||||
<text text-anchor="start" x="667.68" y="-154.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="713.12,-148 713.12,-172 818.75,-172 818.75,-148 713.12,-148"/>
|
||||
<text text-anchor="start" x="756.56" y="-154.7" font-family="arial" font-size="14.00">TX</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge3" class="edge">
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-193.5C558,-193.5 574,-193.5 638,-193.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M494,-195.5C558,-195.5 574,-195.5 638,-195.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-197.5C558,-197.5 574,-197.5 638,-197.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-203C550.88,-203.04 566.86,-206.04 630.5,-206"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M486.5,-205C550.51,-205 566.49,-208 630.5,-208"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-207C550.14,-206.97 566.12,-209.97 630.5,-210"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge5" class="edge">
|
||||
<g id="edge11" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-168.5C557.04,-169.36 571.68,-148.36 638,-147.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M494,-170.5C558.68,-170.5 573.32,-149.5 638,-149.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-172.5C560.32,-171.64 574.96,-150.64 638,-151.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-177C549.48,-177.77 564.38,-158.77 630.5,-158"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M486.5,-179C551.05,-179 565.95,-160 630.5,-160"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-181C552.62,-180.24 567.52,-161.24 630.5,-162"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge7" class="edge">
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-143.5C560.9,-144.59 574.67,-171.59 638,-170.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M494,-145.5C559.12,-145.5 572.88,-172.5 638,-172.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-147.5C557.33,-146.41 571.1,-173.41 638,-174.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-151C553.81,-152.23 566.87,-183.23 630.5,-182"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M486.5,-153C551.97,-153 565.03,-184 630.5,-184"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M486.5,-155C550.13,-153.78 563.19,-184.78 630.5,-186"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 16 KiB |
4
examples/demo01.tsv
generated
Normal file
@ -0,0 +1,4 @@
|
||||
# Qty Unit Description Designators
|
||||
1 1 Connector, D-Sub, female, 9 pins X1
|
||||
2 1 Connector, Molex KK 254, female, 3 pins X2
|
||||
3 1 m Cable, 3 x 0.25 mm² shielded W1
|
||||
|
@ -7,7 +7,7 @@ connectors:
|
||||
subtype: female
|
||||
pinlabels: [DCD, RX, TX, DTR, GND, DSR, RTS, CTS, RI]
|
||||
loops:
|
||||
- [7,8]
|
||||
L1: [7,8]
|
||||
X2:
|
||||
type: Molex KK 254
|
||||
subtype: female
|
||||
|
||||
64
examples/demo01_wv_gvpr.gvpr
Normal file
@ -0,0 +1,64 @@
|
||||
/*******************************************************************
|
||||
|
||||
see https://forum.graphviz.org/t/straitening-one-line-throu-a-table/2196 and https://forum.graphviz.org/t/way-of-drawing-a-black-circle-inside-a-table-field/2273/12
|
||||
input must include pos values (must be output from one of the engines w/ -Tdot)#
|
||||
Thanks to steveroush and FeRDNYC
|
||||
|
||||
*******************************************************************/
|
||||
BEG_G{
|
||||
double x1,y1,x2,y2,x3,y3,x4,y4;
|
||||
string ptSize, tok[int], pt[];
|
||||
int cnt, circ, i;
|
||||
node_t aNode;
|
||||
|
||||
circ=0;
|
||||
|
||||
/***************************************
|
||||
$G.bb="";
|
||||
$G.nodesep="";
|
||||
$G.ranksep="";
|
||||
$G.splines="true";
|
||||
****************************************/
|
||||
}
|
||||
|
||||
// This removes the label text but keeps the position
|
||||
E[noLabel] {
|
||||
$.label=""; // remove pesky label
|
||||
// $.lp=""; // remove peskier label pos
|
||||
}
|
||||
|
||||
E[straight] {
|
||||
cnt=tokens($.pos,tok," ");
|
||||
$.oldpos=$.pos;
|
||||
x1 = xOf(tok[0]);
|
||||
y1 = yOf(tok[0]);
|
||||
x4 = xOf(tok[cnt-1]);
|
||||
y4 = yOf(tok[cnt-1]);
|
||||
x2 = x1 + (x4-x1)/3.;
|
||||
y2 = y1 + (y4-y1)/3.;
|
||||
x3 = x1 + 2.*(x4-x1)/3.;
|
||||
y3 = y1 + 2.*(y4-y1)/3.;
|
||||
pos=sprintf("%.3f,%.3f %.3f,%.3f %.3f,%.3f %.3f,%.3f", x1,y1, x2,y2, x3,y3, x4,y4);
|
||||
$.label=""; // remove pesky label
|
||||
$.lp=""; // remove peskier label pos
|
||||
|
||||
if (hasAttr($, "addPTS") && $.addPTS!="" && $.colorPTS!=""){
|
||||
// now we place point nodes at the edge ends
|
||||
pt[1] = tok[0];
|
||||
pt[2] = tok[cnt-1];
|
||||
ptSize=$.addPTS;
|
||||
for (pt[i]) {
|
||||
if (i==2 && pt[1]==pt[2])
|
||||
continue;
|
||||
aNode=node($G, "__CIRCLE__" + (string)++circ);
|
||||
aNode.pos=pt[i];
|
||||
aNode.shape="point";
|
||||
aNode.width=ptSize;
|
||||
aNode.height=ptSize;
|
||||
aNode.style="filled";
|
||||
aNode.fillcolor=$.colorPTS;
|
||||
aNode.color=$.colorPTS;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
1227
examples/demo02.gv
generated
1120
examples/demo02.html
generated
BIN
examples/demo02.png
generated
|
Before Width: | Height: | Size: 185 KiB After Width: | Height: | Size: 169 KiB |
1010
examples/demo02.svg
generated
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 47 KiB |
13
examples/demo02.tsv
generated
Normal file
@ -0,0 +1,13 @@
|
||||
# Qty Unit Description Designators
|
||||
1 2 Connector, Crimp ferrule, 0.25 mm², YE
|
||||
2 2 Connector, Molex KK 254, female, 4 pins X2, X3
|
||||
3 1 Connector, Molex KK 254, female, 5 pins X4
|
||||
4 1 Connector, Molex KK 254, female, 8 pins X1
|
||||
5 1 m Cable, 2 x 0.25 mm² W4
|
||||
6 3 m Wire, 0.14 mm², BK W1, W2, W3
|
||||
7 1 m Wire, 0.14 mm², BU W3
|
||||
8 2 m Wire, 0.14 mm², GN W1, W2
|
||||
9 1 m Wire, 0.14 mm², OG W3
|
||||
10 2 m Wire, 0.14 mm², RD W1, W2
|
||||
11 1 m Wire, 0.14 mm², VT W3
|
||||
12 2 m Wire, 0.14 mm², YE W1, W2
|
||||
|
64
examples/demo02_wv_gvpr.gvpr
Normal file
@ -0,0 +1,64 @@
|
||||
/*******************************************************************
|
||||
|
||||
see https://forum.graphviz.org/t/straitening-one-line-throu-a-table/2196 and https://forum.graphviz.org/t/way-of-drawing-a-black-circle-inside-a-table-field/2273/12
|
||||
input must include pos values (must be output from one of the engines w/ -Tdot)#
|
||||
Thanks to steveroush and FeRDNYC
|
||||
|
||||
*******************************************************************/
|
||||
BEG_G{
|
||||
double x1,y1,x2,y2,x3,y3,x4,y4;
|
||||
string ptSize, tok[int], pt[];
|
||||
int cnt, circ, i;
|
||||
node_t aNode;
|
||||
|
||||
circ=0;
|
||||
|
||||
/***************************************
|
||||
$G.bb="";
|
||||
$G.nodesep="";
|
||||
$G.ranksep="";
|
||||
$G.splines="true";
|
||||
****************************************/
|
||||
}
|
||||
|
||||
// This removes the label text but keeps the position
|
||||
E[noLabel] {
|
||||
$.label=""; // remove pesky label
|
||||
// $.lp=""; // remove peskier label pos
|
||||
}
|
||||
|
||||
E[straight] {
|
||||
cnt=tokens($.pos,tok," ");
|
||||
$.oldpos=$.pos;
|
||||
x1 = xOf(tok[0]);
|
||||
y1 = yOf(tok[0]);
|
||||
x4 = xOf(tok[cnt-1]);
|
||||
y4 = yOf(tok[cnt-1]);
|
||||
x2 = x1 + (x4-x1)/3.;
|
||||
y2 = y1 + (y4-y1)/3.;
|
||||
x3 = x1 + 2.*(x4-x1)/3.;
|
||||
y3 = y1 + 2.*(y4-y1)/3.;
|
||||
pos=sprintf("%.3f,%.3f %.3f,%.3f %.3f,%.3f %.3f,%.3f", x1,y1, x2,y2, x3,y3, x4,y4);
|
||||
$.label=""; // remove pesky label
|
||||
$.lp=""; // remove peskier label pos
|
||||
|
||||
if (hasAttr($, "addPTS") && $.addPTS!="" && $.colorPTS!=""){
|
||||
// now we place point nodes at the edge ends
|
||||
pt[1] = tok[0];
|
||||
pt[2] = tok[cnt-1];
|
||||
ptSize=$.addPTS;
|
||||
for (pt[i]) {
|
||||
if (i==2 && pt[1]==pt[2])
|
||||
continue;
|
||||
aNode=node($G, "__CIRCLE__" + (string)++circ);
|
||||
aNode.pos=pt[i];
|
||||
aNode.shape="point";
|
||||
aNode.width=ptSize;
|
||||
aNode.height=ptSize;
|
||||
aNode.style="filled";
|
||||
aNode.fillcolor=$.colorPTS;
|
||||
aNode.color=$.colorPTS;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
419
examples/ex01.gv
generated
@ -1,188 +1,271 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4-dev
|
||||
// Graph generated by WireViz 0.4-dev251
|
||||
// https://github.com/formatc1702/WireViz
|
||||
graph [bgcolor="#FFFFFF" fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor="#FFFFFF" fontname=arial height=0 margin=0 shape=none style=filled width=0]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Molex KK 254</td>
|
||||
<td balign="left">female</td>
|
||||
<td balign="left">4-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td>GND</td>
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>VCC</td>
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RX</td>
|
||||
<td port="p3r">3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>TX</td>
|
||||
<td port="p4r">4</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Molex KK 254</td>
|
||||
<td>female</td>
|
||||
<td>4-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>GND</td>
|
||||
[]
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>VCC</td>
|
||||
[]
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RX</td>
|
||||
[]
|
||||
<td port="p3r">3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>TX</td>
|
||||
[]
|
||||
<td port="p4r">4</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
X2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X2</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Molex KK 254</td>
|
||||
<td balign="left">female</td>
|
||||
<td balign="left">4-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p3l">3</td>
|
||||
<td>RX</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p4l">4</td>
|
||||
<td>TX</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Molex KK 254</td>
|
||||
<td>female</td>
|
||||
<td>4-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p3l">3</td>
|
||||
<td>RX</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p4l">4</td>
|
||||
<td>TX</td>
|
||||
[]
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Serial</td>
|
||||
<td>4x</td>
|
||||
<td>0.25 mm² (24 AWG)</td>
|
||||
<td>+ S</td>
|
||||
<td>0.2 m</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:1:GND</td>
|
||||
<td> </td>
|
||||
<td>1:BN</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:1:GND </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w1">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:2:VCC</td>
|
||||
<td> </td>
|
||||
<td>2:RD</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:2:VCC </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w2">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:3:RX</td>
|
||||
<td> </td>
|
||||
<td>3:OG</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:4:TX </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w3">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:4:TX</td>
|
||||
<td> </td>
|
||||
<td>4:YE</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:3:RX </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w4">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:1:GND</td>
|
||||
<td> </td>
|
||||
<td>Shield</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="2" port="w5">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> shape=box style=filled]
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
X1:p1r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
edge [color="#000000:#FF0000:#000000"]
|
||||
X1:p2r:e -- W1:w2:w
|
||||
W1:w2:e -- X2:p2l:w
|
||||
edge [color="#000000:#ff8000:#000000"]
|
||||
edge [color="#000000:#FF8000:#000000"]
|
||||
X1:p3r:e -- W1:w3:w
|
||||
W1:w3:e -- X2:p4l:w
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
edge [color="#000000:#FFFF00:#000000"]
|
||||
X1:p4r:e -- W1:w4:w
|
||||
W1:w4:e -- X2:p3l:w
|
||||
edge [color="#000000"]
|
||||
X1:p1r:e -- W1:ws:w
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">W1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Serial</td>
|
||||
<td balign="left">4x</td>
|
||||
<td balign="left">0.25 mm² (24 AWG)</td>
|
||||
<td balign="left">+ S</td>
|
||||
<td balign="left">0.2 m</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td>X1:1:GND</td>
|
||||
<td>
|
||||
1:BN
|
||||
</td>
|
||||
<td>X2:1:GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:2:VCC</td>
|
||||
<td>
|
||||
2:RD
|
||||
</td>
|
||||
<td>X2:2:VCC</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff0000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:3:RX</td>
|
||||
<td>
|
||||
3:OG
|
||||
</td>
|
||||
<td>X2:4:TX</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w3" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff8000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:4:TX</td>
|
||||
<td>
|
||||
4:YE
|
||||
</td>
|
||||
<td>X2:3:RX</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w4" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ffff00" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td>X1:1:GND</td>
|
||||
<td>Shield</td>
|
||||
<td><!-- s_out --></td>
|
||||
</tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0" port="ws"></td></tr>
|
||||
<tr><td> </td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
X1:p1r:e -- W1:w5:w
|
||||
W1:w1:e -- W1:w1:w [color="#000000:#895956:#000000" straight=straight]
|
||||
W1:w2:e -- W1:w2:w [color="#000000:#FF0000:#000000" straight=straight]
|
||||
W1:w3:e -- W1:w3:w [color="#000000:#FF8000:#000000" straight=straight]
|
||||
W1:w4:e -- W1:w4:w [color="#000000:#FFFF00:#000000" straight=straight]
|
||||
W1:w5:e -- W1:w5:w [color="#000000" straight=straight]
|
||||
}
|
||||
|
||||
339
examples/ex01.html
generated
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="generator" content="WireViz 0.4-dev - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.4-dev251 - https://github.com/formatc1702/WireViz">
|
||||
<title>ex01</title>
|
||||
<style>
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
}
|
||||
|
||||
</style>
|
||||
</head><body style="font-family:arial;background-color:#ffffff">
|
||||
</head><body style="font-family:arial;background-color:#FFFFFF">
|
||||
<h1>ex01</h1>
|
||||
<h2>Diagram</h2>
|
||||
|
||||
@ -30,178 +30,225 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="943pt" height="232pt"
|
||||
viewBox="0.00 0.00 943.00 232.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 228)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-228 939,-228 939,4 -4,4"/>
|
||||
<svg width="950pt" height="243pt"
|
||||
viewBox="0.00 0.00 950.25 243.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 239)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-239 946.25,-239 946.25,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="187,-191 0,-191 0,-53 187,-53 187,-191"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-168 0.5,-191 187.5,-191 187.5,-168 0.5,-168"/>
|
||||
<text text-anchor="start" x="85" y="-175.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-145 0.5,-168 96.5,-168 96.5,-145 0.5,-145"/>
|
||||
<text text-anchor="start" x="4.5" y="-152.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="96.5,-145 96.5,-168 147.5,-168 147.5,-145 96.5,-145"/>
|
||||
<text text-anchor="start" x="100.5" y="-152.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="147.5,-145 147.5,-168 187.5,-168 187.5,-145 147.5,-145"/>
|
||||
<text text-anchor="start" x="151.5" y="-152.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-122 0.5,-145 106.5,-145 106.5,-122 0.5,-122"/>
|
||||
<text text-anchor="start" x="37.5" y="-129.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-122 106.5,-145 187.5,-145 187.5,-122 106.5,-122"/>
|
||||
<text text-anchor="start" x="143" y="-129.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-99 0.5,-122 106.5,-122 106.5,-99 0.5,-99"/>
|
||||
<text text-anchor="start" x="38.5" y="-106.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-99 106.5,-122 187.5,-122 187.5,-99 106.5,-99"/>
|
||||
<text text-anchor="start" x="143" y="-106.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-76 0.5,-99 106.5,-99 106.5,-76 0.5,-76"/>
|
||||
<text text-anchor="start" x="43.5" y="-83.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-76 106.5,-99 187.5,-99 187.5,-76 106.5,-76"/>
|
||||
<text text-anchor="start" x="143" y="-83.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-53 0.5,-76 106.5,-76 106.5,-53 0.5,-53"/>
|
||||
<text text-anchor="start" x="44.5" y="-60.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-53 106.5,-76 187.5,-76 187.5,-53 106.5,-53"/>
|
||||
<text text-anchor="start" x="143" y="-60.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="188.25,-200 0,-200 0,-55 188.25,-55 188.25,-200"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-55 0,-200 188.25,-200 188.25,-55 0,-55"/>
|
||||
<polygon fill="none" stroke="black" points="0,-175.5 0,-200 188.25,-200 188.25,-175.5 0,-175.5"/>
|
||||
<text text-anchor="start" x="85.13" y="-182.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-151 0,-175.5 97.25,-175.5 97.25,-151 0,-151"/>
|
||||
<text text-anchor="start" x="4" y="-158.2" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="97.25,-151 97.25,-175.5 148.75,-175.5 148.75,-151 97.25,-151"/>
|
||||
<text text-anchor="start" x="101.25" y="-158.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="148.75,-151 148.75,-175.5 188.25,-175.5 188.25,-151 148.75,-151"/>
|
||||
<text text-anchor="start" x="152.75" y="-158.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-127 0,-151 105.63,-151 105.63,-127 0,-127"/>
|
||||
<text text-anchor="start" x="37.06" y="-133.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-127 105.63,-151 188.25,-151 188.25,-127 105.63,-127"/>
|
||||
<text text-anchor="start" x="142.81" y="-133.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-103 0,-127 105.63,-127 105.63,-103 0,-103"/>
|
||||
<text text-anchor="start" x="37.44" y="-109.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-103 105.63,-127 188.25,-127 188.25,-103 105.63,-103"/>
|
||||
<text text-anchor="start" x="142.81" y="-109.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-79 0,-103 105.63,-103 105.63,-79 0,-79"/>
|
||||
<text text-anchor="start" x="42.69" y="-85.7" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-79 105.63,-103 188.25,-103 188.25,-79 105.63,-79"/>
|
||||
<text text-anchor="start" x="142.81" y="-85.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-55 0,-79 105.63,-79 105.63,-55 0,-55"/>
|
||||
<text text-anchor="start" x="43.44" y="-61.7" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-55 105.63,-79 188.25,-79 188.25,-55 105.63,-55"/>
|
||||
<text text-anchor="start" x="142.81" y="-61.7" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="604,-224 331,-224 331,0 604,0 604,-224"/>
|
||||
<polygon fill="none" stroke="black" points="331.5,-201 331.5,-224 604.5,-224 604.5,-201 331.5,-201"/>
|
||||
<text text-anchor="start" x="457.5" y="-208.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="331.5,-178 331.5,-201 375.5,-201 375.5,-178 331.5,-178"/>
|
||||
<text text-anchor="start" x="335.5" y="-185.8" font-family="arial" font-size="14.00">Serial</text>
|
||||
<polygon fill="none" stroke="black" points="375.5,-178 375.5,-201 398.5,-201 398.5,-178 375.5,-178"/>
|
||||
<text text-anchor="start" x="379.5" y="-185.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="398.5,-178 398.5,-201 530.5,-201 530.5,-178 398.5,-178"/>
|
||||
<text text-anchor="start" x="402.5" y="-185.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="530.5,-178 530.5,-201 560.5,-201 560.5,-178 530.5,-178"/>
|
||||
<text text-anchor="start" x="534.5" y="-185.8" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="560.5,-178 560.5,-201 604.5,-201 604.5,-178 560.5,-178"/>
|
||||
<text text-anchor="start" x="564.5" y="-185.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="374.5" y="-164.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="344.5" y="-145.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="435" y="-145.8" font-family="arial" font-size="14.00">     1:BN    </text>
|
||||
<text text-anchor="start" x="528" y="-145.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-138 331.5,-140 604.5,-140 604.5,-138 331.5,-138"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="331.5,-136 331.5,-138 604.5,-138 604.5,-136 331.5,-136"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-134 331.5,-136 604.5,-136 604.5,-134 331.5,-134"/>
|
||||
<text text-anchor="start" x="345" y="-120.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="435" y="-120.8" font-family="arial" font-size="14.00">     2:RD    </text>
|
||||
<text text-anchor="start" x="528.5" y="-120.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-113 331.5,-115 604.5,-115 604.5,-113 331.5,-113"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="331.5,-111 331.5,-113 604.5,-113 604.5,-111 331.5,-111"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-109 331.5,-111 604.5,-111 604.5,-109 331.5,-109"/>
|
||||
<text text-anchor="start" x="350" y="-95.8" font-family="arial" font-size="14.00">X1:3:RX</text>
|
||||
<text text-anchor="start" x="434" y="-95.8" font-family="arial" font-size="14.00">     3:OG    </text>
|
||||
<text text-anchor="start" x="534.5" y="-95.8" font-family="arial" font-size="14.00">X2:4:TX</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-88 331.5,-90 604.5,-90 604.5,-88 331.5,-88"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="331.5,-86 331.5,-88 604.5,-88 604.5,-86 331.5,-86"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-84 331.5,-86 604.5,-86 604.5,-84 331.5,-84"/>
|
||||
<text text-anchor="start" x="351" y="-70.8" font-family="arial" font-size="14.00">X1:4:TX</text>
|
||||
<text text-anchor="start" x="435.5" y="-70.8" font-family="arial" font-size="14.00">     4:YE    </text>
|
||||
<text text-anchor="start" x="533.5" y="-70.8" font-family="arial" font-size="14.00">X2:3:RX</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-63 331.5,-65 604.5,-65 604.5,-63 331.5,-63"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="331.5,-61 331.5,-63 604.5,-63 604.5,-61 331.5,-61"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-59 331.5,-61 604.5,-61 604.5,-59 331.5,-59"/>
|
||||
<text text-anchor="start" x="374.5" y="-45.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="344.5" y="-26.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="449" y="-26.8" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-19 331.5,-21 604.5,-21 604.5,-19 331.5,-19"/>
|
||||
<text text-anchor="start" x="374.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="610,-235 332.25,-235 332.25,0 610,0 610,-235"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,0 332.25,-235 610,-235 610,0 332.25,0"/>
|
||||
<polygon fill="none" stroke="black" points="332.25,-210.5 332.25,-235 610,-235 610,-210.5 332.25,-210.5"/>
|
||||
<text text-anchor="start" x="459.87" y="-217.7" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="332.25,-186 332.25,-210.5 376.25,-210.5 376.25,-186 332.25,-186"/>
|
||||
<text text-anchor="start" x="336.25" y="-193.2" font-family="arial" font-size="14.00">Serial</text>
|
||||
<polygon fill="none" stroke="black" points="376.25,-186 376.25,-210.5 399.25,-210.5 399.25,-186 376.25,-186"/>
|
||||
<text text-anchor="start" x="380.25" y="-193.2" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="399.25,-186 399.25,-210.5 536.25,-210.5 536.25,-186 399.25,-186"/>
|
||||
<text text-anchor="start" x="403.25" y="-193.2" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="536.25,-186 536.25,-210.5 566,-210.5 566,-186 536.25,-186"/>
|
||||
<text text-anchor="start" x="540.25" y="-193.2" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="566,-186 566,-210.5 610,-210.5 610,-186 566,-186"/>
|
||||
<text text-anchor="start" x="570" y="-193.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="374.35" y="-170.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="334.25" y="-150.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="429.3" y="-150.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="455.37" y="-150.7" font-family="arial" font-size="14.00">1:BN</text>
|
||||
<text text-anchor="start" x="509.2" y="-150.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="539" y="-150.7" font-family="arial" font-size="14.00">X2:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-144 332.25,-146 610,-146 610,-144 332.25,-144"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-142 332.25,-144 610,-144 610,-142 332.25,-142"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-140 332.25,-142 610,-142 610,-140 332.25,-140"/>
|
||||
<text text-anchor="start" x="334.25" y="-124.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="429.3" y="-124.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="454.62" y="-124.7" font-family="arial" font-size="14.00">2:RD</text>
|
||||
<text text-anchor="start" x="509.2" y="-124.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="539.75" y="-124.7" font-family="arial" font-size="14.00">X2:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-118 332.25,-120 610,-120 610,-118 332.25,-118"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-116 332.25,-118 610,-118 610,-116 332.25,-116"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-114 332.25,-116 610,-116 610,-114 332.25,-114"/>
|
||||
<text text-anchor="start" x="334.25" y="-98.7" font-family="arial" font-size="14.00"> X1:3:RX</text>
|
||||
<text text-anchor="start" x="429.3" y="-98.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="453.87" y="-98.7" font-family="arial" font-size="14.00">3:OG</text>
|
||||
<text text-anchor="start" x="509.2" y="-98.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="551.75" y="-98.7" font-family="arial" font-size="14.00">X2:4:TX </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-92 332.25,-94 610,-94 610,-92 332.25,-92"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-90 332.25,-92 610,-92 610,-90 332.25,-90"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-88 332.25,-90 610,-90 610,-88 332.25,-88"/>
|
||||
<text text-anchor="start" x="334.25" y="-72.7" font-family="arial" font-size="14.00"> X1:4:TX</text>
|
||||
<text text-anchor="start" x="429.3" y="-72.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="455.75" y="-72.7" font-family="arial" font-size="14.00">4:YE</text>
|
||||
<text text-anchor="start" x="509.2" y="-72.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="550.25" y="-72.7" font-family="arial" font-size="14.00">X2:3:RX </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-66 332.25,-68 610,-68 610,-66 332.25,-66"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-64 332.25,-66 610,-66 610,-64 332.25,-64"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-62 332.25,-64 610,-64 610,-62 332.25,-62"/>
|
||||
<text text-anchor="start" x="374.35" y="-46.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="334.25" y="-26.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="429.3" y="-26.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="451.25" y="-26.7" font-family="arial" font-size="14.00">Shield</text>
|
||||
<text text-anchor="start" x="509.2" y="-26.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="604.25" y="-26.7" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-20 332.25,-22 610,-22 610,-20 332.25,-20"/>
|
||||
<text text-anchor="start" x="374.35" y="-4.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-132C251.38,-132.03 267.36,-135.03 331,-135"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M187,-134C251.01,-134 266.99,-137 331,-137"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-136C250.64,-135.97 266.62,-138.97 331,-139"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-137C252.76,-137.06 268.72,-141.06 332.25,-141"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M188.25,-139C252.27,-139 268.23,-143 332.25,-143"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-141C251.78,-140.94 267.74,-144.94 332.25,-145"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-113C252.51,-113.02 268.49,-115.02 332.25,-115"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M188.25,-115C252.26,-115 268.24,-117 332.25,-117"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-117C252.01,-116.98 267.99,-118.98 332.25,-119"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-108C251.25,-108.02 267.24,-110.02 331,-110"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M187,-110C251.01,-110 266.99,-112 331,-112"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-112C250.76,-111.98 266.75,-113.98 331,-114"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-89C252.25,-89 268.25,-89 332.25,-89"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M188.25,-91C252.25,-91 268.25,-91 332.25,-91"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-93C252.25,-93 268.25,-93 332.25,-93"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-65C252.01,-65.02 267.99,-63.02 332.25,-63"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M188.25,-67C252.26,-67 268.24,-65 332.25,-65"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-69C252.51,-68.98 268.49,-66.98 332.25,-67"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-85C251,-85 267,-85 331,-85"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M187,-87C251,-87 267,-87 331,-87"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-89C251,-89 267,-89 331,-89"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-139C270.99,-139 249.51,-21 332.25,-21"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-145C517.42,-145 424.83,-145 332.25,-145"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M610,-143C517.42,-143 424.83,-143 332.25,-143"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-141C517.42,-141 424.83,-141 332.25,-141"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-62C250.76,-62.02 266.75,-60.02 331,-60"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M187,-64C251.01,-64 266.99,-62 331,-62"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-66C251.25,-65.98 267.24,-63.98 331,-64"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-119C517.42,-119 424.83,-119 332.25,-119"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M610,-117C517.42,-117 424.83,-117 332.25,-117"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-115C517.42,-115 424.83,-115 332.25,-115"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-93C517.42,-93 424.83,-93 332.25,-93"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M610,-91C517.42,-91 424.83,-91 332.25,-91"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-89C517.42,-89 424.83,-89 332.25,-89"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-134C268.63,-134 249.37,-20 331,-20"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-67C517.42,-67 424.83,-67 332.25,-67"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M610,-65C517.42,-65 424.83,-65 332.25,-65"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-63C517.42,-63 424.83,-63 332.25,-63"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-21C517.42,-21 424.83,-21 332.25,-21"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="935,-193 748,-193 748,-55 935,-55 935,-193"/>
|
||||
<polygon fill="none" stroke="black" points="748.5,-170 748.5,-193 935.5,-193 935.5,-170 748.5,-170"/>
|
||||
<text text-anchor="start" x="833" y="-177.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="748.5,-147 748.5,-170 844.5,-170 844.5,-147 748.5,-147"/>
|
||||
<text text-anchor="start" x="752.5" y="-154.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="844.5,-147 844.5,-170 895.5,-170 895.5,-147 844.5,-147"/>
|
||||
<text text-anchor="start" x="848.5" y="-154.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="895.5,-147 895.5,-170 935.5,-170 935.5,-147 895.5,-147"/>
|
||||
<text text-anchor="start" x="899.5" y="-154.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="748.5,-124 748.5,-147 830.5,-147 830.5,-124 748.5,-124"/>
|
||||
<text text-anchor="start" x="785.5" y="-131.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="830.5,-124 830.5,-147 935.5,-147 935.5,-124 830.5,-124"/>
|
||||
<text text-anchor="start" x="867" y="-131.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="748.5,-101 748.5,-124 830.5,-124 830.5,-101 748.5,-101"/>
|
||||
<text text-anchor="start" x="785.5" y="-108.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="830.5,-101 830.5,-124 935.5,-124 935.5,-101 830.5,-101"/>
|
||||
<text text-anchor="start" x="868" y="-108.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="748.5,-78 748.5,-101 830.5,-101 830.5,-78 748.5,-78"/>
|
||||
<text text-anchor="start" x="785.5" y="-85.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="830.5,-78 830.5,-101 935.5,-101 935.5,-78 830.5,-78"/>
|
||||
<text text-anchor="start" x="873" y="-85.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="748.5,-55 748.5,-78 830.5,-78 830.5,-55 748.5,-55"/>
|
||||
<text text-anchor="start" x="785.5" y="-62.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="830.5,-55 830.5,-78 935.5,-78 935.5,-55 830.5,-55"/>
|
||||
<text text-anchor="start" x="874" y="-62.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="942.25,-203 754,-203 754,-58 942.25,-58 942.25,-203"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="754,-58 754,-203 942.25,-203 942.25,-58 754,-58"/>
|
||||
<polygon fill="none" stroke="black" points="754,-178.5 754,-203 942.25,-203 942.25,-178.5 754,-178.5"/>
|
||||
<text text-anchor="start" x="839.12" y="-185.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="754,-154 754,-178.5 851.25,-178.5 851.25,-154 754,-154"/>
|
||||
<text text-anchor="start" x="758" y="-161.2" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="851.25,-154 851.25,-178.5 902.75,-178.5 902.75,-154 851.25,-154"/>
|
||||
<text text-anchor="start" x="855.25" y="-161.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="902.75,-154 902.75,-178.5 942.25,-178.5 942.25,-154 902.75,-154"/>
|
||||
<text text-anchor="start" x="906.75" y="-161.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="754,-130 754,-154 836.62,-154 836.62,-130 754,-130"/>
|
||||
<text text-anchor="start" x="791.18" y="-136.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="836.62,-130 836.62,-154 942.25,-154 942.25,-130 836.62,-130"/>
|
||||
<text text-anchor="start" x="873.68" y="-136.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="754,-106 754,-130 836.62,-130 836.62,-106 754,-106"/>
|
||||
<text text-anchor="start" x="791.18" y="-112.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="836.62,-106 836.62,-130 942.25,-130 942.25,-106 836.62,-106"/>
|
||||
<text text-anchor="start" x="874.06" y="-112.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="754,-82 754,-106 836.62,-106 836.62,-82 754,-82"/>
|
||||
<text text-anchor="start" x="791.18" y="-88.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="836.62,-82 836.62,-106 942.25,-106 942.25,-82 836.62,-82"/>
|
||||
<text text-anchor="start" x="879.31" y="-88.7" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="754,-58 754,-82 836.62,-82 836.62,-58 754,-58"/>
|
||||
<text text-anchor="start" x="791.18" y="-64.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="836.62,-58 836.62,-82 942.25,-82 942.25,-58 836.62,-58"/>
|
||||
<text text-anchor="start" x="880.06" y="-64.7" font-family="arial" font-size="14.00">TX</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<g id="edge11" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M604,-135C667.88,-135 683.87,-134 748,-134"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M604,-137C668,-137 684,-136 748,-136"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M604,-139C668.13,-139 684.12,-138 748,-138"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-141C673.88,-141 689.88,-140 754,-140"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M610,-143C674,-143 690,-142 754,-142"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-145C674.13,-145 690.13,-144 754,-144"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M604,-110C668,-110 684,-110 748,-110"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M604,-112C668,-112 684,-112 748,-112"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M604,-114C668,-114 684,-114 748,-114"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-115C674.13,-115 690.13,-116 754,-116"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M610,-117C674,-117 690,-118 754,-118"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-119C673.88,-119 689.88,-120 754,-120"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<g id="edge13" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M604,-85C667.04,-85.86 681.68,-64.86 748,-64"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M604,-87C668.68,-87 683.32,-66 748,-66"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M604,-89C670.32,-88.14 684.96,-67.14 748,-68"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-89C673.04,-89.86 687.68,-68.86 754,-68"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M610,-91C674.68,-91 689.32,-70 754,-70"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-93C676.32,-92.14 690.96,-71.14 754,-72"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<g id="edge14" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M604,-60C670.9,-61.09 684.67,-88.09 748,-87"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M604,-62C669.12,-62 682.88,-89 748,-89"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M604,-64C667.33,-62.91 681.1,-89.91 748,-91"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-63C677.1,-64.16 690.54,-93.16 754,-92"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M610,-65C675.28,-65 688.72,-94 754,-94"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-67C673.47,-65.84 686.91,-94.84 754,-96"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
@ -217,26 +264,26 @@
|
||||
<div id="bom">
|
||||
<table class="bom">
|
||||
<tr>
|
||||
<th class="bom_col_id">Id</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_#">#</th>
|
||||
<th class="bom_col_qty">Qty</th>
|
||||
<th class="bom_col_unit">Unit</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_designators">Designators</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">1</td>
|
||||
<td class="bom_col_description">Cable, Serial, 4 x 0.25 mm² shielded</td>
|
||||
<td class="bom_col_qty">0.2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">2</td>
|
||||
<td class="bom_col_description">Connector, Molex KK 254, female, 4 pins</td>
|
||||
<td class="bom_col_#">1</td>
|
||||
<td class="bom_col_qty">2</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, Molex KK 254, female, 4 pins</td>
|
||||
<td class="bom_col_designators">X1, X2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_#">2</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Cable, Serial, 4 x 0.25 mm² shielded</td>
|
||||
<td class="bom_col_designators">W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
BIN
examples/ex01.png
generated
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 40 KiB |
313
examples/ex01.svg
generated
@ -1,178 +1,225 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="943pt" height="232pt"
|
||||
viewBox="0.00 0.00 943.00 232.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 228)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-228 939,-228 939,4 -4,4"/>
|
||||
<svg width="950pt" height="243pt"
|
||||
viewBox="0.00 0.00 950.25 243.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 239)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-239 946.25,-239 946.25,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="187,-191 0,-191 0,-53 187,-53 187,-191"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-168 0.5,-191 187.5,-191 187.5,-168 0.5,-168"/>
|
||||
<text text-anchor="start" x="85" y="-175.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-145 0.5,-168 96.5,-168 96.5,-145 0.5,-145"/>
|
||||
<text text-anchor="start" x="4.5" y="-152.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="96.5,-145 96.5,-168 147.5,-168 147.5,-145 96.5,-145"/>
|
||||
<text text-anchor="start" x="100.5" y="-152.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="147.5,-145 147.5,-168 187.5,-168 187.5,-145 147.5,-145"/>
|
||||
<text text-anchor="start" x="151.5" y="-152.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-122 0.5,-145 106.5,-145 106.5,-122 0.5,-122"/>
|
||||
<text text-anchor="start" x="37.5" y="-129.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-122 106.5,-145 187.5,-145 187.5,-122 106.5,-122"/>
|
||||
<text text-anchor="start" x="143" y="-129.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-99 0.5,-122 106.5,-122 106.5,-99 0.5,-99"/>
|
||||
<text text-anchor="start" x="38.5" y="-106.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-99 106.5,-122 187.5,-122 187.5,-99 106.5,-99"/>
|
||||
<text text-anchor="start" x="143" y="-106.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-76 0.5,-99 106.5,-99 106.5,-76 0.5,-76"/>
|
||||
<text text-anchor="start" x="43.5" y="-83.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-76 106.5,-99 187.5,-99 187.5,-76 106.5,-76"/>
|
||||
<text text-anchor="start" x="143" y="-83.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-53 0.5,-76 106.5,-76 106.5,-53 0.5,-53"/>
|
||||
<text text-anchor="start" x="44.5" y="-60.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-53 106.5,-76 187.5,-76 187.5,-53 106.5,-53"/>
|
||||
<text text-anchor="start" x="143" y="-60.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="188.25,-200 0,-200 0,-55 188.25,-55 188.25,-200"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-55 0,-200 188.25,-200 188.25,-55 0,-55"/>
|
||||
<polygon fill="none" stroke="black" points="0,-175.5 0,-200 188.25,-200 188.25,-175.5 0,-175.5"/>
|
||||
<text text-anchor="start" x="85.13" y="-182.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-151 0,-175.5 97.25,-175.5 97.25,-151 0,-151"/>
|
||||
<text text-anchor="start" x="4" y="-158.2" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="97.25,-151 97.25,-175.5 148.75,-175.5 148.75,-151 97.25,-151"/>
|
||||
<text text-anchor="start" x="101.25" y="-158.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="148.75,-151 148.75,-175.5 188.25,-175.5 188.25,-151 148.75,-151"/>
|
||||
<text text-anchor="start" x="152.75" y="-158.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-127 0,-151 105.63,-151 105.63,-127 0,-127"/>
|
||||
<text text-anchor="start" x="37.06" y="-133.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-127 105.63,-151 188.25,-151 188.25,-127 105.63,-127"/>
|
||||
<text text-anchor="start" x="142.81" y="-133.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-103 0,-127 105.63,-127 105.63,-103 0,-103"/>
|
||||
<text text-anchor="start" x="37.44" y="-109.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-103 105.63,-127 188.25,-127 188.25,-103 105.63,-103"/>
|
||||
<text text-anchor="start" x="142.81" y="-109.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-79 0,-103 105.63,-103 105.63,-79 0,-79"/>
|
||||
<text text-anchor="start" x="42.69" y="-85.7" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-79 105.63,-103 188.25,-103 188.25,-79 105.63,-79"/>
|
||||
<text text-anchor="start" x="142.81" y="-85.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-55 0,-79 105.63,-79 105.63,-55 0,-55"/>
|
||||
<text text-anchor="start" x="43.44" y="-61.7" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-55 105.63,-79 188.25,-79 188.25,-55 105.63,-55"/>
|
||||
<text text-anchor="start" x="142.81" y="-61.7" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="604,-224 331,-224 331,0 604,0 604,-224"/>
|
||||
<polygon fill="none" stroke="black" points="331.5,-201 331.5,-224 604.5,-224 604.5,-201 331.5,-201"/>
|
||||
<text text-anchor="start" x="457.5" y="-208.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="331.5,-178 331.5,-201 375.5,-201 375.5,-178 331.5,-178"/>
|
||||
<text text-anchor="start" x="335.5" y="-185.8" font-family="arial" font-size="14.00">Serial</text>
|
||||
<polygon fill="none" stroke="black" points="375.5,-178 375.5,-201 398.5,-201 398.5,-178 375.5,-178"/>
|
||||
<text text-anchor="start" x="379.5" y="-185.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="398.5,-178 398.5,-201 530.5,-201 530.5,-178 398.5,-178"/>
|
||||
<text text-anchor="start" x="402.5" y="-185.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="530.5,-178 530.5,-201 560.5,-201 560.5,-178 530.5,-178"/>
|
||||
<text text-anchor="start" x="534.5" y="-185.8" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="560.5,-178 560.5,-201 604.5,-201 604.5,-178 560.5,-178"/>
|
||||
<text text-anchor="start" x="564.5" y="-185.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="374.5" y="-164.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="344.5" y="-145.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="435" y="-145.8" font-family="arial" font-size="14.00">     1:BN    </text>
|
||||
<text text-anchor="start" x="528" y="-145.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-138 331.5,-140 604.5,-140 604.5,-138 331.5,-138"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="331.5,-136 331.5,-138 604.5,-138 604.5,-136 331.5,-136"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-134 331.5,-136 604.5,-136 604.5,-134 331.5,-134"/>
|
||||
<text text-anchor="start" x="345" y="-120.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="435" y="-120.8" font-family="arial" font-size="14.00">     2:RD    </text>
|
||||
<text text-anchor="start" x="528.5" y="-120.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-113 331.5,-115 604.5,-115 604.5,-113 331.5,-113"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="331.5,-111 331.5,-113 604.5,-113 604.5,-111 331.5,-111"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-109 331.5,-111 604.5,-111 604.5,-109 331.5,-109"/>
|
||||
<text text-anchor="start" x="350" y="-95.8" font-family="arial" font-size="14.00">X1:3:RX</text>
|
||||
<text text-anchor="start" x="434" y="-95.8" font-family="arial" font-size="14.00">     3:OG    </text>
|
||||
<text text-anchor="start" x="534.5" y="-95.8" font-family="arial" font-size="14.00">X2:4:TX</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-88 331.5,-90 604.5,-90 604.5,-88 331.5,-88"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="331.5,-86 331.5,-88 604.5,-88 604.5,-86 331.5,-86"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-84 331.5,-86 604.5,-86 604.5,-84 331.5,-84"/>
|
||||
<text text-anchor="start" x="351" y="-70.8" font-family="arial" font-size="14.00">X1:4:TX</text>
|
||||
<text text-anchor="start" x="435.5" y="-70.8" font-family="arial" font-size="14.00">     4:YE    </text>
|
||||
<text text-anchor="start" x="533.5" y="-70.8" font-family="arial" font-size="14.00">X2:3:RX</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-63 331.5,-65 604.5,-65 604.5,-63 331.5,-63"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="331.5,-61 331.5,-63 604.5,-63 604.5,-61 331.5,-61"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-59 331.5,-61 604.5,-61 604.5,-59 331.5,-59"/>
|
||||
<text text-anchor="start" x="374.5" y="-45.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="344.5" y="-26.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="449" y="-26.8" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-19 331.5,-21 604.5,-21 604.5,-19 331.5,-19"/>
|
||||
<text text-anchor="start" x="374.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="610,-235 332.25,-235 332.25,0 610,0 610,-235"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,0 332.25,-235 610,-235 610,0 332.25,0"/>
|
||||
<polygon fill="none" stroke="black" points="332.25,-210.5 332.25,-235 610,-235 610,-210.5 332.25,-210.5"/>
|
||||
<text text-anchor="start" x="459.87" y="-217.7" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="332.25,-186 332.25,-210.5 376.25,-210.5 376.25,-186 332.25,-186"/>
|
||||
<text text-anchor="start" x="336.25" y="-193.2" font-family="arial" font-size="14.00">Serial</text>
|
||||
<polygon fill="none" stroke="black" points="376.25,-186 376.25,-210.5 399.25,-210.5 399.25,-186 376.25,-186"/>
|
||||
<text text-anchor="start" x="380.25" y="-193.2" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="399.25,-186 399.25,-210.5 536.25,-210.5 536.25,-186 399.25,-186"/>
|
||||
<text text-anchor="start" x="403.25" y="-193.2" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="536.25,-186 536.25,-210.5 566,-210.5 566,-186 536.25,-186"/>
|
||||
<text text-anchor="start" x="540.25" y="-193.2" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="566,-186 566,-210.5 610,-210.5 610,-186 566,-186"/>
|
||||
<text text-anchor="start" x="570" y="-193.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="374.35" y="-170.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="334.25" y="-150.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="429.3" y="-150.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="455.37" y="-150.7" font-family="arial" font-size="14.00">1:BN</text>
|
||||
<text text-anchor="start" x="509.2" y="-150.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="539" y="-150.7" font-family="arial" font-size="14.00">X2:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-144 332.25,-146 610,-146 610,-144 332.25,-144"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-142 332.25,-144 610,-144 610,-142 332.25,-142"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-140 332.25,-142 610,-142 610,-140 332.25,-140"/>
|
||||
<text text-anchor="start" x="334.25" y="-124.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="429.3" y="-124.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="454.62" y="-124.7" font-family="arial" font-size="14.00">2:RD</text>
|
||||
<text text-anchor="start" x="509.2" y="-124.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="539.75" y="-124.7" font-family="arial" font-size="14.00">X2:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-118 332.25,-120 610,-120 610,-118 332.25,-118"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-116 332.25,-118 610,-118 610,-116 332.25,-116"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-114 332.25,-116 610,-116 610,-114 332.25,-114"/>
|
||||
<text text-anchor="start" x="334.25" y="-98.7" font-family="arial" font-size="14.00"> X1:3:RX</text>
|
||||
<text text-anchor="start" x="429.3" y="-98.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="453.87" y="-98.7" font-family="arial" font-size="14.00">3:OG</text>
|
||||
<text text-anchor="start" x="509.2" y="-98.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="551.75" y="-98.7" font-family="arial" font-size="14.00">X2:4:TX </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-92 332.25,-94 610,-94 610,-92 332.25,-92"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-90 332.25,-92 610,-92 610,-90 332.25,-90"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-88 332.25,-90 610,-90 610,-88 332.25,-88"/>
|
||||
<text text-anchor="start" x="334.25" y="-72.7" font-family="arial" font-size="14.00"> X1:4:TX</text>
|
||||
<text text-anchor="start" x="429.3" y="-72.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="455.75" y="-72.7" font-family="arial" font-size="14.00">4:YE</text>
|
||||
<text text-anchor="start" x="509.2" y="-72.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="550.25" y="-72.7" font-family="arial" font-size="14.00">X2:3:RX </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-66 332.25,-68 610,-68 610,-66 332.25,-66"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-64 332.25,-66 610,-66 610,-64 332.25,-64"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-62 332.25,-64 610,-64 610,-62 332.25,-62"/>
|
||||
<text text-anchor="start" x="374.35" y="-46.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="334.25" y="-26.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="429.3" y="-26.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="451.25" y="-26.7" font-family="arial" font-size="14.00">Shield</text>
|
||||
<text text-anchor="start" x="509.2" y="-26.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="604.25" y="-26.7" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-20 332.25,-22 610,-22 610,-20 332.25,-20"/>
|
||||
<text text-anchor="start" x="374.35" y="-4.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-132C251.38,-132.03 267.36,-135.03 331,-135"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M187,-134C251.01,-134 266.99,-137 331,-137"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-136C250.64,-135.97 266.62,-138.97 331,-139"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-137C252.76,-137.06 268.72,-141.06 332.25,-141"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M188.25,-139C252.27,-139 268.23,-143 332.25,-143"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-141C251.78,-140.94 267.74,-144.94 332.25,-145"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-113C252.51,-113.02 268.49,-115.02 332.25,-115"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M188.25,-115C252.26,-115 268.24,-117 332.25,-117"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-117C252.01,-116.98 267.99,-118.98 332.25,-119"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-108C251.25,-108.02 267.24,-110.02 331,-110"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M187,-110C251.01,-110 266.99,-112 331,-112"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-112C250.76,-111.98 266.75,-113.98 331,-114"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-89C252.25,-89 268.25,-89 332.25,-89"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M188.25,-91C252.25,-91 268.25,-91 332.25,-91"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-93C252.25,-93 268.25,-93 332.25,-93"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-65C252.01,-65.02 267.99,-63.02 332.25,-63"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M188.25,-67C252.26,-67 268.24,-65 332.25,-65"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-69C252.51,-68.98 268.49,-66.98 332.25,-67"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-85C251,-85 267,-85 331,-85"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M187,-87C251,-87 267,-87 331,-87"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-89C251,-89 267,-89 331,-89"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-139C270.99,-139 249.51,-21 332.25,-21"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-145C517.42,-145 424.83,-145 332.25,-145"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M610,-143C517.42,-143 424.83,-143 332.25,-143"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-141C517.42,-141 424.83,-141 332.25,-141"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-62C250.76,-62.02 266.75,-60.02 331,-60"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M187,-64C251.01,-64 266.99,-62 331,-62"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-66C251.25,-65.98 267.24,-63.98 331,-64"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-119C517.42,-119 424.83,-119 332.25,-119"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M610,-117C517.42,-117 424.83,-117 332.25,-117"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-115C517.42,-115 424.83,-115 332.25,-115"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-93C517.42,-93 424.83,-93 332.25,-93"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M610,-91C517.42,-91 424.83,-91 332.25,-91"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-89C517.42,-89 424.83,-89 332.25,-89"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-134C268.63,-134 249.37,-20 331,-20"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-67C517.42,-67 424.83,-67 332.25,-67"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M610,-65C517.42,-65 424.83,-65 332.25,-65"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-63C517.42,-63 424.83,-63 332.25,-63"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-21C517.42,-21 424.83,-21 332.25,-21"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="935,-193 748,-193 748,-55 935,-55 935,-193"/>
|
||||
<polygon fill="none" stroke="black" points="748.5,-170 748.5,-193 935.5,-193 935.5,-170 748.5,-170"/>
|
||||
<text text-anchor="start" x="833" y="-177.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="748.5,-147 748.5,-170 844.5,-170 844.5,-147 748.5,-147"/>
|
||||
<text text-anchor="start" x="752.5" y="-154.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="844.5,-147 844.5,-170 895.5,-170 895.5,-147 844.5,-147"/>
|
||||
<text text-anchor="start" x="848.5" y="-154.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="895.5,-147 895.5,-170 935.5,-170 935.5,-147 895.5,-147"/>
|
||||
<text text-anchor="start" x="899.5" y="-154.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="748.5,-124 748.5,-147 830.5,-147 830.5,-124 748.5,-124"/>
|
||||
<text text-anchor="start" x="785.5" y="-131.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="830.5,-124 830.5,-147 935.5,-147 935.5,-124 830.5,-124"/>
|
||||
<text text-anchor="start" x="867" y="-131.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="748.5,-101 748.5,-124 830.5,-124 830.5,-101 748.5,-101"/>
|
||||
<text text-anchor="start" x="785.5" y="-108.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="830.5,-101 830.5,-124 935.5,-124 935.5,-101 830.5,-101"/>
|
||||
<text text-anchor="start" x="868" y="-108.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="748.5,-78 748.5,-101 830.5,-101 830.5,-78 748.5,-78"/>
|
||||
<text text-anchor="start" x="785.5" y="-85.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="830.5,-78 830.5,-101 935.5,-101 935.5,-78 830.5,-78"/>
|
||||
<text text-anchor="start" x="873" y="-85.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="748.5,-55 748.5,-78 830.5,-78 830.5,-55 748.5,-55"/>
|
||||
<text text-anchor="start" x="785.5" y="-62.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="830.5,-55 830.5,-78 935.5,-78 935.5,-55 830.5,-55"/>
|
||||
<text text-anchor="start" x="874" y="-62.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="942.25,-203 754,-203 754,-58 942.25,-58 942.25,-203"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="754,-58 754,-203 942.25,-203 942.25,-58 754,-58"/>
|
||||
<polygon fill="none" stroke="black" points="754,-178.5 754,-203 942.25,-203 942.25,-178.5 754,-178.5"/>
|
||||
<text text-anchor="start" x="839.12" y="-185.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="754,-154 754,-178.5 851.25,-178.5 851.25,-154 754,-154"/>
|
||||
<text text-anchor="start" x="758" y="-161.2" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="851.25,-154 851.25,-178.5 902.75,-178.5 902.75,-154 851.25,-154"/>
|
||||
<text text-anchor="start" x="855.25" y="-161.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="902.75,-154 902.75,-178.5 942.25,-178.5 942.25,-154 902.75,-154"/>
|
||||
<text text-anchor="start" x="906.75" y="-161.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="754,-130 754,-154 836.62,-154 836.62,-130 754,-130"/>
|
||||
<text text-anchor="start" x="791.18" y="-136.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="836.62,-130 836.62,-154 942.25,-154 942.25,-130 836.62,-130"/>
|
||||
<text text-anchor="start" x="873.68" y="-136.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="754,-106 754,-130 836.62,-130 836.62,-106 754,-106"/>
|
||||
<text text-anchor="start" x="791.18" y="-112.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="836.62,-106 836.62,-130 942.25,-130 942.25,-106 836.62,-106"/>
|
||||
<text text-anchor="start" x="874.06" y="-112.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="754,-82 754,-106 836.62,-106 836.62,-82 754,-82"/>
|
||||
<text text-anchor="start" x="791.18" y="-88.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="836.62,-82 836.62,-106 942.25,-106 942.25,-82 836.62,-82"/>
|
||||
<text text-anchor="start" x="879.31" y="-88.7" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="754,-58 754,-82 836.62,-82 836.62,-58 754,-58"/>
|
||||
<text text-anchor="start" x="791.18" y="-64.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="836.62,-58 836.62,-82 942.25,-82 942.25,-58 836.62,-58"/>
|
||||
<text text-anchor="start" x="880.06" y="-64.7" font-family="arial" font-size="14.00">TX</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<g id="edge11" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M604,-135C667.88,-135 683.87,-134 748,-134"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M604,-137C668,-137 684,-136 748,-136"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M604,-139C668.13,-139 684.12,-138 748,-138"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-141C673.88,-141 689.88,-140 754,-140"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M610,-143C674,-143 690,-142 754,-142"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-145C674.13,-145 690.13,-144 754,-144"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M604,-110C668,-110 684,-110 748,-110"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M604,-112C668,-112 684,-112 748,-112"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M604,-114C668,-114 684,-114 748,-114"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-115C674.13,-115 690.13,-116 754,-116"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M610,-117C674,-117 690,-118 754,-118"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-119C673.88,-119 689.88,-120 754,-120"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<g id="edge13" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M604,-85C667.04,-85.86 681.68,-64.86 748,-64"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M604,-87C668.68,-87 683.32,-66 748,-66"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M604,-89C670.32,-88.14 684.96,-67.14 748,-68"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-89C673.04,-89.86 687.68,-68.86 754,-68"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M610,-91C674.68,-91 689.32,-70 754,-70"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-93C676.32,-92.14 690.96,-71.14 754,-72"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<g id="edge14" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M604,-60C670.9,-61.09 684.67,-88.09 748,-87"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M604,-62C669.12,-62 682.88,-89 748,-89"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M604,-64C667.33,-62.91 681.1,-89.91 748,-91"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-63C677.1,-64.16 690.54,-93.16 754,-92"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M610,-65C675.28,-65 688.72,-94 754,-94"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-67C673.47,-65.84 686.91,-94.84 754,-96"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 16 KiB |
3
examples/ex01.tsv
generated
Normal file
@ -0,0 +1,3 @@
|
||||
# Qty Unit Description Designators
|
||||
1 2 Connector, Molex KK 254, female, 4 pins X1, X2
|
||||
2 1 m Cable, Serial, 4 x 0.25 mm² shielded W1
|
||||
|
64
examples/ex01_wv_gvpr.gvpr
Normal file
@ -0,0 +1,64 @@
|
||||
/*******************************************************************
|
||||
|
||||
see https://forum.graphviz.org/t/straitening-one-line-throu-a-table/2196 and https://forum.graphviz.org/t/way-of-drawing-a-black-circle-inside-a-table-field/2273/12
|
||||
input must include pos values (must be output from one of the engines w/ -Tdot)#
|
||||
Thanks to steveroush and FeRDNYC
|
||||
|
||||
*******************************************************************/
|
||||
BEG_G{
|
||||
double x1,y1,x2,y2,x3,y3,x4,y4;
|
||||
string ptSize, tok[int], pt[];
|
||||
int cnt, circ, i;
|
||||
node_t aNode;
|
||||
|
||||
circ=0;
|
||||
|
||||
/***************************************
|
||||
$G.bb="";
|
||||
$G.nodesep="";
|
||||
$G.ranksep="";
|
||||
$G.splines="true";
|
||||
****************************************/
|
||||
}
|
||||
|
||||
// This removes the label text but keeps the position
|
||||
E[noLabel] {
|
||||
$.label=""; // remove pesky label
|
||||
// $.lp=""; // remove peskier label pos
|
||||
}
|
||||
|
||||
E[straight] {
|
||||
cnt=tokens($.pos,tok," ");
|
||||
$.oldpos=$.pos;
|
||||
x1 = xOf(tok[0]);
|
||||
y1 = yOf(tok[0]);
|
||||
x4 = xOf(tok[cnt-1]);
|
||||
y4 = yOf(tok[cnt-1]);
|
||||
x2 = x1 + (x4-x1)/3.;
|
||||
y2 = y1 + (y4-y1)/3.;
|
||||
x3 = x1 + 2.*(x4-x1)/3.;
|
||||
y3 = y1 + 2.*(y4-y1)/3.;
|
||||
pos=sprintf("%.3f,%.3f %.3f,%.3f %.3f,%.3f %.3f,%.3f", x1,y1, x2,y2, x3,y3, x4,y4);
|
||||
$.label=""; // remove pesky label
|
||||
$.lp=""; // remove peskier label pos
|
||||
|
||||
if (hasAttr($, "addPTS") && $.addPTS!="" && $.colorPTS!=""){
|
||||
// now we place point nodes at the edge ends
|
||||
pt[1] = tok[0];
|
||||
pt[2] = tok[cnt-1];
|
||||
ptSize=$.addPTS;
|
||||
for (pt[i]) {
|
||||
if (i==2 && pt[1]==pt[2])
|
||||
continue;
|
||||
aNode=node($G, "__CIRCLE__" + (string)++circ);
|
||||
aNode.pos=pt[i];
|
||||
aNode.shape="point";
|
||||
aNode.width=ptSize;
|
||||
aNode.height=ptSize;
|
||||
aNode.style="filled";
|
||||
aNode.fillcolor=$.colorPTS;
|
||||
aNode.color=$.colorPTS;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
668
examples/ex02.gv
generated
@ -1,299 +1,431 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4-dev
|
||||
// Graph generated by WireViz 0.4-dev251
|
||||
// https://github.com/formatc1702/WireViz
|
||||
graph [bgcolor="#FFFFFF" fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor="#FFFFFF" fontname=arial height=0 margin=0 shape=none style=filled width=0]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Molex Micro-Fit</td>
|
||||
<td balign="left">male</td>
|
||||
<td balign="left">2-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td>GND</td>
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>VCC</td>
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Molex Micro-Fit</td>
|
||||
<td>male</td>
|
||||
<td>2-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>GND</td>
|
||||
[]
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>VCC</td>
|
||||
[]
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
X2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X2</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Molex Micro-Fit</td>
|
||||
<td balign="left">female</td>
|
||||
<td balign="left">2-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Molex Micro-Fit</td>
|
||||
<td>female</td>
|
||||
<td>2-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
[]
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
X3 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X3</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Molex Micro-Fit</td>
|
||||
<td balign="left">female</td>
|
||||
<td balign="left">2-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X3</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Molex Micro-Fit</td>
|
||||
<td>female</td>
|
||||
<td>2-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
[]
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
X4 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X4</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Molex Micro-Fit</td>
|
||||
<td balign="left">female</td>
|
||||
<td balign="left">2-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X4</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Molex Micro-Fit</td>
|
||||
<td>female</td>
|
||||
<td>2-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
[]
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>2x</td>
|
||||
<td>0.25 mm² (24 AWG)</td>
|
||||
<td>0.2 m</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:1:GND</td>
|
||||
<td> </td>
|
||||
<td>1:BK</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:1:GND </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w1">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:2:VCC</td>
|
||||
<td> </td>
|
||||
<td>2:RD</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:2:VCC </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w2">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> shape=box style=filled]
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
X1:p1r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
edge [color="#000000:#FF0000:#000000"]
|
||||
X1:p2r:e -- W1:w2:w
|
||||
W1:w2:e -- X2:p2l:w
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">W1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">2x</td>
|
||||
<td balign="left">0.25 mm² (24 AWG)</td>
|
||||
<td balign="left">0.2 m</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td>X1:1:GND</td>
|
||||
<td>
|
||||
1:BK
|
||||
</td>
|
||||
<td>X2:1:GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:2:VCC</td>
|
||||
<td>
|
||||
2:RD
|
||||
</td>
|
||||
<td>X2:2:VCC</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff0000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
W1:w1:e -- W1:w1:w [color="#000000:#000000:#000000" straight=straight]
|
||||
W1:w2:e -- W1:w2:w [color="#000000:#FF0000:#000000" straight=straight]
|
||||
W2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>W2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>2x</td>
|
||||
<td>0.25 mm² (24 AWG)</td>
|
||||
<td>0.2 m</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:1:GND</td>
|
||||
<td> </td>
|
||||
<td>1:BK</td>
|
||||
<td> </td>
|
||||
<td align="right">X3:1:GND </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w1">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:2:VCC</td>
|
||||
<td> </td>
|
||||
<td>2:RD</td>
|
||||
<td> </td>
|
||||
<td align="right">X3:2:VCC </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w2">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
X1:p1r:e -- W2:w1:w
|
||||
W2:w1:e -- X3:p1l:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
edge [color="#000000:#FF0000:#000000"]
|
||||
X1:p2r:e -- W2:w2:w
|
||||
W2:w2:e -- X3:p2l:w
|
||||
W2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">W2</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">2x</td>
|
||||
<td balign="left">0.25 mm² (24 AWG)</td>
|
||||
<td balign="left">0.2 m</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td>X1:1:GND</td>
|
||||
<td>
|
||||
1:BK
|
||||
</td>
|
||||
<td>X3:1:GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:2:VCC</td>
|
||||
<td>
|
||||
2:RD
|
||||
</td>
|
||||
<td>X3:2:VCC</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff0000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
W2:w1:e -- W2:w1:w [color="#000000:#000000:#000000" straight=straight]
|
||||
W2:w2:e -- W2:w2:w [color="#000000:#FF0000:#000000" straight=straight]
|
||||
W3 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>W3</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>2x</td>
|
||||
<td>20 awg (0.75 mm²)</td>
|
||||
<td>0.2 m</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:1:GND</td>
|
||||
<td> </td>
|
||||
<td>1:BK</td>
|
||||
<td> </td>
|
||||
<td align="right">X4:1:GND </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w1">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:2:VCC</td>
|
||||
<td> </td>
|
||||
<td>2:RD</td>
|
||||
<td> </td>
|
||||
<td align="right">X4:2:VCC </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w2">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
X1:p1r:e -- W3:w1:w
|
||||
W3:w1:e -- X4:p1l:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
edge [color="#000000:#FF0000:#000000"]
|
||||
X1:p2r:e -- W3:w2:w
|
||||
W3:w2:e -- X4:p2l:w
|
||||
W3 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">W3</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">2x</td>
|
||||
<td balign="left">20 AWG (0.75 mm²)</td>
|
||||
<td balign="left">0.2 m</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td>X1:1:GND</td>
|
||||
<td>
|
||||
1:BK
|
||||
</td>
|
||||
<td>X4:1:GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:2:VCC</td>
|
||||
<td>
|
||||
2:RD
|
||||
</td>
|
||||
<td>X4:2:VCC</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff0000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
W3:w1:e -- W3:w1:w [color="#000000:#000000:#000000" straight=straight]
|
||||
W3:w2:e -- W3:w2:w [color="#000000:#FF0000:#000000" straight=straight]
|
||||
}
|
||||
|
||||
519
examples/ex02.html
generated
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="generator" content="WireViz 0.4-dev - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.4-dev251 - https://github.com/formatc1702/WireViz">
|
||||
<title>ex02</title>
|
||||
<style>
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
}
|
||||
|
||||
</style>
|
||||
</head><body style="font-family:arial;background-color:#ffffff">
|
||||
</head><body style="font-family:arial;background-color:#FFFFFF">
|
||||
<h1>ex02</h1>
|
||||
<h2>Diagram</h2>
|
||||
|
||||
@ -30,261 +30,322 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="881pt" height="458pt"
|
||||
viewBox="0.00 0.00 881.00 458.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 454)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-454 877,-454 877,4 -4,4"/>
|
||||
<svg width="877pt" height="551pt"
|
||||
viewBox="0.00 0.00 877.25 551.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 547)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-547 873.25,-547 873.25,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="183,-262 0,-262 0,-170 183,-170 183,-262"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-239 0.5,-262 183.5,-262 183.5,-239 0.5,-239"/>
|
||||
<text text-anchor="start" x="83" y="-246.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-216 0.5,-239 104.5,-239 104.5,-216 0.5,-216"/>
|
||||
<text text-anchor="start" x="4.5" y="-223.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="104.5,-216 104.5,-239 143.5,-239 143.5,-216 104.5,-216"/>
|
||||
<text text-anchor="start" x="108.5" y="-223.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="143.5,-216 143.5,-239 183.5,-239 183.5,-216 143.5,-216"/>
|
||||
<text text-anchor="start" x="147.5" y="-223.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-193 0.5,-216 104.5,-216 104.5,-193 0.5,-193"/>
|
||||
<text text-anchor="start" x="36.5" y="-200.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="104.5,-193 104.5,-216 183.5,-216 183.5,-193 104.5,-193"/>
|
||||
<text text-anchor="start" x="140" y="-200.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-170 0.5,-193 104.5,-193 104.5,-170 0.5,-170"/>
|
||||
<text text-anchor="start" x="37.5" y="-177.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="104.5,-170 104.5,-193 183.5,-193 183.5,-170 104.5,-170"/>
|
||||
<text text-anchor="start" x="140" y="-177.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="182.25,-310 0,-310 0,-213 182.25,-213 182.25,-310"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-213 0,-310 182.25,-310 182.25,-213 0,-213"/>
|
||||
<polygon fill="none" stroke="black" points="0,-285.5 0,-310 182.25,-310 182.25,-285.5 0,-285.5"/>
|
||||
<text text-anchor="start" x="82.12" y="-292.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-261 0,-285.5 104,-285.5 104,-261 0,-261"/>
|
||||
<text text-anchor="start" x="4" y="-268.2" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="104,-261 104,-285.5 142.75,-285.5 142.75,-261 104,-261"/>
|
||||
<text text-anchor="start" x="108" y="-268.2" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="142.75,-261 142.75,-285.5 182.25,-285.5 182.25,-261 142.75,-261"/>
|
||||
<text text-anchor="start" x="146.75" y="-268.2" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-237 0,-261 102.62,-261 102.62,-237 0,-237"/>
|
||||
<text text-anchor="start" x="35.56" y="-243.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="102.62,-237 102.62,-261 182.25,-261 182.25,-237 102.62,-237"/>
|
||||
<text text-anchor="start" x="138.31" y="-243.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-213 0,-237 102.62,-237 102.62,-213 0,-213"/>
|
||||
<text text-anchor="start" x="35.94" y="-219.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="102.62,-213 102.62,-237 182.25,-237 182.25,-213 102.62,-213"/>
|
||||
<text text-anchor="start" x="138.31" y="-219.7" font-family="arial" font-size="14.00">2</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node5" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="534,-450 327,-450 327,-316 534,-316 534,-450"/>
|
||||
<polygon fill="none" stroke="black" points="327.5,-427 327.5,-450 534.5,-450 534.5,-427 327.5,-427"/>
|
||||
<text text-anchor="start" x="420.5" y="-434.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="327.5,-404 327.5,-427 353.5,-427 353.5,-404 327.5,-404"/>
|
||||
<text text-anchor="start" x="333" y="-411.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="353.5,-404 353.5,-427 488.5,-427 488.5,-404 353.5,-404"/>
|
||||
<text text-anchor="start" x="359" y="-411.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="488.5,-404 488.5,-427 534.5,-427 534.5,-404 488.5,-404"/>
|
||||
<text text-anchor="start" x="493.5" y="-411.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="359.5" y="-390.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="329.5" y="-371.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="398" y="-371.8" font-family="arial" font-size="14.00">     1:BK    </text>
|
||||
<text text-anchor="start" x="468.5" y="-371.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-364 327.5,-366 534.5,-366 534.5,-364 327.5,-364"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-362 327.5,-364 534.5,-364 534.5,-362 327.5,-362"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-360 327.5,-362 534.5,-362 534.5,-360 327.5,-360"/>
|
||||
<text text-anchor="start" x="330" y="-346.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="397.5" y="-346.8" font-family="arial" font-size="14.00">     2:RD    </text>
|
||||
<text text-anchor="start" x="469" y="-346.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-339 327.5,-341 534.5,-341 534.5,-339 327.5,-339"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="327.5,-337 327.5,-339 534.5,-339 534.5,-337 327.5,-337"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-335 327.5,-337 534.5,-337 534.5,-335 327.5,-335"/>
|
||||
<text text-anchor="start" x="359.5" y="-321.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="530.25,-543 326.25,-543 326.25,-402 530.25,-402 530.25,-543"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-402 326.25,-543 530.25,-543 530.25,-402 326.25,-402"/>
|
||||
<polygon fill="none" stroke="black" points="326.25,-518.5 326.25,-543 530.25,-543 530.25,-518.5 326.25,-518.5"/>
|
||||
<text text-anchor="start" x="417" y="-525.7" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="326.25,-494 326.25,-518.5 349.25,-518.5 349.25,-494 326.25,-494"/>
|
||||
<text text-anchor="start" x="330.25" y="-501.2" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="349.25,-494 349.25,-518.5 486.25,-518.5 486.25,-494 349.25,-494"/>
|
||||
<text text-anchor="start" x="353.25" y="-501.2" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="486.25,-494 486.25,-518.5 530.25,-518.5 530.25,-494 486.25,-494"/>
|
||||
<text text-anchor="start" x="490.25" y="-501.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="361.57" y="-478.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="328.25" y="-458.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="402.98" y="-458.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="412.5" y="-458.7" font-family="arial" font-size="14.00">1:BK</text>
|
||||
<text text-anchor="start" x="449.77" y="-458.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="459.25" y="-458.7" font-family="arial" font-size="14.00">X2:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-452 326.25,-454 530.25,-454 530.25,-452 326.25,-452"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-450 326.25,-452 530.25,-452 530.25,-450 326.25,-450"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-448 326.25,-450 530.25,-450 530.25,-448 326.25,-448"/>
|
||||
<text text-anchor="start" x="328.25" y="-432.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="402.98" y="-432.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="411.75" y="-432.7" font-family="arial" font-size="14.00">2:RD</text>
|
||||
<text text-anchor="start" x="449.77" y="-432.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="460" y="-432.7" font-family="arial" font-size="14.00">X2:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-426 326.25,-428 530.25,-428 530.25,-426 326.25,-426"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-424 326.25,-426 530.25,-426 530.25,-424 326.25,-424"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-422 326.25,-424 530.25,-424 530.25,-422 326.25,-422"/>
|
||||
<text text-anchor="start" x="361.57" y="-406.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-202C280.26,-204.56 233.58,-363.56 327,-361"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-204C278.34,-204 231.66,-363 327,-363"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-206C276.42,-203.44 229.74,-362.44 327,-365"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-247C294.37,-249.71 217.87,-451.71 326.25,-449"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-249C292.5,-249 216,-451 326.25,-451"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-251C290.63,-248.29 214.13,-450.29 326.25,-453"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-179C279.6,-181.56 234.24,-338.56 327,-336"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M183,-181C277.68,-181 232.32,-338 327,-338"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-183C275.76,-180.44 230.4,-337.44 327,-340"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-223C293.65,-225.7 218.59,-425.7 326.25,-423"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182.25,-225C291.78,-225 216.72,-425 326.25,-425"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-227C289.91,-224.3 214.85,-424.3 326.25,-427"/>
|
||||
</g>
|
||||
<!-- W2 -->
|
||||
<g id="node6" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>W2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="534,-292 327,-292 327,-158 534,-158 534,-292"/>
|
||||
<polygon fill="none" stroke="black" points="327.5,-269 327.5,-292 534.5,-292 534.5,-269 327.5,-269"/>
|
||||
<text text-anchor="start" x="420.5" y="-276.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="327.5,-246 327.5,-269 353.5,-269 353.5,-246 327.5,-246"/>
|
||||
<text text-anchor="start" x="333" y="-253.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="353.5,-246 353.5,-269 488.5,-269 488.5,-246 353.5,-246"/>
|
||||
<text text-anchor="start" x="359" y="-253.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="488.5,-246 488.5,-269 534.5,-269 534.5,-246 488.5,-246"/>
|
||||
<text text-anchor="start" x="493.5" y="-253.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="359.5" y="-232.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="329.5" y="-213.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="398" y="-213.8" font-family="arial" font-size="14.00">     1:BK    </text>
|
||||
<text text-anchor="start" x="468.5" y="-213.8" font-family="arial" font-size="14.00">X3:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-206 327.5,-208 534.5,-208 534.5,-206 327.5,-206"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-204 327.5,-206 534.5,-206 534.5,-204 327.5,-204"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-202 327.5,-204 534.5,-204 534.5,-202 327.5,-202"/>
|
||||
<text text-anchor="start" x="330" y="-188.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="397.5" y="-188.8" font-family="arial" font-size="14.00">     2:RD    </text>
|
||||
<text text-anchor="start" x="469" y="-188.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-181 327.5,-183 534.5,-183 534.5,-181 327.5,-181"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="327.5,-179 327.5,-181 534.5,-181 534.5,-179 327.5,-179"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-177 327.5,-179 534.5,-179 534.5,-177 327.5,-177"/>
|
||||
<text text-anchor="start" x="359.5" y="-163.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="530.25,-342 326.25,-342 326.25,-201 530.25,-201 530.25,-342"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-201 326.25,-342 530.25,-342 530.25,-201 326.25,-201"/>
|
||||
<polygon fill="none" stroke="black" points="326.25,-317.5 326.25,-342 530.25,-342 530.25,-317.5 326.25,-317.5"/>
|
||||
<text text-anchor="start" x="417" y="-324.7" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="326.25,-293 326.25,-317.5 349.25,-317.5 349.25,-293 326.25,-293"/>
|
||||
<text text-anchor="start" x="330.25" y="-300.2" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="349.25,-293 349.25,-317.5 486.25,-317.5 486.25,-293 349.25,-293"/>
|
||||
<text text-anchor="start" x="353.25" y="-300.2" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="486.25,-293 486.25,-317.5 530.25,-317.5 530.25,-293 486.25,-293"/>
|
||||
<text text-anchor="start" x="490.25" y="-300.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="361.57" y="-277.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="328.25" y="-257.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="402.98" y="-257.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="412.5" y="-257.7" font-family="arial" font-size="14.00">1:BK</text>
|
||||
<text text-anchor="start" x="449.77" y="-257.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="459.25" y="-257.7" font-family="arial" font-size="14.00">X3:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-251 326.25,-253 530.25,-253 530.25,-251 326.25,-251"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-249 326.25,-251 530.25,-251 530.25,-249 326.25,-249"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-247 326.25,-249 530.25,-249 530.25,-247 326.25,-247"/>
|
||||
<text text-anchor="start" x="328.25" y="-231.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="402.98" y="-231.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="411.75" y="-231.7" font-family="arial" font-size="14.00">2:RD</text>
|
||||
<text text-anchor="start" x="449.77" y="-231.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="460" y="-231.7" font-family="arial" font-size="14.00">X3:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-225 326.25,-227 530.25,-227 530.25,-225 326.25,-225"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-223 326.25,-225 530.25,-225 530.25,-223 326.25,-223"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-221 326.25,-223 530.25,-223 530.25,-221 326.25,-221"/>
|
||||
<text text-anchor="start" x="361.57" y="-205.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W2 -->
|
||||
<g id="edge5" class="edge">
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-202C247.13,-202 263.12,-203 327,-203"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-204C247,-204 263,-205 327,-205"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-206C246.88,-206 262.87,-207 327,-207"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-247C246.37,-247 262.37,-248 326.25,-248"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-249C246.25,-249 262.25,-250 326.25,-250"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-251C246.13,-251 262.13,-252 326.25,-252"/>
|
||||
</g>
|
||||
<!-- X1--W2 -->
|
||||
<g id="edge7" class="edge">
|
||||
<g id="edge4" class="edge">
|
||||
<title>X1:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-179C246.88,-179 262.87,-178 327,-178"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M183,-181C247,-181 263,-180 327,-180"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-183C247.13,-183 263.12,-182 327,-182"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-223C246.13,-223 262.13,-222 326.25,-222"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182.25,-225C246.25,-225 262.25,-224 326.25,-224"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-227C246.37,-227 262.37,-226 326.25,-226"/>
|
||||
</g>
|
||||
<!-- W3 -->
|
||||
<g id="node7" class="node">
|
||||
<g id="node4" class="node">
|
||||
<title>W3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="534,-134 327,-134 327,0 534,0 534,-134"/>
|
||||
<polygon fill="none" stroke="black" points="327.5,-111 327.5,-134 534.5,-134 534.5,-111 327.5,-111"/>
|
||||
<text text-anchor="start" x="420.5" y="-118.8" font-family="arial" font-size="14.00">W3</text>
|
||||
<polygon fill="none" stroke="black" points="327.5,-88 327.5,-111 353.5,-111 353.5,-88 327.5,-88"/>
|
||||
<text text-anchor="start" x="333" y="-95.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="353.5,-88 353.5,-111 488.5,-111 488.5,-88 353.5,-88"/>
|
||||
<text text-anchor="start" x="359" y="-95.8" font-family="arial" font-size="14.00">20 AWG (0.75 mm²)</text>
|
||||
<polygon fill="none" stroke="black" points="488.5,-88 488.5,-111 534.5,-111 534.5,-88 488.5,-88"/>
|
||||
<text text-anchor="start" x="493.5" y="-95.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="359.5" y="-74.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="329.5" y="-55.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="398" y="-55.8" font-family="arial" font-size="14.00">     1:BK    </text>
|
||||
<text text-anchor="start" x="468.5" y="-55.8" font-family="arial" font-size="14.00">X4:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-48 327.5,-50 534.5,-50 534.5,-48 327.5,-48"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-46 327.5,-48 534.5,-48 534.5,-46 327.5,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-44 327.5,-46 534.5,-46 534.5,-44 327.5,-44"/>
|
||||
<text text-anchor="start" x="330" y="-30.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="397.5" y="-30.8" font-family="arial" font-size="14.00">     2:RD    </text>
|
||||
<text text-anchor="start" x="469" y="-30.8" font-family="arial" font-size="14.00">X4:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-23 327.5,-25 534.5,-25 534.5,-23 327.5,-23"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="327.5,-21 327.5,-23 534.5,-23 534.5,-21 327.5,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-19 327.5,-21 534.5,-21 534.5,-19 327.5,-19"/>
|
||||
<text text-anchor="start" x="359.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="526.75,-141 329.75,-141 329.75,0 526.75,0 526.75,-141"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="329.75,0 329.75,-141 526.75,-141 526.75,0 329.75,0"/>
|
||||
<polygon fill="none" stroke="black" points="329.75,-116.5 329.75,-141 526.75,-141 526.75,-116.5 329.75,-116.5"/>
|
||||
<text text-anchor="start" x="417" y="-123.7" font-family="arial" font-size="14.00">W3</text>
|
||||
<polygon fill="none" stroke="black" points="329.75,-92 329.75,-116.5 353.67,-116.5 353.67,-92 329.75,-92"/>
|
||||
<text text-anchor="start" x="334.21" y="-99.2" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="353.67,-92 353.67,-116.5 481.83,-116.5 481.83,-92 353.67,-92"/>
|
||||
<text text-anchor="start" x="358.12" y="-99.2" font-family="arial" font-size="14.00">20 awg (0.75 mm²)</text>
|
||||
<polygon fill="none" stroke="black" points="481.83,-92 481.83,-116.5 526.75,-116.5 526.75,-92 481.83,-92"/>
|
||||
<text text-anchor="start" x="486.29" y="-99.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="364.38" y="-76.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="331.75" y="-56.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="404.38" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="412.5" y="-56.7" font-family="arial" font-size="14.00">1:BK</text>
|
||||
<text text-anchor="start" x="448.38" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="455.75" y="-56.7" font-family="arial" font-size="14.00">X4:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="329.75,-50 329.75,-52 526.75,-52 526.75,-50 329.75,-50"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="329.75,-48 329.75,-50 526.75,-50 526.75,-48 329.75,-48"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="329.75,-46 329.75,-48 526.75,-48 526.75,-46 329.75,-46"/>
|
||||
<text text-anchor="start" x="331.75" y="-30.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="404.38" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="411.75" y="-30.7" font-family="arial" font-size="14.00">2:RD</text>
|
||||
<text text-anchor="start" x="448.38" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="456.5" y="-30.7" font-family="arial" font-size="14.00">X4:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="329.75,-24 329.75,-26 526.75,-26 526.75,-24 329.75,-24"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="329.75,-22 329.75,-24 526.75,-24 526.75,-22 329.75,-22"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="329.75,-20 329.75,-22 526.75,-22 526.75,-20 329.75,-20"/>
|
||||
<text text-anchor="start" x="364.38" y="-4.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W3 -->
|
||||
<g id="edge9" class="edge">
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-202C275.76,-204.56 230.4,-47.56 327,-45"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-204C277.68,-204 232.32,-47 327,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-206C279.6,-203.44 234.24,-46.44 327,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-247C290.55,-249.69 216.69,-49.69 328.75,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-249C292.43,-249 218.57,-49 328.75,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-251C294.31,-248.31 220.45,-48.31 328.75,-51"/>
|
||||
</g>
|
||||
<!-- X1--W3 -->
|
||||
<g id="edge11" class="edge">
|
||||
<g id="edge6" class="edge">
|
||||
<title>X1:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-179C276.42,-181.56 229.74,-22.56 327,-20"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M183,-181C278.34,-181 231.66,-22 327,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-183C280.26,-180.44 233.58,-21.44 327,-24"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-223C291.28,-225.7 215.98,-23.7 328.75,-21"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182.25,-225C293.15,-225 217.85,-23 328.75,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-227C295.02,-224.3 219.72,-22.3 328.75,-25"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-453C462.25,-453 394.25,-453 326.25,-453"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-451C462.25,-451 394.25,-451 326.25,-451"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-449C462.25,-449 394.25,-449 326.25,-449"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-427C462.25,-427 394.25,-427 326.25,-427"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-425C462.25,-425 394.25,-425 326.25,-425"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-423C462.25,-423 394.25,-423 326.25,-423"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node5" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="873,-420 678,-420 678,-328 873,-328 873,-420"/>
|
||||
<polygon fill="none" stroke="black" points="678.5,-397 678.5,-420 873.5,-420 873.5,-397 678.5,-397"/>
|
||||
<text text-anchor="start" x="767" y="-404.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-374 678.5,-397 782.5,-397 782.5,-374 678.5,-374"/>
|
||||
<text text-anchor="start" x="682.5" y="-381.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="782.5,-374 782.5,-397 833.5,-397 833.5,-374 782.5,-374"/>
|
||||
<text text-anchor="start" x="786.5" y="-381.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="833.5,-374 833.5,-397 873.5,-397 873.5,-374 833.5,-374"/>
|
||||
<text text-anchor="start" x="837.5" y="-381.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-351 678.5,-374 764.5,-374 764.5,-351 678.5,-351"/>
|
||||
<text text-anchor="start" x="717.5" y="-358.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="764.5,-351 764.5,-374 873.5,-374 873.5,-351 764.5,-351"/>
|
||||
<text text-anchor="start" x="803" y="-358.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-328 678.5,-351 764.5,-351 764.5,-328 678.5,-328"/>
|
||||
<text text-anchor="start" x="717.5" y="-335.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="764.5,-328 764.5,-351 873.5,-351 873.5,-328 764.5,-328"/>
|
||||
<text text-anchor="start" x="804" y="-335.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="869.25,-511 674.25,-511 674.25,-414 869.25,-414 869.25,-511"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="674.25,-414 674.25,-511 869.25,-511 869.25,-414 674.25,-414"/>
|
||||
<polygon fill="none" stroke="black" points="674.25,-486.5 674.25,-511 869.25,-511 869.25,-486.5 674.25,-486.5"/>
|
||||
<text text-anchor="start" x="762.75" y="-493.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-462 674.25,-486.5 778.25,-486.5 778.25,-462 674.25,-462"/>
|
||||
<text text-anchor="start" x="678.25" y="-469.2" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="778.25,-462 778.25,-486.5 829.75,-486.5 829.75,-462 778.25,-462"/>
|
||||
<text text-anchor="start" x="782.25" y="-469.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="829.75,-462 829.75,-486.5 869.25,-486.5 869.25,-462 829.75,-462"/>
|
||||
<text text-anchor="start" x="833.75" y="-469.2" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-438 674.25,-462 760.25,-462 760.25,-438 674.25,-438"/>
|
||||
<text text-anchor="start" x="713.12" y="-444.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-438 760.25,-462 869.25,-462 869.25,-438 760.25,-438"/>
|
||||
<text text-anchor="start" x="799" y="-444.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-414 674.25,-438 760.25,-438 760.25,-414 674.25,-414"/>
|
||||
<text text-anchor="start" x="713.12" y="-420.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-414 760.25,-438 869.25,-438 869.25,-414 760.25,-414"/>
|
||||
<text text-anchor="start" x="799.38" y="-420.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-449C594.13,-449 610.13,-448 674.25,-448"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-451C594.25,-451 610.25,-450 674.25,-450"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-453C594.37,-453 610.37,-452 674.25,-452"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-423C594.37,-423 610.37,-424 674.25,-424"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-425C594.25,-425 610.25,-426 674.25,-426"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-427C594.13,-427 610.13,-428 674.25,-428"/>
|
||||
</g>
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-252C462.25,-252 394.25,-252 326.25,-252"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-250C462.25,-250 394.25,-250 326.25,-250"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-248C462.25,-248 394.25,-248 326.25,-248"/>
|
||||
</g>
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-226C462.25,-226 394.25,-226 326.25,-226"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-224C462.25,-224 394.25,-224 326.25,-224"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-222C462.25,-222 394.25,-222 326.25,-222"/>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node6" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="873,-262 678,-262 678,-170 873,-170 873,-262"/>
|
||||
<polygon fill="none" stroke="black" points="678.5,-239 678.5,-262 873.5,-262 873.5,-239 678.5,-239"/>
|
||||
<text text-anchor="start" x="767" y="-246.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-216 678.5,-239 782.5,-239 782.5,-216 678.5,-216"/>
|
||||
<text text-anchor="start" x="682.5" y="-223.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="782.5,-216 782.5,-239 833.5,-239 833.5,-216 782.5,-216"/>
|
||||
<text text-anchor="start" x="786.5" y="-223.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="833.5,-216 833.5,-239 873.5,-239 873.5,-216 833.5,-216"/>
|
||||
<text text-anchor="start" x="837.5" y="-223.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-193 678.5,-216 764.5,-216 764.5,-193 678.5,-193"/>
|
||||
<text text-anchor="start" x="717.5" y="-200.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="764.5,-193 764.5,-216 873.5,-216 873.5,-193 764.5,-193"/>
|
||||
<text text-anchor="start" x="803" y="-200.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-170 678.5,-193 764.5,-193 764.5,-170 678.5,-170"/>
|
||||
<text text-anchor="start" x="717.5" y="-177.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="764.5,-170 764.5,-193 873.5,-193 873.5,-170 764.5,-170"/>
|
||||
<text text-anchor="start" x="804" y="-177.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="869.25,-310 674.25,-310 674.25,-213 869.25,-213 869.25,-310"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="674.25,-213 674.25,-310 869.25,-310 869.25,-213 674.25,-213"/>
|
||||
<polygon fill="none" stroke="black" points="674.25,-285.5 674.25,-310 869.25,-310 869.25,-285.5 674.25,-285.5"/>
|
||||
<text text-anchor="start" x="762.75" y="-292.7" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-261 674.25,-285.5 778.25,-285.5 778.25,-261 674.25,-261"/>
|
||||
<text text-anchor="start" x="678.25" y="-268.2" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="778.25,-261 778.25,-285.5 829.75,-285.5 829.75,-261 778.25,-261"/>
|
||||
<text text-anchor="start" x="782.25" y="-268.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="829.75,-261 829.75,-285.5 869.25,-285.5 869.25,-261 829.75,-261"/>
|
||||
<text text-anchor="start" x="833.75" y="-268.2" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-237 674.25,-261 760.25,-261 760.25,-237 674.25,-237"/>
|
||||
<text text-anchor="start" x="713.12" y="-243.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-237 760.25,-261 869.25,-261 869.25,-237 760.25,-237"/>
|
||||
<text text-anchor="start" x="799" y="-243.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-213 674.25,-237 760.25,-237 760.25,-213 674.25,-213"/>
|
||||
<text text-anchor="start" x="713.12" y="-219.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-213 760.25,-237 869.25,-237 869.25,-213 760.25,-213"/>
|
||||
<text text-anchor="start" x="799.38" y="-219.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-248C594.13,-248 610.13,-247 674.25,-247"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-250C594.25,-250 610.25,-249 674.25,-249"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-252C594.37,-252 610.37,-251 674.25,-251"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-222C594.37,-222 610.37,-223 674.25,-223"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-224C594.25,-224 610.25,-225 674.25,-225"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-226C594.13,-226 610.13,-227 674.25,-227"/>
|
||||
</g>
|
||||
<!-- W3--W3 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>W3:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526.75,-51C461.08,-51 395.42,-51 329.75,-51"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526.75,-49C461.08,-49 395.42,-49 329.75,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526.75,-47C461.08,-47 395.42,-47 329.75,-47"/>
|
||||
</g>
|
||||
<!-- W3--W3 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W3:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526.75,-25C461.08,-25 395.42,-25 329.75,-25"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M526.75,-23C461.08,-23 395.42,-23 329.75,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526.75,-21C461.08,-21 395.42,-21 329.75,-21"/>
|
||||
</g>
|
||||
<!-- X4 -->
|
||||
<g id="node4" class="node">
|
||||
<g id="node7" class="node">
|
||||
<title>X4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="873,-104 678,-104 678,-12 873,-12 873,-104"/>
|
||||
<polygon fill="none" stroke="black" points="678.5,-81 678.5,-104 873.5,-104 873.5,-81 678.5,-81"/>
|
||||
<text text-anchor="start" x="767" y="-88.8" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-58 678.5,-81 782.5,-81 782.5,-58 678.5,-58"/>
|
||||
<text text-anchor="start" x="682.5" y="-65.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="782.5,-58 782.5,-81 833.5,-81 833.5,-58 782.5,-58"/>
|
||||
<text text-anchor="start" x="786.5" y="-65.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="833.5,-58 833.5,-81 873.5,-81 873.5,-58 833.5,-58"/>
|
||||
<text text-anchor="start" x="837.5" y="-65.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-35 678.5,-58 764.5,-58 764.5,-35 678.5,-35"/>
|
||||
<text text-anchor="start" x="717.5" y="-42.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="764.5,-35 764.5,-58 873.5,-58 873.5,-35 764.5,-35"/>
|
||||
<text text-anchor="start" x="803" y="-42.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-12 678.5,-35 764.5,-35 764.5,-12 678.5,-12"/>
|
||||
<text text-anchor="start" x="717.5" y="-19.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="764.5,-12 764.5,-35 873.5,-35 873.5,-12 764.5,-12"/>
|
||||
<text text-anchor="start" x="804" y="-19.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-361C597.88,-361 613.87,-360 678,-360"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-363C598,-363 614,-362 678,-362"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-365C598.13,-365 614.12,-364 678,-364"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-336C598.13,-336 614.12,-337 678,-337"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M534,-338C598,-338 614,-339 678,-339"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-340C597.88,-340 613.87,-341 678,-341"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-203C597.88,-203 613.87,-202 678,-202"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-205C598,-205 614,-204 678,-204"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-207C598.13,-207 614.12,-206 678,-206"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-178C598.13,-178 614.12,-179 678,-179"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M534,-180C598,-180 614,-181 678,-181"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-182C597.88,-182 613.87,-183 678,-183"/>
|
||||
<polygon fill="#ffffff" stroke="black" points="869.25,-109 674.25,-109 674.25,-12 869.25,-12 869.25,-109"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="674.25,-12 674.25,-109 869.25,-109 869.25,-12 674.25,-12"/>
|
||||
<polygon fill="none" stroke="black" points="674.25,-84.5 674.25,-109 869.25,-109 869.25,-84.5 674.25,-84.5"/>
|
||||
<text text-anchor="start" x="762.75" y="-91.7" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-60 674.25,-84.5 778.25,-84.5 778.25,-60 674.25,-60"/>
|
||||
<text text-anchor="start" x="678.25" y="-67.2" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="778.25,-60 778.25,-84.5 829.75,-84.5 829.75,-60 778.25,-60"/>
|
||||
<text text-anchor="start" x="782.25" y="-67.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="829.75,-60 829.75,-84.5 869.25,-84.5 869.25,-60 829.75,-60"/>
|
||||
<text text-anchor="start" x="833.75" y="-67.2" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-36 674.25,-60 760.25,-60 760.25,-36 674.25,-36"/>
|
||||
<text text-anchor="start" x="713.12" y="-42.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-36 760.25,-60 869.25,-60 869.25,-36 760.25,-36"/>
|
||||
<text text-anchor="start" x="799" y="-42.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-12 674.25,-36 760.25,-36 760.25,-12 674.25,-12"/>
|
||||
<text text-anchor="start" x="713.12" y="-18.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-12 760.25,-36 869.25,-36 869.25,-12 760.25,-12"/>
|
||||
<text text-anchor="start" x="799.38" y="-18.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W3--X4 -->
|
||||
<g id="edge10" class="edge">
|
||||
<g id="edge17" class="edge">
|
||||
<title>W3:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-45C597.88,-45 613.87,-44 678,-44"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-47C598,-47 614,-46 678,-46"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-49C598.13,-49 614.12,-48 678,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527.75,-47C592.74,-47 609.02,-46 674.25,-46"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527.75,-49C592.86,-49 609.14,-48 674.25,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527.75,-51C592.98,-51 609.26,-50 674.25,-50"/>
|
||||
</g>
|
||||
<!-- W3--X4 -->
|
||||
<g id="edge12" class="edge">
|
||||
<g id="edge18" class="edge">
|
||||
<title>W3:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-20C598.13,-20 614.12,-21 678,-21"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M534,-22C598,-22 614,-23 678,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-24C597.88,-24 613.87,-25 678,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527.75,-21C592.98,-21 609.26,-22 674.25,-22"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M527.75,-23C592.86,-23 609.14,-24 674.25,-24"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527.75,-25C592.74,-25 609.02,-26 674.25,-26"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
@ -300,40 +361,40 @@
|
||||
<div id="bom">
|
||||
<table class="bom">
|
||||
<tr>
|
||||
<th class="bom_col_id">Id</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_#">#</th>
|
||||
<th class="bom_col_qty">Qty</th>
|
||||
<th class="bom_col_unit">Unit</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_designators">Designators</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">1</td>
|
||||
<td class="bom_col_description">Cable, 2 x 0.25 mm²</td>
|
||||
<td class="bom_col_qty">0.4</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W1, W2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">2</td>
|
||||
<td class="bom_col_description">Cable, 2 x 20 AWG</td>
|
||||
<td class="bom_col_qty">0.2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">3</td>
|
||||
<td class="bom_col_description">Connector, Molex Micro-Fit, female, 2 pins</td>
|
||||
<td class="bom_col_#">1</td>
|
||||
<td class="bom_col_qty">3</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, Molex Micro-Fit, female, 2 pins</td>
|
||||
<td class="bom_col_designators">X2, X3, X4</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">4</td>
|
||||
<td class="bom_col_description">Connector, Molex Micro-Fit, male, 2 pins</td>
|
||||
<td class="bom_col_#">2</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, Molex Micro-Fit, male, 2 pins</td>
|
||||
<td class="bom_col_designators">X1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_#">3</td>
|
||||
<td class="bom_col_qty">2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Cable, 2 x 0.25 mm²</td>
|
||||
<td class="bom_col_designators">W1, W2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_#">4</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Cable, 2 x 20 awg</td>
|
||||
<td class="bom_col_designators">W3</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
BIN
examples/ex02.png
generated
|
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 68 KiB |
475
examples/ex02.svg
generated
@ -1,261 +1,322 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="881pt" height="458pt"
|
||||
viewBox="0.00 0.00 881.00 458.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 454)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-454 877,-454 877,4 -4,4"/>
|
||||
<svg width="877pt" height="551pt"
|
||||
viewBox="0.00 0.00 877.25 551.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 547)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-547 873.25,-547 873.25,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="183,-262 0,-262 0,-170 183,-170 183,-262"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-239 0.5,-262 183.5,-262 183.5,-239 0.5,-239"/>
|
||||
<text text-anchor="start" x="83" y="-246.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-216 0.5,-239 104.5,-239 104.5,-216 0.5,-216"/>
|
||||
<text text-anchor="start" x="4.5" y="-223.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="104.5,-216 104.5,-239 143.5,-239 143.5,-216 104.5,-216"/>
|
||||
<text text-anchor="start" x="108.5" y="-223.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="143.5,-216 143.5,-239 183.5,-239 183.5,-216 143.5,-216"/>
|
||||
<text text-anchor="start" x="147.5" y="-223.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-193 0.5,-216 104.5,-216 104.5,-193 0.5,-193"/>
|
||||
<text text-anchor="start" x="36.5" y="-200.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="104.5,-193 104.5,-216 183.5,-216 183.5,-193 104.5,-193"/>
|
||||
<text text-anchor="start" x="140" y="-200.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-170 0.5,-193 104.5,-193 104.5,-170 0.5,-170"/>
|
||||
<text text-anchor="start" x="37.5" y="-177.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="104.5,-170 104.5,-193 183.5,-193 183.5,-170 104.5,-170"/>
|
||||
<text text-anchor="start" x="140" y="-177.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="182.25,-310 0,-310 0,-213 182.25,-213 182.25,-310"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-213 0,-310 182.25,-310 182.25,-213 0,-213"/>
|
||||
<polygon fill="none" stroke="black" points="0,-285.5 0,-310 182.25,-310 182.25,-285.5 0,-285.5"/>
|
||||
<text text-anchor="start" x="82.12" y="-292.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-261 0,-285.5 104,-285.5 104,-261 0,-261"/>
|
||||
<text text-anchor="start" x="4" y="-268.2" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="104,-261 104,-285.5 142.75,-285.5 142.75,-261 104,-261"/>
|
||||
<text text-anchor="start" x="108" y="-268.2" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="142.75,-261 142.75,-285.5 182.25,-285.5 182.25,-261 142.75,-261"/>
|
||||
<text text-anchor="start" x="146.75" y="-268.2" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-237 0,-261 102.62,-261 102.62,-237 0,-237"/>
|
||||
<text text-anchor="start" x="35.56" y="-243.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="102.62,-237 102.62,-261 182.25,-261 182.25,-237 102.62,-237"/>
|
||||
<text text-anchor="start" x="138.31" y="-243.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-213 0,-237 102.62,-237 102.62,-213 0,-213"/>
|
||||
<text text-anchor="start" x="35.94" y="-219.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="102.62,-213 102.62,-237 182.25,-237 182.25,-213 102.62,-213"/>
|
||||
<text text-anchor="start" x="138.31" y="-219.7" font-family="arial" font-size="14.00">2</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node5" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="534,-450 327,-450 327,-316 534,-316 534,-450"/>
|
||||
<polygon fill="none" stroke="black" points="327.5,-427 327.5,-450 534.5,-450 534.5,-427 327.5,-427"/>
|
||||
<text text-anchor="start" x="420.5" y="-434.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="327.5,-404 327.5,-427 353.5,-427 353.5,-404 327.5,-404"/>
|
||||
<text text-anchor="start" x="333" y="-411.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="353.5,-404 353.5,-427 488.5,-427 488.5,-404 353.5,-404"/>
|
||||
<text text-anchor="start" x="359" y="-411.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="488.5,-404 488.5,-427 534.5,-427 534.5,-404 488.5,-404"/>
|
||||
<text text-anchor="start" x="493.5" y="-411.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="359.5" y="-390.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="329.5" y="-371.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="398" y="-371.8" font-family="arial" font-size="14.00">     1:BK    </text>
|
||||
<text text-anchor="start" x="468.5" y="-371.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-364 327.5,-366 534.5,-366 534.5,-364 327.5,-364"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-362 327.5,-364 534.5,-364 534.5,-362 327.5,-362"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-360 327.5,-362 534.5,-362 534.5,-360 327.5,-360"/>
|
||||
<text text-anchor="start" x="330" y="-346.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="397.5" y="-346.8" font-family="arial" font-size="14.00">     2:RD    </text>
|
||||
<text text-anchor="start" x="469" y="-346.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-339 327.5,-341 534.5,-341 534.5,-339 327.5,-339"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="327.5,-337 327.5,-339 534.5,-339 534.5,-337 327.5,-337"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-335 327.5,-337 534.5,-337 534.5,-335 327.5,-335"/>
|
||||
<text text-anchor="start" x="359.5" y="-321.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="530.25,-543 326.25,-543 326.25,-402 530.25,-402 530.25,-543"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-402 326.25,-543 530.25,-543 530.25,-402 326.25,-402"/>
|
||||
<polygon fill="none" stroke="black" points="326.25,-518.5 326.25,-543 530.25,-543 530.25,-518.5 326.25,-518.5"/>
|
||||
<text text-anchor="start" x="417" y="-525.7" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="326.25,-494 326.25,-518.5 349.25,-518.5 349.25,-494 326.25,-494"/>
|
||||
<text text-anchor="start" x="330.25" y="-501.2" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="349.25,-494 349.25,-518.5 486.25,-518.5 486.25,-494 349.25,-494"/>
|
||||
<text text-anchor="start" x="353.25" y="-501.2" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="486.25,-494 486.25,-518.5 530.25,-518.5 530.25,-494 486.25,-494"/>
|
||||
<text text-anchor="start" x="490.25" y="-501.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="361.57" y="-478.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="328.25" y="-458.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="402.98" y="-458.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="412.5" y="-458.7" font-family="arial" font-size="14.00">1:BK</text>
|
||||
<text text-anchor="start" x="449.77" y="-458.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="459.25" y="-458.7" font-family="arial" font-size="14.00">X2:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-452 326.25,-454 530.25,-454 530.25,-452 326.25,-452"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-450 326.25,-452 530.25,-452 530.25,-450 326.25,-450"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-448 326.25,-450 530.25,-450 530.25,-448 326.25,-448"/>
|
||||
<text text-anchor="start" x="328.25" y="-432.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="402.98" y="-432.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="411.75" y="-432.7" font-family="arial" font-size="14.00">2:RD</text>
|
||||
<text text-anchor="start" x="449.77" y="-432.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="460" y="-432.7" font-family="arial" font-size="14.00">X2:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-426 326.25,-428 530.25,-428 530.25,-426 326.25,-426"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-424 326.25,-426 530.25,-426 530.25,-424 326.25,-424"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-422 326.25,-424 530.25,-424 530.25,-422 326.25,-422"/>
|
||||
<text text-anchor="start" x="361.57" y="-406.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-202C280.26,-204.56 233.58,-363.56 327,-361"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-204C278.34,-204 231.66,-363 327,-363"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-206C276.42,-203.44 229.74,-362.44 327,-365"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-247C294.37,-249.71 217.87,-451.71 326.25,-449"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-249C292.5,-249 216,-451 326.25,-451"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-251C290.63,-248.29 214.13,-450.29 326.25,-453"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-179C279.6,-181.56 234.24,-338.56 327,-336"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M183,-181C277.68,-181 232.32,-338 327,-338"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-183C275.76,-180.44 230.4,-337.44 327,-340"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-223C293.65,-225.7 218.59,-425.7 326.25,-423"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182.25,-225C291.78,-225 216.72,-425 326.25,-425"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-227C289.91,-224.3 214.85,-424.3 326.25,-427"/>
|
||||
</g>
|
||||
<!-- W2 -->
|
||||
<g id="node6" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>W2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="534,-292 327,-292 327,-158 534,-158 534,-292"/>
|
||||
<polygon fill="none" stroke="black" points="327.5,-269 327.5,-292 534.5,-292 534.5,-269 327.5,-269"/>
|
||||
<text text-anchor="start" x="420.5" y="-276.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="327.5,-246 327.5,-269 353.5,-269 353.5,-246 327.5,-246"/>
|
||||
<text text-anchor="start" x="333" y="-253.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="353.5,-246 353.5,-269 488.5,-269 488.5,-246 353.5,-246"/>
|
||||
<text text-anchor="start" x="359" y="-253.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="488.5,-246 488.5,-269 534.5,-269 534.5,-246 488.5,-246"/>
|
||||
<text text-anchor="start" x="493.5" y="-253.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="359.5" y="-232.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="329.5" y="-213.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="398" y="-213.8" font-family="arial" font-size="14.00">     1:BK    </text>
|
||||
<text text-anchor="start" x="468.5" y="-213.8" font-family="arial" font-size="14.00">X3:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-206 327.5,-208 534.5,-208 534.5,-206 327.5,-206"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-204 327.5,-206 534.5,-206 534.5,-204 327.5,-204"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-202 327.5,-204 534.5,-204 534.5,-202 327.5,-202"/>
|
||||
<text text-anchor="start" x="330" y="-188.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="397.5" y="-188.8" font-family="arial" font-size="14.00">     2:RD    </text>
|
||||
<text text-anchor="start" x="469" y="-188.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-181 327.5,-183 534.5,-183 534.5,-181 327.5,-181"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="327.5,-179 327.5,-181 534.5,-181 534.5,-179 327.5,-179"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-177 327.5,-179 534.5,-179 534.5,-177 327.5,-177"/>
|
||||
<text text-anchor="start" x="359.5" y="-163.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="530.25,-342 326.25,-342 326.25,-201 530.25,-201 530.25,-342"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-201 326.25,-342 530.25,-342 530.25,-201 326.25,-201"/>
|
||||
<polygon fill="none" stroke="black" points="326.25,-317.5 326.25,-342 530.25,-342 530.25,-317.5 326.25,-317.5"/>
|
||||
<text text-anchor="start" x="417" y="-324.7" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="326.25,-293 326.25,-317.5 349.25,-317.5 349.25,-293 326.25,-293"/>
|
||||
<text text-anchor="start" x="330.25" y="-300.2" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="349.25,-293 349.25,-317.5 486.25,-317.5 486.25,-293 349.25,-293"/>
|
||||
<text text-anchor="start" x="353.25" y="-300.2" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="486.25,-293 486.25,-317.5 530.25,-317.5 530.25,-293 486.25,-293"/>
|
||||
<text text-anchor="start" x="490.25" y="-300.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="361.57" y="-277.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="328.25" y="-257.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="402.98" y="-257.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="412.5" y="-257.7" font-family="arial" font-size="14.00">1:BK</text>
|
||||
<text text-anchor="start" x="449.77" y="-257.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="459.25" y="-257.7" font-family="arial" font-size="14.00">X3:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-251 326.25,-253 530.25,-253 530.25,-251 326.25,-251"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-249 326.25,-251 530.25,-251 530.25,-249 326.25,-249"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-247 326.25,-249 530.25,-249 530.25,-247 326.25,-247"/>
|
||||
<text text-anchor="start" x="328.25" y="-231.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="402.98" y="-231.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="411.75" y="-231.7" font-family="arial" font-size="14.00">2:RD</text>
|
||||
<text text-anchor="start" x="449.77" y="-231.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="460" y="-231.7" font-family="arial" font-size="14.00">X3:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-225 326.25,-227 530.25,-227 530.25,-225 326.25,-225"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-223 326.25,-225 530.25,-225 530.25,-223 326.25,-223"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-221 326.25,-223 530.25,-223 530.25,-221 326.25,-221"/>
|
||||
<text text-anchor="start" x="361.57" y="-205.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W2 -->
|
||||
<g id="edge5" class="edge">
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-202C247.13,-202 263.12,-203 327,-203"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-204C247,-204 263,-205 327,-205"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-206C246.88,-206 262.87,-207 327,-207"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-247C246.37,-247 262.37,-248 326.25,-248"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-249C246.25,-249 262.25,-250 326.25,-250"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-251C246.13,-251 262.13,-252 326.25,-252"/>
|
||||
</g>
|
||||
<!-- X1--W2 -->
|
||||
<g id="edge7" class="edge">
|
||||
<g id="edge4" class="edge">
|
||||
<title>X1:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-179C246.88,-179 262.87,-178 327,-178"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M183,-181C247,-181 263,-180 327,-180"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-183C247.13,-183 263.12,-182 327,-182"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-223C246.13,-223 262.13,-222 326.25,-222"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182.25,-225C246.25,-225 262.25,-224 326.25,-224"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-227C246.37,-227 262.37,-226 326.25,-226"/>
|
||||
</g>
|
||||
<!-- W3 -->
|
||||
<g id="node7" class="node">
|
||||
<g id="node4" class="node">
|
||||
<title>W3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="534,-134 327,-134 327,0 534,0 534,-134"/>
|
||||
<polygon fill="none" stroke="black" points="327.5,-111 327.5,-134 534.5,-134 534.5,-111 327.5,-111"/>
|
||||
<text text-anchor="start" x="420.5" y="-118.8" font-family="arial" font-size="14.00">W3</text>
|
||||
<polygon fill="none" stroke="black" points="327.5,-88 327.5,-111 353.5,-111 353.5,-88 327.5,-88"/>
|
||||
<text text-anchor="start" x="333" y="-95.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="353.5,-88 353.5,-111 488.5,-111 488.5,-88 353.5,-88"/>
|
||||
<text text-anchor="start" x="359" y="-95.8" font-family="arial" font-size="14.00">20 AWG (0.75 mm²)</text>
|
||||
<polygon fill="none" stroke="black" points="488.5,-88 488.5,-111 534.5,-111 534.5,-88 488.5,-88"/>
|
||||
<text text-anchor="start" x="493.5" y="-95.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="359.5" y="-74.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="329.5" y="-55.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="398" y="-55.8" font-family="arial" font-size="14.00">     1:BK    </text>
|
||||
<text text-anchor="start" x="468.5" y="-55.8" font-family="arial" font-size="14.00">X4:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-48 327.5,-50 534.5,-50 534.5,-48 327.5,-48"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-46 327.5,-48 534.5,-48 534.5,-46 327.5,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-44 327.5,-46 534.5,-46 534.5,-44 327.5,-44"/>
|
||||
<text text-anchor="start" x="330" y="-30.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="397.5" y="-30.8" font-family="arial" font-size="14.00">     2:RD    </text>
|
||||
<text text-anchor="start" x="469" y="-30.8" font-family="arial" font-size="14.00">X4:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-23 327.5,-25 534.5,-25 534.5,-23 327.5,-23"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="327.5,-21 327.5,-23 534.5,-23 534.5,-21 327.5,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-19 327.5,-21 534.5,-21 534.5,-19 327.5,-19"/>
|
||||
<text text-anchor="start" x="359.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="526.75,-141 329.75,-141 329.75,0 526.75,0 526.75,-141"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="329.75,0 329.75,-141 526.75,-141 526.75,0 329.75,0"/>
|
||||
<polygon fill="none" stroke="black" points="329.75,-116.5 329.75,-141 526.75,-141 526.75,-116.5 329.75,-116.5"/>
|
||||
<text text-anchor="start" x="417" y="-123.7" font-family="arial" font-size="14.00">W3</text>
|
||||
<polygon fill="none" stroke="black" points="329.75,-92 329.75,-116.5 353.67,-116.5 353.67,-92 329.75,-92"/>
|
||||
<text text-anchor="start" x="334.21" y="-99.2" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="353.67,-92 353.67,-116.5 481.83,-116.5 481.83,-92 353.67,-92"/>
|
||||
<text text-anchor="start" x="358.12" y="-99.2" font-family="arial" font-size="14.00">20 awg (0.75 mm²)</text>
|
||||
<polygon fill="none" stroke="black" points="481.83,-92 481.83,-116.5 526.75,-116.5 526.75,-92 481.83,-92"/>
|
||||
<text text-anchor="start" x="486.29" y="-99.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="364.38" y="-76.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="331.75" y="-56.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="404.38" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="412.5" y="-56.7" font-family="arial" font-size="14.00">1:BK</text>
|
||||
<text text-anchor="start" x="448.38" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="455.75" y="-56.7" font-family="arial" font-size="14.00">X4:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="329.75,-50 329.75,-52 526.75,-52 526.75,-50 329.75,-50"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="329.75,-48 329.75,-50 526.75,-50 526.75,-48 329.75,-48"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="329.75,-46 329.75,-48 526.75,-48 526.75,-46 329.75,-46"/>
|
||||
<text text-anchor="start" x="331.75" y="-30.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="404.38" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="411.75" y="-30.7" font-family="arial" font-size="14.00">2:RD</text>
|
||||
<text text-anchor="start" x="448.38" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="456.5" y="-30.7" font-family="arial" font-size="14.00">X4:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="329.75,-24 329.75,-26 526.75,-26 526.75,-24 329.75,-24"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="329.75,-22 329.75,-24 526.75,-24 526.75,-22 329.75,-22"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="329.75,-20 329.75,-22 526.75,-22 526.75,-20 329.75,-20"/>
|
||||
<text text-anchor="start" x="364.38" y="-4.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W3 -->
|
||||
<g id="edge9" class="edge">
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-202C275.76,-204.56 230.4,-47.56 327,-45"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-204C277.68,-204 232.32,-47 327,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-206C279.6,-203.44 234.24,-46.44 327,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-247C290.55,-249.69 216.69,-49.69 328.75,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-249C292.43,-249 218.57,-49 328.75,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-251C294.31,-248.31 220.45,-48.31 328.75,-51"/>
|
||||
</g>
|
||||
<!-- X1--W3 -->
|
||||
<g id="edge11" class="edge">
|
||||
<g id="edge6" class="edge">
|
||||
<title>X1:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-179C276.42,-181.56 229.74,-22.56 327,-20"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M183,-181C278.34,-181 231.66,-22 327,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-183C280.26,-180.44 233.58,-21.44 327,-24"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-223C291.28,-225.7 215.98,-23.7 328.75,-21"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182.25,-225C293.15,-225 217.85,-23 328.75,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-227C295.02,-224.3 219.72,-22.3 328.75,-25"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-453C462.25,-453 394.25,-453 326.25,-453"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-451C462.25,-451 394.25,-451 326.25,-451"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-449C462.25,-449 394.25,-449 326.25,-449"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-427C462.25,-427 394.25,-427 326.25,-427"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-425C462.25,-425 394.25,-425 326.25,-425"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-423C462.25,-423 394.25,-423 326.25,-423"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node5" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="873,-420 678,-420 678,-328 873,-328 873,-420"/>
|
||||
<polygon fill="none" stroke="black" points="678.5,-397 678.5,-420 873.5,-420 873.5,-397 678.5,-397"/>
|
||||
<text text-anchor="start" x="767" y="-404.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-374 678.5,-397 782.5,-397 782.5,-374 678.5,-374"/>
|
||||
<text text-anchor="start" x="682.5" y="-381.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="782.5,-374 782.5,-397 833.5,-397 833.5,-374 782.5,-374"/>
|
||||
<text text-anchor="start" x="786.5" y="-381.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="833.5,-374 833.5,-397 873.5,-397 873.5,-374 833.5,-374"/>
|
||||
<text text-anchor="start" x="837.5" y="-381.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-351 678.5,-374 764.5,-374 764.5,-351 678.5,-351"/>
|
||||
<text text-anchor="start" x="717.5" y="-358.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="764.5,-351 764.5,-374 873.5,-374 873.5,-351 764.5,-351"/>
|
||||
<text text-anchor="start" x="803" y="-358.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-328 678.5,-351 764.5,-351 764.5,-328 678.5,-328"/>
|
||||
<text text-anchor="start" x="717.5" y="-335.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="764.5,-328 764.5,-351 873.5,-351 873.5,-328 764.5,-328"/>
|
||||
<text text-anchor="start" x="804" y="-335.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="869.25,-511 674.25,-511 674.25,-414 869.25,-414 869.25,-511"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="674.25,-414 674.25,-511 869.25,-511 869.25,-414 674.25,-414"/>
|
||||
<polygon fill="none" stroke="black" points="674.25,-486.5 674.25,-511 869.25,-511 869.25,-486.5 674.25,-486.5"/>
|
||||
<text text-anchor="start" x="762.75" y="-493.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-462 674.25,-486.5 778.25,-486.5 778.25,-462 674.25,-462"/>
|
||||
<text text-anchor="start" x="678.25" y="-469.2" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="778.25,-462 778.25,-486.5 829.75,-486.5 829.75,-462 778.25,-462"/>
|
||||
<text text-anchor="start" x="782.25" y="-469.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="829.75,-462 829.75,-486.5 869.25,-486.5 869.25,-462 829.75,-462"/>
|
||||
<text text-anchor="start" x="833.75" y="-469.2" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-438 674.25,-462 760.25,-462 760.25,-438 674.25,-438"/>
|
||||
<text text-anchor="start" x="713.12" y="-444.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-438 760.25,-462 869.25,-462 869.25,-438 760.25,-438"/>
|
||||
<text text-anchor="start" x="799" y="-444.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-414 674.25,-438 760.25,-438 760.25,-414 674.25,-414"/>
|
||||
<text text-anchor="start" x="713.12" y="-420.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-414 760.25,-438 869.25,-438 869.25,-414 760.25,-414"/>
|
||||
<text text-anchor="start" x="799.38" y="-420.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-449C594.13,-449 610.13,-448 674.25,-448"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-451C594.25,-451 610.25,-450 674.25,-450"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-453C594.37,-453 610.37,-452 674.25,-452"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-423C594.37,-423 610.37,-424 674.25,-424"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-425C594.25,-425 610.25,-426 674.25,-426"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-427C594.13,-427 610.13,-428 674.25,-428"/>
|
||||
</g>
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-252C462.25,-252 394.25,-252 326.25,-252"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-250C462.25,-250 394.25,-250 326.25,-250"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-248C462.25,-248 394.25,-248 326.25,-248"/>
|
||||
</g>
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-226C462.25,-226 394.25,-226 326.25,-226"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-224C462.25,-224 394.25,-224 326.25,-224"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-222C462.25,-222 394.25,-222 326.25,-222"/>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node6" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="873,-262 678,-262 678,-170 873,-170 873,-262"/>
|
||||
<polygon fill="none" stroke="black" points="678.5,-239 678.5,-262 873.5,-262 873.5,-239 678.5,-239"/>
|
||||
<text text-anchor="start" x="767" y="-246.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-216 678.5,-239 782.5,-239 782.5,-216 678.5,-216"/>
|
||||
<text text-anchor="start" x="682.5" y="-223.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="782.5,-216 782.5,-239 833.5,-239 833.5,-216 782.5,-216"/>
|
||||
<text text-anchor="start" x="786.5" y="-223.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="833.5,-216 833.5,-239 873.5,-239 873.5,-216 833.5,-216"/>
|
||||
<text text-anchor="start" x="837.5" y="-223.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-193 678.5,-216 764.5,-216 764.5,-193 678.5,-193"/>
|
||||
<text text-anchor="start" x="717.5" y="-200.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="764.5,-193 764.5,-216 873.5,-216 873.5,-193 764.5,-193"/>
|
||||
<text text-anchor="start" x="803" y="-200.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-170 678.5,-193 764.5,-193 764.5,-170 678.5,-170"/>
|
||||
<text text-anchor="start" x="717.5" y="-177.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="764.5,-170 764.5,-193 873.5,-193 873.5,-170 764.5,-170"/>
|
||||
<text text-anchor="start" x="804" y="-177.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="869.25,-310 674.25,-310 674.25,-213 869.25,-213 869.25,-310"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="674.25,-213 674.25,-310 869.25,-310 869.25,-213 674.25,-213"/>
|
||||
<polygon fill="none" stroke="black" points="674.25,-285.5 674.25,-310 869.25,-310 869.25,-285.5 674.25,-285.5"/>
|
||||
<text text-anchor="start" x="762.75" y="-292.7" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-261 674.25,-285.5 778.25,-285.5 778.25,-261 674.25,-261"/>
|
||||
<text text-anchor="start" x="678.25" y="-268.2" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="778.25,-261 778.25,-285.5 829.75,-285.5 829.75,-261 778.25,-261"/>
|
||||
<text text-anchor="start" x="782.25" y="-268.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="829.75,-261 829.75,-285.5 869.25,-285.5 869.25,-261 829.75,-261"/>
|
||||
<text text-anchor="start" x="833.75" y="-268.2" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-237 674.25,-261 760.25,-261 760.25,-237 674.25,-237"/>
|
||||
<text text-anchor="start" x="713.12" y="-243.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-237 760.25,-261 869.25,-261 869.25,-237 760.25,-237"/>
|
||||
<text text-anchor="start" x="799" y="-243.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-213 674.25,-237 760.25,-237 760.25,-213 674.25,-213"/>
|
||||
<text text-anchor="start" x="713.12" y="-219.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-213 760.25,-237 869.25,-237 869.25,-213 760.25,-213"/>
|
||||
<text text-anchor="start" x="799.38" y="-219.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-248C594.13,-248 610.13,-247 674.25,-247"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-250C594.25,-250 610.25,-249 674.25,-249"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-252C594.37,-252 610.37,-251 674.25,-251"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-222C594.37,-222 610.37,-223 674.25,-223"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-224C594.25,-224 610.25,-225 674.25,-225"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-226C594.13,-226 610.13,-227 674.25,-227"/>
|
||||
</g>
|
||||
<!-- W3--W3 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>W3:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526.75,-51C461.08,-51 395.42,-51 329.75,-51"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526.75,-49C461.08,-49 395.42,-49 329.75,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526.75,-47C461.08,-47 395.42,-47 329.75,-47"/>
|
||||
</g>
|
||||
<!-- W3--W3 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W3:e--W3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526.75,-25C461.08,-25 395.42,-25 329.75,-25"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M526.75,-23C461.08,-23 395.42,-23 329.75,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526.75,-21C461.08,-21 395.42,-21 329.75,-21"/>
|
||||
</g>
|
||||
<!-- X4 -->
|
||||
<g id="node4" class="node">
|
||||
<g id="node7" class="node">
|
||||
<title>X4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="873,-104 678,-104 678,-12 873,-12 873,-104"/>
|
||||
<polygon fill="none" stroke="black" points="678.5,-81 678.5,-104 873.5,-104 873.5,-81 678.5,-81"/>
|
||||
<text text-anchor="start" x="767" y="-88.8" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-58 678.5,-81 782.5,-81 782.5,-58 678.5,-58"/>
|
||||
<text text-anchor="start" x="682.5" y="-65.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="782.5,-58 782.5,-81 833.5,-81 833.5,-58 782.5,-58"/>
|
||||
<text text-anchor="start" x="786.5" y="-65.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="833.5,-58 833.5,-81 873.5,-81 873.5,-58 833.5,-58"/>
|
||||
<text text-anchor="start" x="837.5" y="-65.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-35 678.5,-58 764.5,-58 764.5,-35 678.5,-35"/>
|
||||
<text text-anchor="start" x="717.5" y="-42.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="764.5,-35 764.5,-58 873.5,-58 873.5,-35 764.5,-35"/>
|
||||
<text text-anchor="start" x="803" y="-42.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="678.5,-12 678.5,-35 764.5,-35 764.5,-12 678.5,-12"/>
|
||||
<text text-anchor="start" x="717.5" y="-19.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="764.5,-12 764.5,-35 873.5,-35 873.5,-12 764.5,-12"/>
|
||||
<text text-anchor="start" x="804" y="-19.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-361C597.88,-361 613.87,-360 678,-360"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-363C598,-363 614,-362 678,-362"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-365C598.13,-365 614.12,-364 678,-364"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-336C598.13,-336 614.12,-337 678,-337"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M534,-338C598,-338 614,-339 678,-339"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-340C597.88,-340 613.87,-341 678,-341"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-203C597.88,-203 613.87,-202 678,-202"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-205C598,-205 614,-204 678,-204"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-207C598.13,-207 614.12,-206 678,-206"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-178C598.13,-178 614.12,-179 678,-179"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M534,-180C598,-180 614,-181 678,-181"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-182C597.88,-182 613.87,-183 678,-183"/>
|
||||
<polygon fill="#ffffff" stroke="black" points="869.25,-109 674.25,-109 674.25,-12 869.25,-12 869.25,-109"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="674.25,-12 674.25,-109 869.25,-109 869.25,-12 674.25,-12"/>
|
||||
<polygon fill="none" stroke="black" points="674.25,-84.5 674.25,-109 869.25,-109 869.25,-84.5 674.25,-84.5"/>
|
||||
<text text-anchor="start" x="762.75" y="-91.7" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-60 674.25,-84.5 778.25,-84.5 778.25,-60 674.25,-60"/>
|
||||
<text text-anchor="start" x="678.25" y="-67.2" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="778.25,-60 778.25,-84.5 829.75,-84.5 829.75,-60 778.25,-60"/>
|
||||
<text text-anchor="start" x="782.25" y="-67.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="829.75,-60 829.75,-84.5 869.25,-84.5 869.25,-60 829.75,-60"/>
|
||||
<text text-anchor="start" x="833.75" y="-67.2" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-36 674.25,-60 760.25,-60 760.25,-36 674.25,-36"/>
|
||||
<text text-anchor="start" x="713.12" y="-42.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-36 760.25,-60 869.25,-60 869.25,-36 760.25,-36"/>
|
||||
<text text-anchor="start" x="799" y="-42.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-12 674.25,-36 760.25,-36 760.25,-12 674.25,-12"/>
|
||||
<text text-anchor="start" x="713.12" y="-18.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-12 760.25,-36 869.25,-36 869.25,-12 760.25,-12"/>
|
||||
<text text-anchor="start" x="799.38" y="-18.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W3--X4 -->
|
||||
<g id="edge10" class="edge">
|
||||
<g id="edge17" class="edge">
|
||||
<title>W3:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-45C597.88,-45 613.87,-44 678,-44"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-47C598,-47 614,-46 678,-46"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-49C598.13,-49 614.12,-48 678,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527.75,-47C592.74,-47 609.02,-46 674.25,-46"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527.75,-49C592.86,-49 609.14,-48 674.25,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527.75,-51C592.98,-51 609.26,-50 674.25,-50"/>
|
||||
</g>
|
||||
<!-- W3--X4 -->
|
||||
<g id="edge12" class="edge">
|
||||
<g id="edge18" class="edge">
|
||||
<title>W3:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-20C598.13,-20 614.12,-21 678,-21"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M534,-22C598,-22 614,-23 678,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M534,-24C597.88,-24 613.87,-25 678,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527.75,-21C592.98,-21 609.26,-22 674.25,-22"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M527.75,-23C592.86,-23 609.14,-24 674.25,-24"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527.75,-25C592.74,-25 609.02,-26 674.25,-26"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 24 KiB |
5
examples/ex02.tsv
generated
Normal file
@ -0,0 +1,5 @@
|
||||
# Qty Unit Description Designators
|
||||
1 3 Connector, Molex Micro-Fit, female, 2 pins X2, X3, X4
|
||||
2 1 Connector, Molex Micro-Fit, male, 2 pins X1
|
||||
3 2 m Cable, 2 x 0.25 mm² W1, W2
|
||||
4 1 m Cable, 2 x 20 awg W3
|
||||
|
64
examples/ex02_wv_gvpr.gvpr
Normal file
@ -0,0 +1,64 @@
|
||||
/*******************************************************************
|
||||
|
||||
see https://forum.graphviz.org/t/straitening-one-line-throu-a-table/2196 and https://forum.graphviz.org/t/way-of-drawing-a-black-circle-inside-a-table-field/2273/12
|
||||
input must include pos values (must be output from one of the engines w/ -Tdot)#
|
||||
Thanks to steveroush and FeRDNYC
|
||||
|
||||
*******************************************************************/
|
||||
BEG_G{
|
||||
double x1,y1,x2,y2,x3,y3,x4,y4;
|
||||
string ptSize, tok[int], pt[];
|
||||
int cnt, circ, i;
|
||||
node_t aNode;
|
||||
|
||||
circ=0;
|
||||
|
||||
/***************************************
|
||||
$G.bb="";
|
||||
$G.nodesep="";
|
||||
$G.ranksep="";
|
||||
$G.splines="true";
|
||||
****************************************/
|
||||
}
|
||||
|
||||
// This removes the label text but keeps the position
|
||||
E[noLabel] {
|
||||
$.label=""; // remove pesky label
|
||||
// $.lp=""; // remove peskier label pos
|
||||
}
|
||||
|
||||
E[straight] {
|
||||
cnt=tokens($.pos,tok," ");
|
||||
$.oldpos=$.pos;
|
||||
x1 = xOf(tok[0]);
|
||||
y1 = yOf(tok[0]);
|
||||
x4 = xOf(tok[cnt-1]);
|
||||
y4 = yOf(tok[cnt-1]);
|
||||
x2 = x1 + (x4-x1)/3.;
|
||||
y2 = y1 + (y4-y1)/3.;
|
||||
x3 = x1 + 2.*(x4-x1)/3.;
|
||||
y3 = y1 + 2.*(y4-y1)/3.;
|
||||
pos=sprintf("%.3f,%.3f %.3f,%.3f %.3f,%.3f %.3f,%.3f", x1,y1, x2,y2, x3,y3, x4,y4);
|
||||
$.label=""; // remove pesky label
|
||||
$.lp=""; // remove peskier label pos
|
||||
|
||||
if (hasAttr($, "addPTS") && $.addPTS!="" && $.colorPTS!=""){
|
||||
// now we place point nodes at the edge ends
|
||||
pt[1] = tok[0];
|
||||
pt[2] = tok[cnt-1];
|
||||
ptSize=$.addPTS;
|
||||
for (pt[i]) {
|
||||
if (i==2 && pt[1]==pt[2])
|
||||
continue;
|
||||
aNode=node($G, "__CIRCLE__" + (string)++circ);
|
||||
aNode.pos=pt[i];
|
||||
aNode.shape="point";
|
||||
aNode.width=ptSize;
|
||||
aNode.height=ptSize;
|
||||
aNode.style="filled";
|
||||
aNode.fillcolor=$.colorPTS;
|
||||
aNode.color=$.colorPTS;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
562
examples/ex03.gv
generated
@ -1,255 +1,365 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4-dev
|
||||
// Graph generated by WireViz 0.4-dev251
|
||||
// https://github.com/formatc1702/WireViz
|
||||
graph [bgcolor="#FFFFFF" fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor="#FFFFFF" fontname=arial height=0 margin=0 shape=none style=filled width=0]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Molex Micro-Fit</td>
|
||||
<td balign="left">male</td>
|
||||
<td balign="left">2-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td>GND</td>
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>VCC</td>
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Molex Micro-Fit</td>
|
||||
<td>male</td>
|
||||
<td>2-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>GND</td>
|
||||
[]
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>VCC</td>
|
||||
[]
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
X2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X2</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Molex Micro-Fit</td>
|
||||
<td balign="left">female</td>
|
||||
<td balign="left">2-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Molex Micro-Fit</td>
|
||||
<td>female</td>
|
||||
<td>2-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
[]
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
X3 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X3</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Molex Micro-Fit</td>
|
||||
<td balign="left">female</td>
|
||||
<td balign="left">2-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X3</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Molex Micro-Fit</td>
|
||||
<td>female</td>
|
||||
<td>2-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
[]
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
X4 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X4</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Molex Micro-Fit</td>
|
||||
<td balign="left">female</td>
|
||||
<td balign="left">2-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X4</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Molex Micro-Fit</td>
|
||||
<td>female</td>
|
||||
<td>2-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
[]
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>6x</td>
|
||||
<td>0.25 mm² (24 AWG)</td>
|
||||
<td>0.2 m</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:1:GND</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>BK</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:1:GND </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w1">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:2:VCC</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>RD</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:2:VCC </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w2">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:1:GND</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>BK</td>
|
||||
<td> </td>
|
||||
<td align="right">X3:1:GND </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w3">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:2:VCC</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>RD</td>
|
||||
<td> </td>
|
||||
<td align="right">X3:2:VCC </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w4">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:1:GND</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>BK</td>
|
||||
<td> </td>
|
||||
<td align="right">X4:1:GND </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w5">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:2:VCC</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>RD</td>
|
||||
<td> </td>
|
||||
<td align="right">X4:2:VCC </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w6">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
X1:p1r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
edge [color="#000000:#FF0000:#000000"]
|
||||
X1:p2r:e -- W1:w2:w
|
||||
W1:w2:e -- X2:p2l:w
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
X1:p1r:e -- W1:w3:w
|
||||
W1:w3:e -- X3:p1l:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
edge [color="#000000:#FF0000:#000000"]
|
||||
X1:p2r:e -- W1:w4:w
|
||||
W1:w4:e -- X3:p2l:w
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
X1:p1r:e -- W1:w5:w
|
||||
W1:w5:e -- X4:p1l:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
edge [color="#000000:#FF0000:#000000"]
|
||||
X1:p2r:e -- W1:w6:w
|
||||
W1:w6:e -- X4:p2l:w
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">W1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">6x</td>
|
||||
<td balign="left">0.25 mm² (24 AWG)</td>
|
||||
<td balign="left">0.2 m</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td>X1:1:GND</td>
|
||||
<td>
|
||||
BK
|
||||
</td>
|
||||
<td>X2:1:GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:2:VCC</td>
|
||||
<td>
|
||||
RD
|
||||
</td>
|
||||
<td>X2:2:VCC</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff0000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:1:GND</td>
|
||||
<td>
|
||||
BK
|
||||
</td>
|
||||
<td>X3:1:GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w3" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:2:VCC</td>
|
||||
<td>
|
||||
RD
|
||||
</td>
|
||||
<td>X3:2:VCC</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w4" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff0000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:1:GND</td>
|
||||
<td>
|
||||
BK
|
||||
</td>
|
||||
<td>X4:1:GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w5" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:2:VCC</td>
|
||||
<td>
|
||||
RD
|
||||
</td>
|
||||
<td>X4:2:VCC</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w6" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff0000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
|
||||
W1:w1:e -- W1:w1:w [color="#000000:#000000:#000000" straight=straight]
|
||||
W1:w2:e -- W1:w2:w [color="#000000:#FF0000:#000000" straight=straight]
|
||||
W1:w3:e -- W1:w3:w [color="#000000:#000000:#000000" straight=straight]
|
||||
W1:w4:e -- W1:w4:w [color="#000000:#FF0000:#000000" straight=straight]
|
||||
W1:w5:e -- W1:w5:w [color="#000000:#000000:#000000" straight=straight]
|
||||
W1:w6:e -- W1:w6:w [color="#000000:#FF0000:#000000" straight=straight]
|
||||
}
|
||||
|
||||
453
examples/ex03.html
generated
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="generator" content="WireViz 0.4-dev - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.4-dev251 - https://github.com/formatc1702/WireViz">
|
||||
<title>ex03</title>
|
||||
<style>
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
}
|
||||
|
||||
</style>
|
||||
</head><body style="font-family:arial;background-color:#ffffff">
|
||||
</head><body style="font-family:arial;background-color:#FFFFFF">
|
||||
<h1>ex03</h1>
|
||||
<h2>Diagram</h2>
|
||||
|
||||
@ -30,231 +30,290 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="873pt" height="332pt"
|
||||
viewBox="0.00 0.00 873.00 332.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 328)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-328 869,-328 869,4 -4,4"/>
|
||||
<svg width="877pt" height="347pt"
|
||||
viewBox="0.00 0.00 877.25 347.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 343)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-343 873.25,-343 873.25,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="183,-208 0,-208 0,-116 183,-116 183,-208"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-185 0.5,-208 183.5,-208 183.5,-185 0.5,-185"/>
|
||||
<text text-anchor="start" x="83" y="-192.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-162 0.5,-185 104.5,-185 104.5,-162 0.5,-162"/>
|
||||
<text text-anchor="start" x="4.5" y="-169.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="104.5,-162 104.5,-185 143.5,-185 143.5,-162 104.5,-162"/>
|
||||
<text text-anchor="start" x="108.5" y="-169.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="143.5,-162 143.5,-185 183.5,-185 183.5,-162 143.5,-162"/>
|
||||
<text text-anchor="start" x="147.5" y="-169.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-139 0.5,-162 104.5,-162 104.5,-139 0.5,-139"/>
|
||||
<text text-anchor="start" x="36.5" y="-146.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="104.5,-139 104.5,-162 183.5,-162 183.5,-139 104.5,-139"/>
|
||||
<text text-anchor="start" x="140" y="-146.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-116 0.5,-139 104.5,-139 104.5,-116 0.5,-116"/>
|
||||
<text text-anchor="start" x="37.5" y="-123.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="104.5,-116 104.5,-139 183.5,-139 183.5,-116 104.5,-116"/>
|
||||
<text text-anchor="start" x="140" y="-123.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="182.25,-218 0,-218 0,-121 182.25,-121 182.25,-218"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-121 0,-218 182.25,-218 182.25,-121 0,-121"/>
|
||||
<polygon fill="none" stroke="black" points="0,-193.5 0,-218 182.25,-218 182.25,-193.5 0,-193.5"/>
|
||||
<text text-anchor="start" x="82.12" y="-200.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-169 0,-193.5 104,-193.5 104,-169 0,-169"/>
|
||||
<text text-anchor="start" x="4" y="-176.2" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="104,-169 104,-193.5 142.75,-193.5 142.75,-169 104,-169"/>
|
||||
<text text-anchor="start" x="108" y="-176.2" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="142.75,-169 142.75,-193.5 182.25,-193.5 182.25,-169 142.75,-169"/>
|
||||
<text text-anchor="start" x="146.75" y="-176.2" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-145 0,-169 102.62,-169 102.62,-145 0,-145"/>
|
||||
<text text-anchor="start" x="35.56" y="-151.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="102.62,-145 102.62,-169 182.25,-169 182.25,-145 102.62,-145"/>
|
||||
<text text-anchor="start" x="138.31" y="-151.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-121 0,-145 102.62,-145 102.62,-121 0,-121"/>
|
||||
<text text-anchor="start" x="35.94" y="-127.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="102.62,-121 102.62,-145 182.25,-145 182.25,-121 102.62,-121"/>
|
||||
<text text-anchor="start" x="138.31" y="-127.7" font-family="arial" font-size="14.00">2</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node5" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="526,-288 327,-288 327,-54 526,-54 526,-288"/>
|
||||
<polygon fill="none" stroke="black" points="327.5,-265 327.5,-288 526.5,-288 526.5,-265 327.5,-265"/>
|
||||
<text text-anchor="start" x="416.5" y="-272.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="327.5,-242 327.5,-265 350.5,-265 350.5,-242 327.5,-242"/>
|
||||
<text text-anchor="start" x="331.5" y="-249.8" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="350.5,-242 350.5,-265 482.5,-265 482.5,-242 350.5,-242"/>
|
||||
<text text-anchor="start" x="354.5" y="-249.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="482.5,-242 482.5,-265 526.5,-265 526.5,-242 482.5,-242"/>
|
||||
<text text-anchor="start" x="486.5" y="-249.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="360" y="-228.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="330" y="-209.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="400" y="-209.8" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<text text-anchor="start" x="460" y="-209.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-202 327.5,-204 526.5,-204 526.5,-202 327.5,-202"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-200 327.5,-202 526.5,-202 526.5,-200 327.5,-200"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-198 327.5,-200 526.5,-200 526.5,-198 327.5,-198"/>
|
||||
<text text-anchor="start" x="330.5" y="-184.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="399" y="-184.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<text text-anchor="start" x="460.5" y="-184.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-177 327.5,-179 526.5,-179 526.5,-177 327.5,-177"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="327.5,-175 327.5,-177 526.5,-177 526.5,-175 327.5,-175"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-173 327.5,-175 526.5,-175 526.5,-173 327.5,-173"/>
|
||||
<text text-anchor="start" x="330" y="-159.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="400" y="-159.8" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<text text-anchor="start" x="460" y="-159.8" font-family="arial" font-size="14.00">X3:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-152 327.5,-154 526.5,-154 526.5,-152 327.5,-152"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-150 327.5,-152 526.5,-152 526.5,-150 327.5,-150"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-148 327.5,-150 526.5,-150 526.5,-148 327.5,-148"/>
|
||||
<text text-anchor="start" x="330.5" y="-134.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="399" y="-134.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<text text-anchor="start" x="460.5" y="-134.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-127 327.5,-129 526.5,-129 526.5,-127 327.5,-127"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="327.5,-125 327.5,-127 526.5,-127 526.5,-125 327.5,-125"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-123 327.5,-125 526.5,-125 526.5,-123 327.5,-123"/>
|
||||
<text text-anchor="start" x="330" y="-109.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="400" y="-109.8" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<text text-anchor="start" x="460" y="-109.8" font-family="arial" font-size="14.00">X4:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-102 327.5,-104 526.5,-104 526.5,-102 327.5,-102"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-100 327.5,-102 526.5,-102 526.5,-100 327.5,-100"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-98 327.5,-100 526.5,-100 526.5,-98 327.5,-98"/>
|
||||
<text text-anchor="start" x="330.5" y="-84.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="399" y="-84.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<text text-anchor="start" x="460.5" y="-84.8" font-family="arial" font-size="14.00">X4:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-77 327.5,-79 526.5,-79 526.5,-77 327.5,-77"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="327.5,-75 327.5,-77 526.5,-77 526.5,-75 327.5,-75"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-73 327.5,-75 526.5,-75 526.5,-73 327.5,-73"/>
|
||||
<text text-anchor="start" x="360" y="-59.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="530.25,-302 326.25,-302 326.25,-57 530.25,-57 530.25,-302"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-57 326.25,-302 530.25,-302 530.25,-57 326.25,-57"/>
|
||||
<polygon fill="none" stroke="black" points="326.25,-277.5 326.25,-302 530.25,-302 530.25,-277.5 326.25,-277.5"/>
|
||||
<text text-anchor="start" x="417" y="-284.7" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="326.25,-253 326.25,-277.5 349.25,-277.5 349.25,-253 326.25,-253"/>
|
||||
<text text-anchor="start" x="330.25" y="-260.2" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="349.25,-253 349.25,-277.5 486.25,-277.5 486.25,-253 349.25,-253"/>
|
||||
<text text-anchor="start" x="353.25" y="-260.2" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="486.25,-253 486.25,-277.5 530.25,-277.5 530.25,-253 486.25,-253"/>
|
||||
<text text-anchor="start" x="490.25" y="-260.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="362.12" y="-237.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="328.25" y="-217.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="404.62" y="-217.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="421.75" y="-217.7" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="448.12" y="-217.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="459.25" y="-217.7" font-family="arial" font-size="14.00">X2:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-211 326.25,-213 530.25,-213 530.25,-211 326.25,-211"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-209 326.25,-211 530.25,-211 530.25,-209 326.25,-209"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-207 326.25,-209 530.25,-209 530.25,-207 326.25,-207"/>
|
||||
<text text-anchor="start" x="328.25" y="-191.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="404.62" y="-191.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="421" y="-191.7" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="448.12" y="-191.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="460" y="-191.7" font-family="arial" font-size="14.00">X2:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-185 326.25,-187 530.25,-187 530.25,-185 326.25,-185"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-183 326.25,-185 530.25,-185 530.25,-183 326.25,-183"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-181 326.25,-183 530.25,-183 530.25,-181 326.25,-181"/>
|
||||
<text text-anchor="start" x="328.25" y="-165.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="404.62" y="-165.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="421.75" y="-165.7" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="448.12" y="-165.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="459.25" y="-165.7" font-family="arial" font-size="14.00">X3:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-159 326.25,-161 530.25,-161 530.25,-159 326.25,-159"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-157 326.25,-159 530.25,-159 530.25,-157 326.25,-157"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-155 326.25,-157 530.25,-157 530.25,-155 326.25,-155"/>
|
||||
<text text-anchor="start" x="328.25" y="-139.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="404.62" y="-139.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="421" y="-139.7" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="448.12" y="-139.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="460" y="-139.7" font-family="arial" font-size="14.00">X3:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-133 326.25,-135 530.25,-135 530.25,-133 326.25,-133"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-131 326.25,-133 530.25,-133 530.25,-131 326.25,-131"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-129 326.25,-131 530.25,-131 530.25,-129 326.25,-129"/>
|
||||
<text text-anchor="start" x="328.25" y="-113.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="404.62" y="-113.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="421.75" y="-113.7" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="448.12" y="-113.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="459.25" y="-113.7" font-family="arial" font-size="14.00">X4:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-107 326.25,-109 530.25,-109 530.25,-107 326.25,-107"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-105 326.25,-107 530.25,-107 530.25,-105 326.25,-105"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-103 326.25,-105 530.25,-105 530.25,-103 326.25,-103"/>
|
||||
<text text-anchor="start" x="328.25" y="-87.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="404.62" y="-87.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="421" y="-87.7" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="448.12" y="-87.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="460" y="-87.7" font-family="arial" font-size="14.00">X4:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-81 326.25,-83 530.25,-83 530.25,-81 326.25,-81"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-79 326.25,-81 530.25,-81 530.25,-79 326.25,-79"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-77 326.25,-79 530.25,-79 530.25,-77 326.25,-77"/>
|
||||
<text text-anchor="start" x="362.12" y="-61.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-148C252.87,-149.68 261.08,-200.68 327,-199"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-150C250.9,-150 259.1,-201 327,-201"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-152C248.92,-150.32 257.13,-201.32 327,-203"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-155C252.43,-156.72 260.03,-209.72 326.25,-208"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-157C250.45,-157 258.05,-210 326.25,-210"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-159C248.47,-157.28 256.07,-210.28 326.25,-212"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-131C252.12,-132.68 260.32,-183.68 326.25,-182"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182.25,-133C250.15,-133 258.35,-184 326.25,-184"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-135C248.18,-133.32 256.38,-184.32 326.25,-186"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-125C252.57,-126.65 261.36,-175.65 327,-174"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M183,-127C250.6,-127 259.4,-176 327,-176"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-129C248.64,-127.35 257.43,-176.35 327,-178"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-155C246.37,-155 262.37,-156 326.25,-156"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-157C246.25,-157 262.25,-158 326.25,-158"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-159C246.13,-159 262.13,-160 326.25,-160"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-131C246.13,-131 262.13,-130 326.25,-130"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182.25,-133C246.25,-133 262.25,-132 326.25,-132"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-135C246.37,-135 262.37,-134 326.25,-134"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-148C247.13,-148 263.12,-149 327,-149"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-150C247,-150 263,-151 327,-151"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-152C246.88,-152 262.87,-153 327,-153"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-155C248.18,-156.68 256.38,-105.68 326.25,-104"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-157C250.15,-157 258.35,-106 326.25,-106"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-159C252.12,-157.32 260.32,-106.32 326.25,-108"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-131C248.47,-132.72 256.07,-79.72 326.25,-78"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182.25,-133C250.45,-133 258.05,-80 326.25,-80"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-135C252.43,-133.28 260.03,-80.28 326.25,-82"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-125C246.88,-125 262.87,-124 327,-124"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M183,-127C247,-127 263,-126 327,-126"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-129C247.13,-129 263.12,-128 327,-128"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-212C462.25,-212 394.25,-212 326.25,-212"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-210C462.25,-210 394.25,-210 326.25,-210"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-208C462.25,-208 394.25,-208 326.25,-208"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-186C462.25,-186 394.25,-186 326.25,-186"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-184C462.25,-184 394.25,-184 326.25,-184"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-182C462.25,-182 394.25,-182 326.25,-182"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-148C248.64,-149.65 257.43,-100.65 327,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-150C250.6,-150 259.4,-101 327,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-152C252.57,-150.35 261.36,-101.35 327,-103"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-160C462.25,-160 394.25,-160 326.25,-160"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-158C462.25,-158 394.25,-158 326.25,-158"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-156C462.25,-156 394.25,-156 326.25,-156"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-134C462.25,-134 394.25,-134 326.25,-134"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-132C462.25,-132 394.25,-132 326.25,-132"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-130C462.25,-130 394.25,-130 326.25,-130"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-125C248.92,-126.68 257.13,-75.68 327,-74"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M183,-127C250.9,-127 259.1,-76 327,-76"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-129C252.87,-127.32 261.08,-76.32 327,-78"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-108C462.25,-108 394.25,-108 326.25,-108"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-106C462.25,-106 394.25,-106 326.25,-106"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-104C462.25,-104 394.25,-104 326.25,-104"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-82C462.25,-82 394.25,-82 326.25,-82"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-80C462.25,-80 394.25,-80 326.25,-80"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-78C462.25,-78 394.25,-78 326.25,-78"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="865,-324 670,-324 670,-232 865,-232 865,-324"/>
|
||||
<polygon fill="none" stroke="black" points="670.5,-301 670.5,-324 865.5,-324 865.5,-301 670.5,-301"/>
|
||||
<text text-anchor="start" x="759" y="-308.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-278 670.5,-301 774.5,-301 774.5,-278 670.5,-278"/>
|
||||
<text text-anchor="start" x="674.5" y="-285.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="774.5,-278 774.5,-301 825.5,-301 825.5,-278 774.5,-278"/>
|
||||
<text text-anchor="start" x="778.5" y="-285.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="825.5,-278 825.5,-301 865.5,-301 865.5,-278 825.5,-278"/>
|
||||
<text text-anchor="start" x="829.5" y="-285.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-255 670.5,-278 756.5,-278 756.5,-255 670.5,-255"/>
|
||||
<text text-anchor="start" x="709.5" y="-262.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="756.5,-255 756.5,-278 865.5,-278 865.5,-255 756.5,-255"/>
|
||||
<text text-anchor="start" x="795" y="-262.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-232 670.5,-255 756.5,-255 756.5,-232 670.5,-232"/>
|
||||
<text text-anchor="start" x="709.5" y="-239.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="756.5,-232 756.5,-255 865.5,-255 865.5,-232 756.5,-232"/>
|
||||
<text text-anchor="start" x="796" y="-239.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="869.25,-339 674.25,-339 674.25,-242 869.25,-242 869.25,-339"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="674.25,-242 674.25,-339 869.25,-339 869.25,-242 674.25,-242"/>
|
||||
<polygon fill="none" stroke="black" points="674.25,-314.5 674.25,-339 869.25,-339 869.25,-314.5 674.25,-314.5"/>
|
||||
<text text-anchor="start" x="762.75" y="-321.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-290 674.25,-314.5 778.25,-314.5 778.25,-290 674.25,-290"/>
|
||||
<text text-anchor="start" x="678.25" y="-297.2" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="778.25,-290 778.25,-314.5 829.75,-314.5 829.75,-290 778.25,-290"/>
|
||||
<text text-anchor="start" x="782.25" y="-297.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="829.75,-290 829.75,-314.5 869.25,-314.5 869.25,-290 829.75,-290"/>
|
||||
<text text-anchor="start" x="833.75" y="-297.2" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-266 674.25,-290 760.25,-290 760.25,-266 674.25,-266"/>
|
||||
<text text-anchor="start" x="713.12" y="-272.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-266 760.25,-290 869.25,-290 869.25,-266 760.25,-266"/>
|
||||
<text text-anchor="start" x="799" y="-272.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-242 674.25,-266 760.25,-266 760.25,-242 674.25,-242"/>
|
||||
<text text-anchor="start" x="713.12" y="-248.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-242 760.25,-266 869.25,-266 869.25,-242 760.25,-242"/>
|
||||
<text text-anchor="start" x="799.38" y="-248.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-208C603.03,-209.93 605.47,-277.93 674.25,-276"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-210C601.03,-210 603.47,-278 674.25,-278"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-212C599.03,-210.07 601.47,-278.07 674.25,-280"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-182C603.41,-183.95 605.09,-253.95 674.25,-252"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-184C601.41,-184 603.09,-254 674.25,-254"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-186C599.41,-184.05 601.09,-254.05 674.25,-256"/>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node4" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="865,-208 670,-208 670,-116 865,-116 865,-208"/>
|
||||
<polygon fill="none" stroke="black" points="670.5,-185 670.5,-208 865.5,-208 865.5,-185 670.5,-185"/>
|
||||
<text text-anchor="start" x="759" y="-192.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-162 670.5,-185 774.5,-185 774.5,-162 670.5,-162"/>
|
||||
<text text-anchor="start" x="674.5" y="-169.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="774.5,-162 774.5,-185 825.5,-185 825.5,-162 774.5,-162"/>
|
||||
<text text-anchor="start" x="778.5" y="-169.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="825.5,-162 825.5,-185 865.5,-185 865.5,-162 825.5,-162"/>
|
||||
<text text-anchor="start" x="829.5" y="-169.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-139 670.5,-162 756.5,-162 756.5,-139 670.5,-139"/>
|
||||
<text text-anchor="start" x="709.5" y="-146.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="756.5,-139 756.5,-162 865.5,-162 865.5,-139 756.5,-139"/>
|
||||
<text text-anchor="start" x="795" y="-146.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-116 670.5,-139 756.5,-139 756.5,-116 670.5,-116"/>
|
||||
<text text-anchor="start" x="709.5" y="-123.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="756.5,-116 756.5,-139 865.5,-139 865.5,-116 756.5,-116"/>
|
||||
<text text-anchor="start" x="796" y="-123.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="869.25,-218 674.25,-218 674.25,-121 869.25,-121 869.25,-218"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="674.25,-121 674.25,-218 869.25,-218 869.25,-121 674.25,-121"/>
|
||||
<polygon fill="none" stroke="black" points="674.25,-193.5 674.25,-218 869.25,-218 869.25,-193.5 674.25,-193.5"/>
|
||||
<text text-anchor="start" x="762.75" y="-200.7" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-169 674.25,-193.5 778.25,-193.5 778.25,-169 674.25,-169"/>
|
||||
<text text-anchor="start" x="678.25" y="-176.2" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="778.25,-169 778.25,-193.5 829.75,-193.5 829.75,-169 778.25,-169"/>
|
||||
<text text-anchor="start" x="782.25" y="-176.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="829.75,-169 829.75,-193.5 869.25,-193.5 869.25,-169 829.75,-169"/>
|
||||
<text text-anchor="start" x="833.75" y="-176.2" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-145 674.25,-169 760.25,-169 760.25,-145 674.25,-145"/>
|
||||
<text text-anchor="start" x="713.12" y="-151.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-145 760.25,-169 869.25,-169 869.25,-145 760.25,-145"/>
|
||||
<text text-anchor="start" x="799" y="-151.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-121 674.25,-145 760.25,-145 760.25,-121 674.25,-121"/>
|
||||
<text text-anchor="start" x="713.12" y="-127.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-121 760.25,-145 869.25,-145 869.25,-121 760.25,-121"/>
|
||||
<text text-anchor="start" x="799.38" y="-127.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W1--X3 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>W1:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-156C594.13,-156 610.13,-155 674.25,-155"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-158C594.25,-158 610.25,-157 674.25,-157"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-160C594.37,-160 610.37,-159 674.25,-159"/>
|
||||
</g>
|
||||
<!-- W1--X3 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W1:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-130C594.37,-130 610.37,-131 674.25,-131"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-132C594.25,-132 610.25,-133 674.25,-133"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-134C594.13,-134 610.13,-135 674.25,-135"/>
|
||||
</g>
|
||||
<!-- X4 -->
|
||||
<g id="node4" class="node">
|
||||
<g id="node5" class="node">
|
||||
<title>X4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="865,-92 670,-92 670,0 865,0 865,-92"/>
|
||||
<polygon fill="none" stroke="black" points="670.5,-69 670.5,-92 865.5,-92 865.5,-69 670.5,-69"/>
|
||||
<text text-anchor="start" x="759" y="-76.8" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-46 670.5,-69 774.5,-69 774.5,-46 670.5,-46"/>
|
||||
<text text-anchor="start" x="674.5" y="-53.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="774.5,-46 774.5,-69 825.5,-69 825.5,-46 774.5,-46"/>
|
||||
<text text-anchor="start" x="778.5" y="-53.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="825.5,-46 825.5,-69 865.5,-69 865.5,-46 825.5,-46"/>
|
||||
<text text-anchor="start" x="829.5" y="-53.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-23 670.5,-46 756.5,-46 756.5,-23 670.5,-23"/>
|
||||
<text text-anchor="start" x="709.5" y="-30.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="756.5,-23 756.5,-46 865.5,-46 865.5,-23 756.5,-23"/>
|
||||
<text text-anchor="start" x="795" y="-30.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,0 670.5,-23 756.5,-23 756.5,0 670.5,0"/>
|
||||
<text text-anchor="start" x="709.5" y="-7.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="756.5,0 756.5,-23 865.5,-23 865.5,0 756.5,0"/>
|
||||
<text text-anchor="start" x="796" y="-7.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-199C598.22,-200.89 601.78,-265.89 670,-264"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-201C596.22,-201 599.78,-266 670,-266"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-203C594.22,-201.11 597.78,-266.11 670,-268"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-174C598.59,-175.92 601.41,-242.92 670,-241"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M526,-176C596.59,-176 599.41,-243 670,-243"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-178C594.59,-176.08 597.41,-243.08 670,-245"/>
|
||||
</g>
|
||||
<!-- W1--X3 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-149C589.88,-149 605.87,-148 670,-148"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-151C590,-151 606,-150 670,-150"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-153C590.13,-153 606.12,-152 670,-152"/>
|
||||
</g>
|
||||
<!-- W1--X3 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-124C590.13,-124 606.12,-125 670,-125"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M526,-126C590,-126 606,-127 670,-127"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-128C589.88,-128 605.87,-129 670,-129"/>
|
||||
<polygon fill="#ffffff" stroke="black" points="869.25,-97 674.25,-97 674.25,0 869.25,0 869.25,-97"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="674.25,0 674.25,-97 869.25,-97 869.25,0 674.25,0"/>
|
||||
<polygon fill="none" stroke="black" points="674.25,-72.5 674.25,-97 869.25,-97 869.25,-72.5 674.25,-72.5"/>
|
||||
<text text-anchor="start" x="762.75" y="-79.7" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-48 674.25,-72.5 778.25,-72.5 778.25,-48 674.25,-48"/>
|
||||
<text text-anchor="start" x="678.25" y="-55.2" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="778.25,-48 778.25,-72.5 829.75,-72.5 829.75,-48 778.25,-48"/>
|
||||
<text text-anchor="start" x="782.25" y="-55.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="829.75,-48 829.75,-72.5 869.25,-72.5 869.25,-48 829.75,-48"/>
|
||||
<text text-anchor="start" x="833.75" y="-55.2" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-24 674.25,-48 760.25,-48 760.25,-24 674.25,-24"/>
|
||||
<text text-anchor="start" x="713.12" y="-30.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-24 760.25,-48 869.25,-48 869.25,-24 760.25,-24"/>
|
||||
<text text-anchor="start" x="799" y="-30.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,0 674.25,-24 760.25,-24 760.25,0 674.25,0"/>
|
||||
<text text-anchor="start" x="713.12" y="-6.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,0 760.25,-24 869.25,-24 869.25,0 760.25,0"/>
|
||||
<text text-anchor="start" x="799.38" y="-6.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W1--X4 -->
|
||||
<g id="edge10" class="edge">
|
||||
<g id="edge17" class="edge">
|
||||
<title>W1:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-99C594.59,-100.92 597.41,-33.92 670,-32"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-101C596.59,-101 599.41,-34 670,-34"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-103C598.59,-101.08 601.41,-34.08 670,-36"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-104C599.41,-105.95 601.09,-35.95 674.25,-34"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-106C601.41,-106 603.09,-36 674.25,-36"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-108C603.41,-106.05 605.09,-36.05 674.25,-38"/>
|
||||
</g>
|
||||
<!-- W1--X4 -->
|
||||
<g id="edge12" class="edge">
|
||||
<g id="edge18" class="edge">
|
||||
<title>W1:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-74C594.22,-75.89 597.78,-10.89 670,-9"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M526,-76C596.22,-76 599.78,-11 670,-11"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-78C598.22,-76.11 601.78,-11.11 670,-13"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-78C599.03,-79.93 601.47,-11.93 674.25,-10"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-80C601.03,-80 603.47,-12 674.25,-12"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-82C603.03,-80.07 605.47,-12.07 674.25,-14"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
@ -270,38 +329,38 @@
|
||||
<div id="bom">
|
||||
<table class="bom">
|
||||
<tr>
|
||||
<th class="bom_col_id">Id</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_#">#</th>
|
||||
<th class="bom_col_qty">Qty</th>
|
||||
<th class="bom_col_unit">Unit</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_designators">Designators</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">1</td>
|
||||
<td class="bom_col_description">Connector, Molex Micro-Fit, female, 2 pins</td>
|
||||
<td class="bom_col_#">1</td>
|
||||
<td class="bom_col_qty">3</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, Molex Micro-Fit, female, 2 pins</td>
|
||||
<td class="bom_col_designators">X2, X3, X4</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">2</td>
|
||||
<td class="bom_col_description">Connector, Molex Micro-Fit, male, 2 pins</td>
|
||||
<td class="bom_col_#">2</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, Molex Micro-Fit, male, 2 pins</td>
|
||||
<td class="bom_col_designators">X1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">3</td>
|
||||
<td class="bom_col_description">Wire, 0.25 mm², BK</td>
|
||||
<td class="bom_col_qty">0.6</td>
|
||||
<td class="bom_col_#">3</td>
|
||||
<td class="bom_col_qty">3</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Wire, 0.25 mm², BK</td>
|
||||
<td class="bom_col_designators">W1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">4</td>
|
||||
<td class="bom_col_description">Wire, 0.25 mm², RD</td>
|
||||
<td class="bom_col_qty">0.6</td>
|
||||
<td class="bom_col_#">4</td>
|
||||
<td class="bom_col_qty">3</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Wire, 0.25 mm², RD</td>
|
||||
<td class="bom_col_designators">W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
BIN
examples/ex03.png
generated
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 64 KiB |
425
examples/ex03.svg
generated
@ -1,231 +1,290 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="873pt" height="332pt"
|
||||
viewBox="0.00 0.00 873.00 332.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 328)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-328 869,-328 869,4 -4,4"/>
|
||||
<svg width="877pt" height="347pt"
|
||||
viewBox="0.00 0.00 877.25 347.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 343)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-343 873.25,-343 873.25,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="183,-208 0,-208 0,-116 183,-116 183,-208"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-185 0.5,-208 183.5,-208 183.5,-185 0.5,-185"/>
|
||||
<text text-anchor="start" x="83" y="-192.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-162 0.5,-185 104.5,-185 104.5,-162 0.5,-162"/>
|
||||
<text text-anchor="start" x="4.5" y="-169.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="104.5,-162 104.5,-185 143.5,-185 143.5,-162 104.5,-162"/>
|
||||
<text text-anchor="start" x="108.5" y="-169.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="143.5,-162 143.5,-185 183.5,-185 183.5,-162 143.5,-162"/>
|
||||
<text text-anchor="start" x="147.5" y="-169.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-139 0.5,-162 104.5,-162 104.5,-139 0.5,-139"/>
|
||||
<text text-anchor="start" x="36.5" y="-146.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="104.5,-139 104.5,-162 183.5,-162 183.5,-139 104.5,-139"/>
|
||||
<text text-anchor="start" x="140" y="-146.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-116 0.5,-139 104.5,-139 104.5,-116 0.5,-116"/>
|
||||
<text text-anchor="start" x="37.5" y="-123.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="104.5,-116 104.5,-139 183.5,-139 183.5,-116 104.5,-116"/>
|
||||
<text text-anchor="start" x="140" y="-123.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="182.25,-218 0,-218 0,-121 182.25,-121 182.25,-218"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-121 0,-218 182.25,-218 182.25,-121 0,-121"/>
|
||||
<polygon fill="none" stroke="black" points="0,-193.5 0,-218 182.25,-218 182.25,-193.5 0,-193.5"/>
|
||||
<text text-anchor="start" x="82.12" y="-200.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-169 0,-193.5 104,-193.5 104,-169 0,-169"/>
|
||||
<text text-anchor="start" x="4" y="-176.2" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="104,-169 104,-193.5 142.75,-193.5 142.75,-169 104,-169"/>
|
||||
<text text-anchor="start" x="108" y="-176.2" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="142.75,-169 142.75,-193.5 182.25,-193.5 182.25,-169 142.75,-169"/>
|
||||
<text text-anchor="start" x="146.75" y="-176.2" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-145 0,-169 102.62,-169 102.62,-145 0,-145"/>
|
||||
<text text-anchor="start" x="35.56" y="-151.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="102.62,-145 102.62,-169 182.25,-169 182.25,-145 102.62,-145"/>
|
||||
<text text-anchor="start" x="138.31" y="-151.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-121 0,-145 102.62,-145 102.62,-121 0,-121"/>
|
||||
<text text-anchor="start" x="35.94" y="-127.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="102.62,-121 102.62,-145 182.25,-145 182.25,-121 102.62,-121"/>
|
||||
<text text-anchor="start" x="138.31" y="-127.7" font-family="arial" font-size="14.00">2</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node5" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="526,-288 327,-288 327,-54 526,-54 526,-288"/>
|
||||
<polygon fill="none" stroke="black" points="327.5,-265 327.5,-288 526.5,-288 526.5,-265 327.5,-265"/>
|
||||
<text text-anchor="start" x="416.5" y="-272.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="327.5,-242 327.5,-265 350.5,-265 350.5,-242 327.5,-242"/>
|
||||
<text text-anchor="start" x="331.5" y="-249.8" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="350.5,-242 350.5,-265 482.5,-265 482.5,-242 350.5,-242"/>
|
||||
<text text-anchor="start" x="354.5" y="-249.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="482.5,-242 482.5,-265 526.5,-265 526.5,-242 482.5,-242"/>
|
||||
<text text-anchor="start" x="486.5" y="-249.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="360" y="-228.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="330" y="-209.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="400" y="-209.8" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<text text-anchor="start" x="460" y="-209.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-202 327.5,-204 526.5,-204 526.5,-202 327.5,-202"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-200 327.5,-202 526.5,-202 526.5,-200 327.5,-200"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-198 327.5,-200 526.5,-200 526.5,-198 327.5,-198"/>
|
||||
<text text-anchor="start" x="330.5" y="-184.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="399" y="-184.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<text text-anchor="start" x="460.5" y="-184.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-177 327.5,-179 526.5,-179 526.5,-177 327.5,-177"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="327.5,-175 327.5,-177 526.5,-177 526.5,-175 327.5,-175"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-173 327.5,-175 526.5,-175 526.5,-173 327.5,-173"/>
|
||||
<text text-anchor="start" x="330" y="-159.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="400" y="-159.8" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<text text-anchor="start" x="460" y="-159.8" font-family="arial" font-size="14.00">X3:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-152 327.5,-154 526.5,-154 526.5,-152 327.5,-152"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-150 327.5,-152 526.5,-152 526.5,-150 327.5,-150"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-148 327.5,-150 526.5,-150 526.5,-148 327.5,-148"/>
|
||||
<text text-anchor="start" x="330.5" y="-134.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="399" y="-134.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<text text-anchor="start" x="460.5" y="-134.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-127 327.5,-129 526.5,-129 526.5,-127 327.5,-127"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="327.5,-125 327.5,-127 526.5,-127 526.5,-125 327.5,-125"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-123 327.5,-125 526.5,-125 526.5,-123 327.5,-123"/>
|
||||
<text text-anchor="start" x="330" y="-109.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="400" y="-109.8" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<text text-anchor="start" x="460" y="-109.8" font-family="arial" font-size="14.00">X4:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-102 327.5,-104 526.5,-104 526.5,-102 327.5,-102"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-100 327.5,-102 526.5,-102 526.5,-100 327.5,-100"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-98 327.5,-100 526.5,-100 526.5,-98 327.5,-98"/>
|
||||
<text text-anchor="start" x="330.5" y="-84.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="399" y="-84.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<text text-anchor="start" x="460.5" y="-84.8" font-family="arial" font-size="14.00">X4:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-77 327.5,-79 526.5,-79 526.5,-77 327.5,-77"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="327.5,-75 327.5,-77 526.5,-77 526.5,-75 327.5,-75"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="327.5,-73 327.5,-75 526.5,-75 526.5,-73 327.5,-73"/>
|
||||
<text text-anchor="start" x="360" y="-59.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="530.25,-302 326.25,-302 326.25,-57 530.25,-57 530.25,-302"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-57 326.25,-302 530.25,-302 530.25,-57 326.25,-57"/>
|
||||
<polygon fill="none" stroke="black" points="326.25,-277.5 326.25,-302 530.25,-302 530.25,-277.5 326.25,-277.5"/>
|
||||
<text text-anchor="start" x="417" y="-284.7" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="326.25,-253 326.25,-277.5 349.25,-277.5 349.25,-253 326.25,-253"/>
|
||||
<text text-anchor="start" x="330.25" y="-260.2" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="349.25,-253 349.25,-277.5 486.25,-277.5 486.25,-253 349.25,-253"/>
|
||||
<text text-anchor="start" x="353.25" y="-260.2" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="486.25,-253 486.25,-277.5 530.25,-277.5 530.25,-253 486.25,-253"/>
|
||||
<text text-anchor="start" x="490.25" y="-260.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="362.12" y="-237.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="328.25" y="-217.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="404.62" y="-217.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="421.75" y="-217.7" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="448.12" y="-217.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="459.25" y="-217.7" font-family="arial" font-size="14.00">X2:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-211 326.25,-213 530.25,-213 530.25,-211 326.25,-211"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-209 326.25,-211 530.25,-211 530.25,-209 326.25,-209"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-207 326.25,-209 530.25,-209 530.25,-207 326.25,-207"/>
|
||||
<text text-anchor="start" x="328.25" y="-191.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="404.62" y="-191.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="421" y="-191.7" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="448.12" y="-191.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="460" y="-191.7" font-family="arial" font-size="14.00">X2:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-185 326.25,-187 530.25,-187 530.25,-185 326.25,-185"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-183 326.25,-185 530.25,-185 530.25,-183 326.25,-183"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-181 326.25,-183 530.25,-183 530.25,-181 326.25,-181"/>
|
||||
<text text-anchor="start" x="328.25" y="-165.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="404.62" y="-165.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="421.75" y="-165.7" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="448.12" y="-165.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="459.25" y="-165.7" font-family="arial" font-size="14.00">X3:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-159 326.25,-161 530.25,-161 530.25,-159 326.25,-159"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-157 326.25,-159 530.25,-159 530.25,-157 326.25,-157"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-155 326.25,-157 530.25,-157 530.25,-155 326.25,-155"/>
|
||||
<text text-anchor="start" x="328.25" y="-139.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="404.62" y="-139.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="421" y="-139.7" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="448.12" y="-139.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="460" y="-139.7" font-family="arial" font-size="14.00">X3:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-133 326.25,-135 530.25,-135 530.25,-133 326.25,-133"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-131 326.25,-133 530.25,-133 530.25,-131 326.25,-131"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-129 326.25,-131 530.25,-131 530.25,-129 326.25,-129"/>
|
||||
<text text-anchor="start" x="328.25" y="-113.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="404.62" y="-113.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="421.75" y="-113.7" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="448.12" y="-113.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="459.25" y="-113.7" font-family="arial" font-size="14.00">X4:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-107 326.25,-109 530.25,-109 530.25,-107 326.25,-107"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-105 326.25,-107 530.25,-107 530.25,-105 326.25,-105"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-103 326.25,-105 530.25,-105 530.25,-103 326.25,-103"/>
|
||||
<text text-anchor="start" x="328.25" y="-87.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="404.62" y="-87.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="421" y="-87.7" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="448.12" y="-87.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="460" y="-87.7" font-family="arial" font-size="14.00">X4:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-81 326.25,-83 530.25,-83 530.25,-81 326.25,-81"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-79 326.25,-81 530.25,-81 530.25,-79 326.25,-79"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="326.25,-77 326.25,-79 530.25,-79 530.25,-77 326.25,-77"/>
|
||||
<text text-anchor="start" x="362.12" y="-61.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-148C252.87,-149.68 261.08,-200.68 327,-199"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-150C250.9,-150 259.1,-201 327,-201"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-152C248.92,-150.32 257.13,-201.32 327,-203"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-155C252.43,-156.72 260.03,-209.72 326.25,-208"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-157C250.45,-157 258.05,-210 326.25,-210"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-159C248.47,-157.28 256.07,-210.28 326.25,-212"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-131C252.12,-132.68 260.32,-183.68 326.25,-182"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182.25,-133C250.15,-133 258.35,-184 326.25,-184"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-135C248.18,-133.32 256.38,-184.32 326.25,-186"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-125C252.57,-126.65 261.36,-175.65 327,-174"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M183,-127C250.6,-127 259.4,-176 327,-176"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-129C248.64,-127.35 257.43,-176.35 327,-178"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-155C246.37,-155 262.37,-156 326.25,-156"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-157C246.25,-157 262.25,-158 326.25,-158"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-159C246.13,-159 262.13,-160 326.25,-160"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-131C246.13,-131 262.13,-130 326.25,-130"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182.25,-133C246.25,-133 262.25,-132 326.25,-132"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-135C246.37,-135 262.37,-134 326.25,-134"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-148C247.13,-148 263.12,-149 327,-149"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-150C247,-150 263,-151 327,-151"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-152C246.88,-152 262.87,-153 327,-153"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-155C248.18,-156.68 256.38,-105.68 326.25,-104"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-157C250.15,-157 258.35,-106 326.25,-106"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-159C252.12,-157.32 260.32,-106.32 326.25,-108"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-131C248.47,-132.72 256.07,-79.72 326.25,-78"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182.25,-133C250.45,-133 258.05,-80 326.25,-80"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182.25,-135C252.43,-133.28 260.03,-80.28 326.25,-82"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-125C246.88,-125 262.87,-124 327,-124"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M183,-127C247,-127 263,-126 327,-126"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-129C247.13,-129 263.12,-128 327,-128"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-212C462.25,-212 394.25,-212 326.25,-212"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-210C462.25,-210 394.25,-210 326.25,-210"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-208C462.25,-208 394.25,-208 326.25,-208"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-186C462.25,-186 394.25,-186 326.25,-186"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-184C462.25,-184 394.25,-184 326.25,-184"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-182C462.25,-182 394.25,-182 326.25,-182"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-148C248.64,-149.65 257.43,-100.65 327,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-150C250.6,-150 259.4,-101 327,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-152C252.57,-150.35 261.36,-101.35 327,-103"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-160C462.25,-160 394.25,-160 326.25,-160"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-158C462.25,-158 394.25,-158 326.25,-158"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-156C462.25,-156 394.25,-156 326.25,-156"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-134C462.25,-134 394.25,-134 326.25,-134"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-132C462.25,-132 394.25,-132 326.25,-132"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-130C462.25,-130 394.25,-130 326.25,-130"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-125C248.92,-126.68 257.13,-75.68 327,-74"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M183,-127C250.9,-127 259.1,-76 327,-76"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M183,-129C252.87,-127.32 261.08,-76.32 327,-78"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-108C462.25,-108 394.25,-108 326.25,-108"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-106C462.25,-106 394.25,-106 326.25,-106"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-104C462.25,-104 394.25,-104 326.25,-104"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-82C462.25,-82 394.25,-82 326.25,-82"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-80C462.25,-80 394.25,-80 326.25,-80"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-78C462.25,-78 394.25,-78 326.25,-78"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="865,-324 670,-324 670,-232 865,-232 865,-324"/>
|
||||
<polygon fill="none" stroke="black" points="670.5,-301 670.5,-324 865.5,-324 865.5,-301 670.5,-301"/>
|
||||
<text text-anchor="start" x="759" y="-308.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-278 670.5,-301 774.5,-301 774.5,-278 670.5,-278"/>
|
||||
<text text-anchor="start" x="674.5" y="-285.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="774.5,-278 774.5,-301 825.5,-301 825.5,-278 774.5,-278"/>
|
||||
<text text-anchor="start" x="778.5" y="-285.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="825.5,-278 825.5,-301 865.5,-301 865.5,-278 825.5,-278"/>
|
||||
<text text-anchor="start" x="829.5" y="-285.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-255 670.5,-278 756.5,-278 756.5,-255 670.5,-255"/>
|
||||
<text text-anchor="start" x="709.5" y="-262.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="756.5,-255 756.5,-278 865.5,-278 865.5,-255 756.5,-255"/>
|
||||
<text text-anchor="start" x="795" y="-262.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-232 670.5,-255 756.5,-255 756.5,-232 670.5,-232"/>
|
||||
<text text-anchor="start" x="709.5" y="-239.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="756.5,-232 756.5,-255 865.5,-255 865.5,-232 756.5,-232"/>
|
||||
<text text-anchor="start" x="796" y="-239.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="869.25,-339 674.25,-339 674.25,-242 869.25,-242 869.25,-339"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="674.25,-242 674.25,-339 869.25,-339 869.25,-242 674.25,-242"/>
|
||||
<polygon fill="none" stroke="black" points="674.25,-314.5 674.25,-339 869.25,-339 869.25,-314.5 674.25,-314.5"/>
|
||||
<text text-anchor="start" x="762.75" y="-321.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-290 674.25,-314.5 778.25,-314.5 778.25,-290 674.25,-290"/>
|
||||
<text text-anchor="start" x="678.25" y="-297.2" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="778.25,-290 778.25,-314.5 829.75,-314.5 829.75,-290 778.25,-290"/>
|
||||
<text text-anchor="start" x="782.25" y="-297.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="829.75,-290 829.75,-314.5 869.25,-314.5 869.25,-290 829.75,-290"/>
|
||||
<text text-anchor="start" x="833.75" y="-297.2" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-266 674.25,-290 760.25,-290 760.25,-266 674.25,-266"/>
|
||||
<text text-anchor="start" x="713.12" y="-272.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-266 760.25,-290 869.25,-290 869.25,-266 760.25,-266"/>
|
||||
<text text-anchor="start" x="799" y="-272.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-242 674.25,-266 760.25,-266 760.25,-242 674.25,-242"/>
|
||||
<text text-anchor="start" x="713.12" y="-248.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-242 760.25,-266 869.25,-266 869.25,-242 760.25,-242"/>
|
||||
<text text-anchor="start" x="799.38" y="-248.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-208C603.03,-209.93 605.47,-277.93 674.25,-276"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-210C601.03,-210 603.47,-278 674.25,-278"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-212C599.03,-210.07 601.47,-278.07 674.25,-280"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-182C603.41,-183.95 605.09,-253.95 674.25,-252"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-184C601.41,-184 603.09,-254 674.25,-254"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-186C599.41,-184.05 601.09,-254.05 674.25,-256"/>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node4" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="865,-208 670,-208 670,-116 865,-116 865,-208"/>
|
||||
<polygon fill="none" stroke="black" points="670.5,-185 670.5,-208 865.5,-208 865.5,-185 670.5,-185"/>
|
||||
<text text-anchor="start" x="759" y="-192.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-162 670.5,-185 774.5,-185 774.5,-162 670.5,-162"/>
|
||||
<text text-anchor="start" x="674.5" y="-169.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="774.5,-162 774.5,-185 825.5,-185 825.5,-162 774.5,-162"/>
|
||||
<text text-anchor="start" x="778.5" y="-169.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="825.5,-162 825.5,-185 865.5,-185 865.5,-162 825.5,-162"/>
|
||||
<text text-anchor="start" x="829.5" y="-169.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-139 670.5,-162 756.5,-162 756.5,-139 670.5,-139"/>
|
||||
<text text-anchor="start" x="709.5" y="-146.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="756.5,-139 756.5,-162 865.5,-162 865.5,-139 756.5,-139"/>
|
||||
<text text-anchor="start" x="795" y="-146.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-116 670.5,-139 756.5,-139 756.5,-116 670.5,-116"/>
|
||||
<text text-anchor="start" x="709.5" y="-123.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="756.5,-116 756.5,-139 865.5,-139 865.5,-116 756.5,-116"/>
|
||||
<text text-anchor="start" x="796" y="-123.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="869.25,-218 674.25,-218 674.25,-121 869.25,-121 869.25,-218"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="674.25,-121 674.25,-218 869.25,-218 869.25,-121 674.25,-121"/>
|
||||
<polygon fill="none" stroke="black" points="674.25,-193.5 674.25,-218 869.25,-218 869.25,-193.5 674.25,-193.5"/>
|
||||
<text text-anchor="start" x="762.75" y="-200.7" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-169 674.25,-193.5 778.25,-193.5 778.25,-169 674.25,-169"/>
|
||||
<text text-anchor="start" x="678.25" y="-176.2" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="778.25,-169 778.25,-193.5 829.75,-193.5 829.75,-169 778.25,-169"/>
|
||||
<text text-anchor="start" x="782.25" y="-176.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="829.75,-169 829.75,-193.5 869.25,-193.5 869.25,-169 829.75,-169"/>
|
||||
<text text-anchor="start" x="833.75" y="-176.2" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-145 674.25,-169 760.25,-169 760.25,-145 674.25,-145"/>
|
||||
<text text-anchor="start" x="713.12" y="-151.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-145 760.25,-169 869.25,-169 869.25,-145 760.25,-145"/>
|
||||
<text text-anchor="start" x="799" y="-151.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-121 674.25,-145 760.25,-145 760.25,-121 674.25,-121"/>
|
||||
<text text-anchor="start" x="713.12" y="-127.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-121 760.25,-145 869.25,-145 869.25,-121 760.25,-121"/>
|
||||
<text text-anchor="start" x="799.38" y="-127.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W1--X3 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>W1:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-156C594.13,-156 610.13,-155 674.25,-155"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-158C594.25,-158 610.25,-157 674.25,-157"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-160C594.37,-160 610.37,-159 674.25,-159"/>
|
||||
</g>
|
||||
<!-- W1--X3 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W1:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-130C594.37,-130 610.37,-131 674.25,-131"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-132C594.25,-132 610.25,-133 674.25,-133"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-134C594.13,-134 610.13,-135 674.25,-135"/>
|
||||
</g>
|
||||
<!-- X4 -->
|
||||
<g id="node4" class="node">
|
||||
<g id="node5" class="node">
|
||||
<title>X4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="865,-92 670,-92 670,0 865,0 865,-92"/>
|
||||
<polygon fill="none" stroke="black" points="670.5,-69 670.5,-92 865.5,-92 865.5,-69 670.5,-69"/>
|
||||
<text text-anchor="start" x="759" y="-76.8" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-46 670.5,-69 774.5,-69 774.5,-46 670.5,-46"/>
|
||||
<text text-anchor="start" x="674.5" y="-53.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="774.5,-46 774.5,-69 825.5,-69 825.5,-46 774.5,-46"/>
|
||||
<text text-anchor="start" x="778.5" y="-53.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="825.5,-46 825.5,-69 865.5,-69 865.5,-46 825.5,-46"/>
|
||||
<text text-anchor="start" x="829.5" y="-53.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-23 670.5,-46 756.5,-46 756.5,-23 670.5,-23"/>
|
||||
<text text-anchor="start" x="709.5" y="-30.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="756.5,-23 756.5,-46 865.5,-46 865.5,-23 756.5,-23"/>
|
||||
<text text-anchor="start" x="795" y="-30.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,0 670.5,-23 756.5,-23 756.5,0 670.5,0"/>
|
||||
<text text-anchor="start" x="709.5" y="-7.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="756.5,0 756.5,-23 865.5,-23 865.5,0 756.5,0"/>
|
||||
<text text-anchor="start" x="796" y="-7.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-199C598.22,-200.89 601.78,-265.89 670,-264"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-201C596.22,-201 599.78,-266 670,-266"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-203C594.22,-201.11 597.78,-266.11 670,-268"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-174C598.59,-175.92 601.41,-242.92 670,-241"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M526,-176C596.59,-176 599.41,-243 670,-243"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-178C594.59,-176.08 597.41,-243.08 670,-245"/>
|
||||
</g>
|
||||
<!-- W1--X3 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-149C589.88,-149 605.87,-148 670,-148"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-151C590,-151 606,-150 670,-150"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-153C590.13,-153 606.12,-152 670,-152"/>
|
||||
</g>
|
||||
<!-- W1--X3 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-124C590.13,-124 606.12,-125 670,-125"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M526,-126C590,-126 606,-127 670,-127"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-128C589.88,-128 605.87,-129 670,-129"/>
|
||||
<polygon fill="#ffffff" stroke="black" points="869.25,-97 674.25,-97 674.25,0 869.25,0 869.25,-97"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="674.25,0 674.25,-97 869.25,-97 869.25,0 674.25,0"/>
|
||||
<polygon fill="none" stroke="black" points="674.25,-72.5 674.25,-97 869.25,-97 869.25,-72.5 674.25,-72.5"/>
|
||||
<text text-anchor="start" x="762.75" y="-79.7" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-48 674.25,-72.5 778.25,-72.5 778.25,-48 674.25,-48"/>
|
||||
<text text-anchor="start" x="678.25" y="-55.2" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="778.25,-48 778.25,-72.5 829.75,-72.5 829.75,-48 778.25,-48"/>
|
||||
<text text-anchor="start" x="782.25" y="-55.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="829.75,-48 829.75,-72.5 869.25,-72.5 869.25,-48 829.75,-48"/>
|
||||
<text text-anchor="start" x="833.75" y="-55.2" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,-24 674.25,-48 760.25,-48 760.25,-24 674.25,-24"/>
|
||||
<text text-anchor="start" x="713.12" y="-30.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,-24 760.25,-48 869.25,-48 869.25,-24 760.25,-24"/>
|
||||
<text text-anchor="start" x="799" y="-30.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="674.25,0 674.25,-24 760.25,-24 760.25,0 674.25,0"/>
|
||||
<text text-anchor="start" x="713.12" y="-6.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="760.25,0 760.25,-24 869.25,-24 869.25,0 760.25,0"/>
|
||||
<text text-anchor="start" x="799.38" y="-6.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
</g>
|
||||
<!-- W1--X4 -->
|
||||
<g id="edge10" class="edge">
|
||||
<g id="edge17" class="edge">
|
||||
<title>W1:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-99C594.59,-100.92 597.41,-33.92 670,-32"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-101C596.59,-101 599.41,-34 670,-34"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-103C598.59,-101.08 601.41,-34.08 670,-36"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-104C599.41,-105.95 601.09,-35.95 674.25,-34"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-106C601.41,-106 603.09,-36 674.25,-36"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-108C603.41,-106.05 605.09,-36.05 674.25,-38"/>
|
||||
</g>
|
||||
<!-- W1--X4 -->
|
||||
<g id="edge12" class="edge">
|
||||
<g id="edge18" class="edge">
|
||||
<title>W1:e--X4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-74C594.22,-75.89 597.78,-10.89 670,-9"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M526,-76C596.22,-76 599.78,-11 670,-11"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-78C598.22,-76.11 601.78,-11.11 670,-13"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-78C599.03,-79.93 601.47,-11.93 674.25,-10"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M530.25,-80C601.03,-80 603.47,-12 674.25,-12"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M530.25,-82C603.03,-80.07 605.47,-12.07 674.25,-14"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 21 KiB |
5
examples/ex03.tsv
generated
Normal file
@ -0,0 +1,5 @@
|
||||
# Qty Unit Description Designators
|
||||
1 3 Connector, Molex Micro-Fit, female, 2 pins X2, X3, X4
|
||||
2 1 Connector, Molex Micro-Fit, male, 2 pins X1
|
||||
3 3 m Wire, 0.25 mm², BK W1
|
||||
4 3 m Wire, 0.25 mm², RD W1
|
||||
|
64
examples/ex03_wv_gvpr.gvpr
Normal file
@ -0,0 +1,64 @@
|
||||
/*******************************************************************
|
||||
|
||||
see https://forum.graphviz.org/t/straitening-one-line-throu-a-table/2196 and https://forum.graphviz.org/t/way-of-drawing-a-black-circle-inside-a-table-field/2273/12
|
||||
input must include pos values (must be output from one of the engines w/ -Tdot)#
|
||||
Thanks to steveroush and FeRDNYC
|
||||
|
||||
*******************************************************************/
|
||||
BEG_G{
|
||||
double x1,y1,x2,y2,x3,y3,x4,y4;
|
||||
string ptSize, tok[int], pt[];
|
||||
int cnt, circ, i;
|
||||
node_t aNode;
|
||||
|
||||
circ=0;
|
||||
|
||||
/***************************************
|
||||
$G.bb="";
|
||||
$G.nodesep="";
|
||||
$G.ranksep="";
|
||||
$G.splines="true";
|
||||
****************************************/
|
||||
}
|
||||
|
||||
// This removes the label text but keeps the position
|
||||
E[noLabel] {
|
||||
$.label=""; // remove pesky label
|
||||
// $.lp=""; // remove peskier label pos
|
||||
}
|
||||
|
||||
E[straight] {
|
||||
cnt=tokens($.pos,tok," ");
|
||||
$.oldpos=$.pos;
|
||||
x1 = xOf(tok[0]);
|
||||
y1 = yOf(tok[0]);
|
||||
x4 = xOf(tok[cnt-1]);
|
||||
y4 = yOf(tok[cnt-1]);
|
||||
x2 = x1 + (x4-x1)/3.;
|
||||
y2 = y1 + (y4-y1)/3.;
|
||||
x3 = x1 + 2.*(x4-x1)/3.;
|
||||
y3 = y1 + 2.*(y4-y1)/3.;
|
||||
pos=sprintf("%.3f,%.3f %.3f,%.3f %.3f,%.3f %.3f,%.3f", x1,y1, x2,y2, x3,y3, x4,y4);
|
||||
$.label=""; // remove pesky label
|
||||
$.lp=""; // remove peskier label pos
|
||||
|
||||
if (hasAttr($, "addPTS") && $.addPTS!="" && $.colorPTS!=""){
|
||||
// now we place point nodes at the edge ends
|
||||
pt[1] = tok[0];
|
||||
pt[2] = tok[cnt-1];
|
||||
ptSize=$.addPTS;
|
||||
for (pt[i]) {
|
||||
if (i==2 && pt[1]==pt[2])
|
||||
continue;
|
||||
aNode=node($G, "__CIRCLE__" + (string)++circ);
|
||||
aNode.pos=pt[i];
|
||||
aNode.shape="point";
|
||||
aNode.width=ptSize;
|
||||
aNode.height=ptSize;
|
||||
aNode.style="filled";
|
||||
aNode.fillcolor=$.colorPTS;
|
||||
aNode.color=$.colorPTS;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
526
examples/ex04.gv
generated
@ -1,251 +1,361 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4-dev
|
||||
// Graph generated by WireViz 0.4-dev251
|
||||
// https://github.com/formatc1702/WireViz
|
||||
graph [bgcolor="#FFFFFF" fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor="#FFFFFF" fontname=arial height=0 margin=0 shape=none style=filled width=0]
|
||||
edge [fontname=arial style=bold]
|
||||
AUTOGENERATED_F_1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Crimp ferrule</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" port="p1r" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td port="p1l">
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Crimp ferrule</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Crimp ferrule</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" port="p1r" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td port="p1l">
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Crimp ferrule</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_3 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Crimp ferrule</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" port="p1r" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td port="p1l">
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Crimp ferrule</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_4 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Crimp ferrule</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" port="p1r" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td port="p1l">
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Crimp ferrule</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_5 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Crimp ferrule</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" port="p1r" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td port="p1l">
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Crimp ferrule</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_6 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Crimp ferrule</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" port="p1r" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td port="p1l">
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Crimp ferrule</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_7 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Crimp ferrule</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" port="p1r" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td port="p1l">
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Crimp ferrule</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_8 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Crimp ferrule</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" port="p1r" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td port="p1l">
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Crimp ferrule</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_9 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Crimp ferrule</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" port="p1r" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td port="p1l">
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Crimp ferrule</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_10 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Crimp ferrule</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" port="p1r" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td port="p1l">
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Crimp ferrule</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_11 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Crimp ferrule</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" port="p1r" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td port="p1l">
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Crimp ferrule</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_12 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Crimp ferrule</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" port="p1r" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td port="p1l">
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Crimp ferrule</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>6x</td>
|
||||
<td>0.25 mm² (24 AWG)</td>
|
||||
<td>0.2 m</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> </td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>BN</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w1">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> </td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>RD</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w2">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> </td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>OG</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w3">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> </td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>YE</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w4">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> </td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>GN</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w5">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> </td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>BU</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w6">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
AUTOGENERATED_F_1:e -- W1:w1:w
|
||||
W1:w1:e -- AUTOGENERATED_F_7:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
edge [color="#000000:#FF0000:#000000"]
|
||||
AUTOGENERATED_F_2:e -- W1:w2:w
|
||||
W1:w2:e -- AUTOGENERATED_F_8:w
|
||||
edge [color="#000000:#ff8000:#000000"]
|
||||
edge [color="#000000:#FF8000:#000000"]
|
||||
AUTOGENERATED_F_3:e -- W1:w3:w
|
||||
W1:w3:e -- AUTOGENERATED_F_9:w
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
edge [color="#000000:#FFFF00:#000000"]
|
||||
AUTOGENERATED_F_4:e -- W1:w4:w
|
||||
W1:w4:e -- AUTOGENERATED_F_10:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
edge [color="#000000:#00AA00:#000000"]
|
||||
AUTOGENERATED_F_5:e -- W1:w5:w
|
||||
W1:w5:e -- AUTOGENERATED_F_11:w
|
||||
edge [color="#000000:#0066ff:#000000"]
|
||||
edge [color="#000000:#0066FF:#000000"]
|
||||
AUTOGENERATED_F_6:e -- W1:w6:w
|
||||
W1:w6:e -- AUTOGENERATED_F_12:w
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">W1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">6x</td>
|
||||
<td balign="left">0.25 mm² (24 AWG)</td>
|
||||
<td balign="left">0.2 m</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>
|
||||
BN
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>
|
||||
RD
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff0000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>
|
||||
OG
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w3" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff8000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>
|
||||
YE
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w4" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ffff00" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>
|
||||
GN
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w5" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#00ff00" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>
|
||||
BU
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w6" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#0066ff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
|
||||
W1:w1:e -- W1:w1:w [color="#000000:#895956:#000000" straight=straight]
|
||||
W1:w2:e -- W1:w2:w [color="#000000:#FF0000:#000000" straight=straight]
|
||||
W1:w3:e -- W1:w3:w [color="#000000:#FF8000:#000000" straight=straight]
|
||||
W1:w4:e -- W1:w4:w [color="#000000:#FFFF00:#000000" straight=straight]
|
||||
W1:w5:e -- W1:w5:w [color="#000000:#00AA00:#000000" straight=straight]
|
||||
W1:w6:e -- W1:w6:w [color="#000000:#0066FF:#000000" straight=straight]
|
||||
}
|
||||
|
||||
469
examples/ex04.html
generated
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="generator" content="WireViz 0.4-dev - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.4-dev251 - https://github.com/formatc1702/WireViz">
|
||||
<title>ex04</title>
|
||||
<style>
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
}
|
||||
|
||||
</style>
|
||||
</head><body style="font-family:arial;background-color:#ffffff">
|
||||
</head><body style="font-family:arial;background-color:#FFFFFF">
|
||||
<h1>ex04</h1>
|
||||
<h2>Diagram</h2>
|
||||
|
||||
@ -30,219 +30,298 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="673pt" height="287pt"
|
||||
viewBox="0.00 0.00 673.00 286.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 282.5)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-282.5 669,-282.5 669,4 -4,4"/>
|
||||
<svg width="681pt" height="299pt"
|
||||
viewBox="0.00 0.00 681.00 298.75" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 294.75)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-294.75 677,-294.75 677,4 -4,4"/>
|
||||
<!-- AUTOGENERATED_F_1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>AUTOGENERATED_F_1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="89,-258 0,-258 0,-235 89,-235 89,-258"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-234.5 0.5,-257.5 89.5,-257.5 89.5,-234.5 0.5,-234.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-242.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="90.5,-269.5 0,-269.5 0,-245 90.5,-245 90.5,-269.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-245 0,-269.5 90.5,-269.5 90.5,-245 0,-245"/>
|
||||
<polygon fill="none" stroke="black" points="0,-245 0,-269.5 90.5,-269.5 90.5,-245 0,-245"/>
|
||||
<text text-anchor="start" x="4" y="-252.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node13" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="432,-278.5 233,-278.5 233,-44.5 432,-44.5 432,-278.5"/>
|
||||
<polygon fill="none" stroke="black" points="233.5,-255.5 233.5,-278.5 432.5,-278.5 432.5,-255.5 233.5,-255.5"/>
|
||||
<text text-anchor="start" x="322.5" y="-263.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="233.5,-232.5 233.5,-255.5 256.5,-255.5 256.5,-232.5 233.5,-232.5"/>
|
||||
<text text-anchor="start" x="237.5" y="-240.3" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="256.5,-232.5 256.5,-255.5 388.5,-255.5 388.5,-232.5 256.5,-232.5"/>
|
||||
<text text-anchor="start" x="260.5" y="-240.3" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="388.5,-232.5 388.5,-255.5 432.5,-255.5 432.5,-232.5 388.5,-232.5"/>
|
||||
<text text-anchor="start" x="392.5" y="-240.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="256.5" y="-219.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="307.5" y="-200.3" font-family="arial" font-size="14.00">     BN    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-192.5 233.5,-194.5 432.5,-194.5 432.5,-192.5 233.5,-192.5"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="233.5,-190.5 233.5,-192.5 432.5,-192.5 432.5,-190.5 233.5,-190.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-188.5 233.5,-190.5 432.5,-190.5 432.5,-188.5 233.5,-188.5"/>
|
||||
<text text-anchor="start" x="307" y="-175.3" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-167.5 233.5,-169.5 432.5,-169.5 432.5,-167.5 233.5,-167.5"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="233.5,-165.5 233.5,-167.5 432.5,-167.5 432.5,-165.5 233.5,-165.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-163.5 233.5,-165.5 432.5,-165.5 432.5,-163.5 233.5,-163.5"/>
|
||||
<text text-anchor="start" x="306.5" y="-150.3" font-family="arial" font-size="14.00">     OG    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-142.5 233.5,-144.5 432.5,-144.5 432.5,-142.5 233.5,-142.5"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="233.5,-140.5 233.5,-142.5 432.5,-142.5 432.5,-140.5 233.5,-140.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-138.5 233.5,-140.5 432.5,-140.5 432.5,-138.5 233.5,-138.5"/>
|
||||
<text text-anchor="start" x="308" y="-125.3" font-family="arial" font-size="14.00">     YE    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-117.5 233.5,-119.5 432.5,-119.5 432.5,-117.5 233.5,-117.5"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="233.5,-115.5 233.5,-117.5 432.5,-117.5 432.5,-115.5 233.5,-115.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-113.5 233.5,-115.5 432.5,-115.5 432.5,-113.5 233.5,-113.5"/>
|
||||
<text text-anchor="start" x="306.5" y="-100.3" font-family="arial" font-size="14.00">     GN    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-92.5 233.5,-94.5 432.5,-94.5 432.5,-92.5 233.5,-92.5"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="233.5,-90.5 233.5,-92.5 432.5,-92.5 432.5,-90.5 233.5,-90.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-88.5 233.5,-90.5 432.5,-90.5 432.5,-88.5 233.5,-88.5"/>
|
||||
<text text-anchor="start" x="307.5" y="-75.3" font-family="arial" font-size="14.00">     BU    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-67.5 233.5,-69.5 432.5,-69.5 432.5,-67.5 233.5,-67.5"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="233.5,-65.5 233.5,-67.5 432.5,-67.5 432.5,-65.5 233.5,-65.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-63.5 233.5,-65.5 432.5,-65.5 432.5,-63.5 233.5,-63.5"/>
|
||||
<text text-anchor="start" x="256.5" y="-50.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="438.5,-290.75 234.5,-290.75 234.5,-45.75 438.5,-45.75 438.5,-290.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-45.75 234.5,-290.75 438.5,-290.75 438.5,-45.75 234.5,-45.75"/>
|
||||
<polygon fill="none" stroke="black" points="234.5,-266.25 234.5,-290.75 438.5,-290.75 438.5,-266.25 234.5,-266.25"/>
|
||||
<text text-anchor="start" x="325.25" y="-273.45" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="234.5,-241.75 234.5,-266.25 257.5,-266.25 257.5,-241.75 234.5,-241.75"/>
|
||||
<text text-anchor="start" x="238.5" y="-248.95" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="257.5,-241.75 257.5,-266.25 394.5,-266.25 394.5,-241.75 257.5,-241.75"/>
|
||||
<text text-anchor="start" x="261.5" y="-248.95" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="394.5,-241.75 394.5,-266.25 438.5,-266.25 438.5,-241.75 394.5,-241.75"/>
|
||||
<text text-anchor="start" x="398.5" y="-248.95" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="248.29" y="-226.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="236.5" y="-206.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="279.62" y="-206.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="340.92" y="-206.45" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="389.62" y="-206.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="432.75" y="-206.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-199.75 234.5,-201.75 438.5,-201.75 438.5,-199.75 234.5,-199.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-197.75 234.5,-199.75 438.5,-199.75 438.5,-197.75 234.5,-197.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-195.75 234.5,-197.75 438.5,-197.75 438.5,-195.75 234.5,-195.75"/>
|
||||
<text text-anchor="start" x="236.5" y="-180.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="279.62" y="-180.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="340.17" y="-180.45" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="389.62" y="-180.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="432.75" y="-180.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-173.75 234.5,-175.75 438.5,-175.75 438.5,-173.75 234.5,-173.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-171.75 234.5,-173.75 438.5,-173.75 438.5,-171.75 234.5,-171.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-169.75 234.5,-171.75 438.5,-171.75 438.5,-169.75 234.5,-169.75"/>
|
||||
<text text-anchor="start" x="236.5" y="-154.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="279.62" y="-154.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="339.42" y="-154.45" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="389.62" y="-154.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="432.75" y="-154.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-147.75 234.5,-149.75 438.5,-149.75 438.5,-147.75 234.5,-147.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-145.75 234.5,-147.75 438.5,-147.75 438.5,-145.75 234.5,-145.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-143.75 234.5,-145.75 438.5,-145.75 438.5,-143.75 234.5,-143.75"/>
|
||||
<text text-anchor="start" x="236.5" y="-128.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="279.62" y="-128.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="341.29" y="-128.45" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="389.62" y="-128.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="432.75" y="-128.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-121.75 234.5,-123.75 438.5,-123.75 438.5,-121.75 234.5,-121.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-119.75 234.5,-121.75 438.5,-121.75 438.5,-119.75 234.5,-119.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-117.75 234.5,-119.75 438.5,-119.75 438.5,-117.75 234.5,-117.75"/>
|
||||
<text text-anchor="start" x="236.5" y="-102.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="279.62" y="-102.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="340.17" y="-102.45" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="389.62" y="-102.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="432.75" y="-102.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-95.75 234.5,-97.75 438.5,-97.75 438.5,-95.75 234.5,-95.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-93.75 234.5,-95.75 438.5,-95.75 438.5,-93.75 234.5,-93.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-91.75 234.5,-93.75 438.5,-93.75 438.5,-91.75 234.5,-91.75"/>
|
||||
<text text-anchor="start" x="236.5" y="-76.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="279.62" y="-76.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="340.92" y="-76.45" font-family="arial" font-size="14.00">BU</text>
|
||||
<text text-anchor="start" x="389.62" y="-76.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="432.75" y="-76.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-69.75 234.5,-71.75 438.5,-71.75 438.5,-69.75 234.5,-69.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-67.75 234.5,-69.75 438.5,-69.75 438.5,-67.75 234.5,-67.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-65.75 234.5,-67.75 438.5,-67.75 438.5,-65.75 234.5,-65.75"/>
|
||||
<text text-anchor="start" x="248.29" y="-50.45" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>AUTOGENERATED_F_1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-244.5C155.53,-246.25 162.51,-191.25 233,-189.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M89,-246.5C157.51,-246.5 164.49,-191.5 233,-191.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-248.5C159.49,-246.75 166.47,-191.75 233,-193.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-255.25C157.59,-257.05 163.43,-198.55 234.5,-196.75"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M90.5,-257.25C159.58,-257.25 165.42,-198.75 234.5,-198.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-259.25C161.57,-257.45 167.41,-198.95 234.5,-200.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>AUTOGENERATED_F_2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="89,-211 0,-211 0,-188 89,-188 89,-211"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-187.5 0.5,-210.5 89.5,-210.5 89.5,-187.5 0.5,-187.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-195.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-200.75C370.5,-200.75 302.5,-200.75 234.5,-200.75"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M438.5,-198.75C370.5,-198.75 302.5,-198.75 234.5,-198.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-196.75C370.5,-196.75 302.5,-196.75 234.5,-196.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_2--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>AUTOGENERATED_F_2:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-197.5C152.79,-198.78 165.47,-165.78 233,-164.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M89,-199.5C154.66,-199.5 167.34,-166.5 233,-166.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-201.5C156.53,-200.22 169.21,-167.22 233,-168.5"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-174.75C370.5,-174.75 302.5,-174.75 234.5,-174.75"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M438.5,-172.75C370.5,-172.75 302.5,-172.75 234.5,-172.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-170.75C370.5,-170.75 302.5,-170.75 234.5,-170.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>AUTOGENERATED_F_3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="89,-164 0,-164 0,-141 89,-141 89,-164"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-140.5 0.5,-163.5 89.5,-163.5 89.5,-140.5 0.5,-140.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-148.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-148.75C370.5,-148.75 302.5,-148.75 234.5,-148.75"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M438.5,-146.75C370.5,-146.75 302.5,-146.75 234.5,-146.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-144.75C370.5,-144.75 302.5,-144.75 234.5,-144.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_3--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>AUTOGENERATED_F_3:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-150.5C152.04,-150.86 167.66,-139.86 233,-139.5"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M89,-152.5C153.19,-152.5 168.81,-141.5 233,-141.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-154.5C154.34,-154.14 169.96,-143.14 233,-143.5"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-122.75C370.5,-122.75 302.5,-122.75 234.5,-122.75"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M438.5,-120.75C370.5,-120.75 302.5,-120.75 234.5,-120.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-118.75C370.5,-118.75 302.5,-118.75 234.5,-118.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_4 -->
|
||||
<g id="node4" class="node">
|
||||
<title>AUTOGENERATED_F_4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="89,-117 0,-117 0,-94 89,-94 89,-117"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-93.5 0.5,-116.5 89.5,-116.5 89.5,-93.5 0.5,-93.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-101.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-96.75C370.5,-96.75 302.5,-96.75 234.5,-96.75"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M438.5,-94.75C370.5,-94.75 302.5,-94.75 234.5,-94.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-92.75C370.5,-92.75 302.5,-92.75 234.5,-92.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_4--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>AUTOGENERATED_F_4:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-103.5C154.34,-103.86 169.96,-114.86 233,-114.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M89,-105.5C153.19,-105.5 168.81,-116.5 233,-116.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-107.5C152.04,-107.14 167.66,-118.14 233,-118.5"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_5 -->
|
||||
<g id="node5" class="node">
|
||||
<title>AUTOGENERATED_F_5</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="89,-70 0,-70 0,-47 89,-47 89,-70"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-46.5 0.5,-69.5 89.5,-69.5 89.5,-46.5 0.5,-46.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-54.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_5--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>AUTOGENERATED_F_5:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-56.5C156.53,-57.78 169.21,-90.78 233,-89.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M89,-58.5C154.66,-58.5 167.34,-91.5 233,-91.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-60.5C152.79,-59.22 165.47,-92.22 233,-93.5"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_6 -->
|
||||
<g id="node6" class="node">
|
||||
<title>AUTOGENERATED_F_6</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="89,-23 0,-23 0,0 89,0 89,-23"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,0.5 0.5,-22.5 89.5,-22.5 89.5,0.5 0.5,0.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-7.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_6--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>AUTOGENERATED_F_6:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-9.5C159.49,-11.25 166.47,-66.25 233,-64.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M89,-11.5C157.51,-11.5 164.49,-66.5 233,-66.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-13.5C155.53,-11.75 162.51,-66.75 233,-68.5"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-70.75C370.5,-70.75 302.5,-70.75 234.5,-70.75"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M438.5,-68.75C370.5,-68.75 302.5,-68.75 234.5,-68.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-66.75C370.5,-66.75 302.5,-66.75 234.5,-66.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_7 -->
|
||||
<g id="node7" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>AUTOGENERATED_F_7</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="665,-258 576,-258 576,-235 665,-235 665,-258"/>
|
||||
<polygon fill="none" stroke="black" points="576.5,-234.5 576.5,-257.5 665.5,-257.5 665.5,-234.5 576.5,-234.5"/>
|
||||
<text text-anchor="start" x="580.5" y="-242.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_8 -->
|
||||
<g id="node8" class="node">
|
||||
<title>AUTOGENERATED_F_8</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="665,-211 576,-211 576,-188 665,-188 665,-211"/>
|
||||
<polygon fill="none" stroke="black" points="576.5,-187.5 576.5,-210.5 665.5,-210.5 665.5,-187.5 576.5,-187.5"/>
|
||||
<text text-anchor="start" x="580.5" y="-195.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_9 -->
|
||||
<g id="node9" class="node">
|
||||
<title>AUTOGENERATED_F_9</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="665,-164 576,-164 576,-141 665,-141 665,-164"/>
|
||||
<polygon fill="none" stroke="black" points="576.5,-140.5 576.5,-163.5 665.5,-163.5 665.5,-140.5 576.5,-140.5"/>
|
||||
<text text-anchor="start" x="580.5" y="-148.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_10 -->
|
||||
<g id="node10" class="node">
|
||||
<title>AUTOGENERATED_F_10</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="665,-117 576,-117 576,-94 665,-94 665,-117"/>
|
||||
<polygon fill="none" stroke="black" points="576.5,-93.5 576.5,-116.5 665.5,-116.5 665.5,-93.5 576.5,-93.5"/>
|
||||
<text text-anchor="start" x="580.5" y="-101.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_11 -->
|
||||
<g id="node11" class="node">
|
||||
<title>AUTOGENERATED_F_11</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="665,-70 576,-70 576,-47 665,-47 665,-70"/>
|
||||
<polygon fill="none" stroke="black" points="576.5,-46.5 576.5,-69.5 665.5,-69.5 665.5,-46.5 576.5,-46.5"/>
|
||||
<text text-anchor="start" x="580.5" y="-54.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_12 -->
|
||||
<g id="node12" class="node">
|
||||
<title>AUTOGENERATED_F_12</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="665,-23 576,-23 576,0 665,0 665,-23"/>
|
||||
<polygon fill="none" stroke="black" points="576.5,0.5 576.5,-22.5 665.5,-22.5 665.5,0.5 576.5,0.5"/>
|
||||
<text text-anchor="start" x="580.5" y="-7.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="673,-269.5 582.5,-269.5 582.5,-245 673,-245 673,-269.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="582.5,-245 582.5,-269.5 673,-269.5 673,-245 582.5,-245"/>
|
||||
<polygon fill="none" stroke="black" points="582.5,-245 582.5,-269.5 673,-269.5 673,-245 582.5,-245"/>
|
||||
<text text-anchor="start" x="586.5" y="-252.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_7 -->
|
||||
<g id="edge2" class="edge">
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_7:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-189.5C502.49,-191.25 509.47,-246.25 576,-244.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M432,-191.5C500.51,-191.5 507.49,-246.5 576,-246.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-193.5C498.53,-191.75 505.51,-246.75 576,-248.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-196.75C509.57,-198.55 515.41,-257.05 582.5,-255.25"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M438.5,-198.75C507.58,-198.75 513.42,-257.25 582.5,-257.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-200.75C505.59,-198.95 511.43,-257.45 582.5,-259.25"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_8 -->
|
||||
<g id="node4" class="node">
|
||||
<title>AUTOGENERATED_F_8</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="673,-220.5 582.5,-220.5 582.5,-196 673,-196 673,-220.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="582.5,-196 582.5,-220.5 673,-220.5 673,-196 582.5,-196"/>
|
||||
<polygon fill="none" stroke="black" points="582.5,-196 582.5,-220.5 673,-220.5 673,-196 582.5,-196"/>
|
||||
<text text-anchor="start" x="586.5" y="-203.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_8 -->
|
||||
<g id="edge4" class="edge">
|
||||
<g id="edge9" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_8:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-164.5C499.53,-165.78 512.21,-198.78 576,-197.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M432,-166.5C497.66,-166.5 510.34,-199.5 576,-199.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-168.5C495.79,-167.22 508.47,-200.22 576,-201.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-170.75C506.31,-172.1 518.47,-207.6 582.5,-206.25"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M438.5,-172.75C504.42,-172.75 516.58,-208.25 582.5,-208.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-174.75C502.53,-173.4 514.69,-208.9 582.5,-210.25"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_9 -->
|
||||
<g id="node5" class="node">
|
||||
<title>AUTOGENERATED_F_9</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="673,-171.5 582.5,-171.5 582.5,-147 673,-147 673,-171.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="582.5,-147 582.5,-171.5 673,-171.5 673,-147 582.5,-147"/>
|
||||
<polygon fill="none" stroke="black" points="582.5,-147 582.5,-171.5 673,-171.5 673,-147 582.5,-147"/>
|
||||
<text text-anchor="start" x="586.5" y="-154.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_9 -->
|
||||
<g id="edge6" class="edge">
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_9:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-139.5C497.34,-139.86 512.96,-150.86 576,-150.5"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M432,-141.5C496.19,-141.5 511.81,-152.5 576,-152.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-143.5C495.04,-143.14 510.66,-154.14 576,-154.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-144.75C503.99,-145.19 519.51,-157.69 582.5,-157.25"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M438.5,-146.75C502.74,-146.75 518.26,-159.25 582.5,-159.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-148.75C501.49,-148.31 517.01,-160.81 582.5,-161.25"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_10 -->
|
||||
<g id="node6" class="node">
|
||||
<title>AUTOGENERATED_F_10</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="673,-122.5 582.5,-122.5 582.5,-98 673,-98 673,-122.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="582.5,-98 582.5,-122.5 673,-122.5 673,-98 582.5,-98"/>
|
||||
<polygon fill="none" stroke="black" points="582.5,-98 582.5,-122.5 673,-122.5 673,-98 582.5,-98"/>
|
||||
<text text-anchor="start" x="586.5" y="-105.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_10 -->
|
||||
<g id="edge8" class="edge">
|
||||
<g id="edge11" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_10:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-114.5C495.04,-114.86 510.66,-103.86 576,-103.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M432,-116.5C496.19,-116.5 511.81,-105.5 576,-105.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-118.5C497.34,-118.14 512.96,-107.14 576,-107.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-118.75C501.56,-119.09 517.22,-108.59 582.5,-108.25"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M438.5,-120.75C502.67,-120.75 518.33,-110.25 582.5,-110.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-122.75C503.78,-122.41 519.44,-111.91 582.5,-112.25"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_11 -->
|
||||
<g id="node7" class="node">
|
||||
<title>AUTOGENERATED_F_11</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="673,-73.5 582.5,-73.5 582.5,-49 673,-49 673,-73.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="582.5,-49 582.5,-73.5 673,-73.5 673,-49 582.5,-49"/>
|
||||
<polygon fill="none" stroke="black" points="582.5,-49 582.5,-73.5 673,-73.5 673,-49 582.5,-49"/>
|
||||
<text text-anchor="start" x="586.5" y="-56.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_11 -->
|
||||
<g id="edge10" class="edge">
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_11:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-89.5C495.79,-90.78 508.47,-57.78 576,-56.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M432,-91.5C497.66,-91.5 510.34,-58.5 576,-58.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-93.5C499.53,-92.22 512.21,-59.22 576,-60.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-92.75C502.34,-94.05 514.92,-60.55 582.5,-59.25"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M438.5,-94.75C504.21,-94.75 516.79,-61.25 582.5,-61.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-96.75C506.08,-95.45 518.66,-61.95 582.5,-63.25"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_12 -->
|
||||
<g id="node8" class="node">
|
||||
<title>AUTOGENERATED_F_12</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="673,-24.5 582.5,-24.5 582.5,0 673,0 673,-24.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="582.5,0 582.5,-24.5 673,-24.5 673,0 582.5,0"/>
|
||||
<polygon fill="none" stroke="black" points="582.5,0 582.5,-24.5 673,-24.5 673,0 582.5,0"/>
|
||||
<text text-anchor="start" x="586.5" y="-7.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_12 -->
|
||||
<g id="edge12" class="edge">
|
||||
<g id="edge13" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_12:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-64.5C498.53,-66.25 505.51,-11.25 576,-9.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M432,-66.5C500.51,-66.5 507.49,-11.5 576,-11.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-68.5C502.49,-66.75 509.47,-11.75 576,-13.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-66.75C505.26,-68.52 511.76,-12.02 582.5,-10.25"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M438.5,-68.75C507.25,-68.75 513.75,-12.25 582.5,-12.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-70.75C509.24,-68.98 515.74,-12.48 582.5,-14.25"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_2 -->
|
||||
<g id="node9" class="node">
|
||||
<title>AUTOGENERATED_F_2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="90.5,-220.5 0,-220.5 0,-196 90.5,-196 90.5,-220.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-196 0,-220.5 90.5,-220.5 90.5,-196 0,-196"/>
|
||||
<polygon fill="none" stroke="black" points="0,-196 0,-220.5 90.5,-220.5 90.5,-196 0,-196"/>
|
||||
<text text-anchor="start" x="4" y="-203.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_2--W1 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>AUTOGENERATED_F_2:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-206.25C154.53,-207.6 166.69,-172.1 234.5,-170.75"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M90.5,-208.25C156.42,-208.25 168.58,-172.75 234.5,-172.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-210.25C158.31,-208.9 170.47,-173.4 234.5,-174.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_3 -->
|
||||
<g id="node10" class="node">
|
||||
<title>AUTOGENERATED_F_3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="90.5,-171.5 0,-171.5 0,-147 90.5,-147 90.5,-171.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-147 0,-171.5 90.5,-171.5 90.5,-147 0,-147"/>
|
||||
<polygon fill="none" stroke="black" points="0,-147 0,-171.5 90.5,-171.5 90.5,-147 0,-147"/>
|
||||
<text text-anchor="start" x="4" y="-154.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_3--W1 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>AUTOGENERATED_F_3:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-157.25C153.49,-157.69 169.01,-145.19 234.5,-144.75"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M90.5,-159.25C154.74,-159.25 170.26,-146.75 234.5,-146.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-161.25C155.99,-160.81 171.51,-148.31 234.5,-148.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_4 -->
|
||||
<g id="node11" class="node">
|
||||
<title>AUTOGENERATED_F_4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="90.5,-122.5 0,-122.5 0,-98 90.5,-98 90.5,-122.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-98 0,-122.5 90.5,-122.5 90.5,-98 0,-98"/>
|
||||
<polygon fill="none" stroke="black" points="0,-98 0,-122.5 90.5,-122.5 90.5,-98 0,-98"/>
|
||||
<text text-anchor="start" x="4" y="-105.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_4--W1 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>AUTOGENERATED_F_4:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-108.25C155.78,-108.59 171.44,-119.09 234.5,-118.75"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M90.5,-110.25C154.67,-110.25 170.33,-120.75 234.5,-120.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-112.25C153.56,-111.91 169.22,-122.41 234.5,-122.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_5 -->
|
||||
<g id="node12" class="node">
|
||||
<title>AUTOGENERATED_F_5</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="90.5,-73.5 0,-73.5 0,-49 90.5,-49 90.5,-73.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-49 0,-73.5 90.5,-73.5 90.5,-49 0,-49"/>
|
||||
<polygon fill="none" stroke="black" points="0,-49 0,-73.5 90.5,-73.5 90.5,-49 0,-49"/>
|
||||
<text text-anchor="start" x="4" y="-56.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_5--W1 -->
|
||||
<g id="edge17" class="edge">
|
||||
<title>AUTOGENERATED_F_5:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-59.25C158.08,-60.55 170.66,-94.05 234.5,-92.75"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M90.5,-61.25C156.21,-61.25 168.79,-94.75 234.5,-94.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-63.25C154.34,-61.95 166.92,-95.45 234.5,-96.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_6 -->
|
||||
<g id="node13" class="node">
|
||||
<title>AUTOGENERATED_F_6</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="90.5,-24.5 0,-24.5 0,0 90.5,0 90.5,-24.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,0 0,-24.5 90.5,-24.5 90.5,0 0,0"/>
|
||||
<polygon fill="none" stroke="black" points="0,0 0,-24.5 90.5,-24.5 90.5,0 0,0"/>
|
||||
<text text-anchor="start" x="4" y="-7.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_6--W1 -->
|
||||
<g id="edge18" class="edge">
|
||||
<title>AUTOGENERATED_F_6:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-10.25C161.24,-12.02 167.74,-68.52 234.5,-66.75"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M90.5,-12.25C159.25,-12.25 165.75,-68.75 234.5,-68.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-14.25C157.26,-12.48 163.76,-68.98 234.5,-70.75"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
@ -258,59 +337,59 @@
|
||||
<div id="bom">
|
||||
<table class="bom">
|
||||
<tr>
|
||||
<th class="bom_col_id">Id</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_#">#</th>
|
||||
<th class="bom_col_qty">Qty</th>
|
||||
<th class="bom_col_unit">Unit</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_designators">Designators</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">1</td>
|
||||
<td class="bom_col_description">Connector, Crimp ferrule</td>
|
||||
<td class="bom_col_#">1</td>
|
||||
<td class="bom_col_qty">12</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, Crimp ferrule</td>
|
||||
<td class="bom_col_designators"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">2</td>
|
||||
<td class="bom_col_#">2</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Wire, 0.25 mm², BN</td>
|
||||
<td class="bom_col_qty">0.2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">3</td>
|
||||
<td class="bom_col_#">3</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Wire, 0.25 mm², BU</td>
|
||||
<td class="bom_col_qty">0.2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">4</td>
|
||||
<td class="bom_col_#">4</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Wire, 0.25 mm², GN</td>
|
||||
<td class="bom_col_qty">0.2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">5</td>
|
||||
<td class="bom_col_#">5</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Wire, 0.25 mm², OG</td>
|
||||
<td class="bom_col_qty">0.2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">6</td>
|
||||
<td class="bom_col_#">6</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Wire, 0.25 mm², RD</td>
|
||||
<td class="bom_col_qty">0.2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">7</td>
|
||||
<td class="bom_col_description">Wire, 0.25 mm², YE</td>
|
||||
<td class="bom_col_qty">0.2</td>
|
||||
<td class="bom_col_#">7</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Wire, 0.25 mm², YE</td>
|
||||
<td class="bom_col_designators">W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
BIN
examples/ex04.png
generated
|
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 54 KiB |
421
examples/ex04.svg
generated
@ -1,219 +1,298 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="673pt" height="287pt"
|
||||
viewBox="0.00 0.00 673.00 286.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 282.5)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-282.5 669,-282.5 669,4 -4,4"/>
|
||||
<svg width="681pt" height="299pt"
|
||||
viewBox="0.00 0.00 681.00 298.75" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 294.75)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-294.75 677,-294.75 677,4 -4,4"/>
|
||||
<!-- AUTOGENERATED_F_1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>AUTOGENERATED_F_1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="89,-258 0,-258 0,-235 89,-235 89,-258"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-234.5 0.5,-257.5 89.5,-257.5 89.5,-234.5 0.5,-234.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-242.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="90.5,-269.5 0,-269.5 0,-245 90.5,-245 90.5,-269.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-245 0,-269.5 90.5,-269.5 90.5,-245 0,-245"/>
|
||||
<polygon fill="none" stroke="black" points="0,-245 0,-269.5 90.5,-269.5 90.5,-245 0,-245"/>
|
||||
<text text-anchor="start" x="4" y="-252.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node13" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="432,-278.5 233,-278.5 233,-44.5 432,-44.5 432,-278.5"/>
|
||||
<polygon fill="none" stroke="black" points="233.5,-255.5 233.5,-278.5 432.5,-278.5 432.5,-255.5 233.5,-255.5"/>
|
||||
<text text-anchor="start" x="322.5" y="-263.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="233.5,-232.5 233.5,-255.5 256.5,-255.5 256.5,-232.5 233.5,-232.5"/>
|
||||
<text text-anchor="start" x="237.5" y="-240.3" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="256.5,-232.5 256.5,-255.5 388.5,-255.5 388.5,-232.5 256.5,-232.5"/>
|
||||
<text text-anchor="start" x="260.5" y="-240.3" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="388.5,-232.5 388.5,-255.5 432.5,-255.5 432.5,-232.5 388.5,-232.5"/>
|
||||
<text text-anchor="start" x="392.5" y="-240.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="256.5" y="-219.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="307.5" y="-200.3" font-family="arial" font-size="14.00">     BN    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-192.5 233.5,-194.5 432.5,-194.5 432.5,-192.5 233.5,-192.5"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="233.5,-190.5 233.5,-192.5 432.5,-192.5 432.5,-190.5 233.5,-190.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-188.5 233.5,-190.5 432.5,-190.5 432.5,-188.5 233.5,-188.5"/>
|
||||
<text text-anchor="start" x="307" y="-175.3" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-167.5 233.5,-169.5 432.5,-169.5 432.5,-167.5 233.5,-167.5"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="233.5,-165.5 233.5,-167.5 432.5,-167.5 432.5,-165.5 233.5,-165.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-163.5 233.5,-165.5 432.5,-165.5 432.5,-163.5 233.5,-163.5"/>
|
||||
<text text-anchor="start" x="306.5" y="-150.3" font-family="arial" font-size="14.00">     OG    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-142.5 233.5,-144.5 432.5,-144.5 432.5,-142.5 233.5,-142.5"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="233.5,-140.5 233.5,-142.5 432.5,-142.5 432.5,-140.5 233.5,-140.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-138.5 233.5,-140.5 432.5,-140.5 432.5,-138.5 233.5,-138.5"/>
|
||||
<text text-anchor="start" x="308" y="-125.3" font-family="arial" font-size="14.00">     YE    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-117.5 233.5,-119.5 432.5,-119.5 432.5,-117.5 233.5,-117.5"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="233.5,-115.5 233.5,-117.5 432.5,-117.5 432.5,-115.5 233.5,-115.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-113.5 233.5,-115.5 432.5,-115.5 432.5,-113.5 233.5,-113.5"/>
|
||||
<text text-anchor="start" x="306.5" y="-100.3" font-family="arial" font-size="14.00">     GN    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-92.5 233.5,-94.5 432.5,-94.5 432.5,-92.5 233.5,-92.5"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="233.5,-90.5 233.5,-92.5 432.5,-92.5 432.5,-90.5 233.5,-90.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-88.5 233.5,-90.5 432.5,-90.5 432.5,-88.5 233.5,-88.5"/>
|
||||
<text text-anchor="start" x="307.5" y="-75.3" font-family="arial" font-size="14.00">     BU    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-67.5 233.5,-69.5 432.5,-69.5 432.5,-67.5 233.5,-67.5"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="233.5,-65.5 233.5,-67.5 432.5,-67.5 432.5,-65.5 233.5,-65.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="233.5,-63.5 233.5,-65.5 432.5,-65.5 432.5,-63.5 233.5,-63.5"/>
|
||||
<text text-anchor="start" x="256.5" y="-50.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="438.5,-290.75 234.5,-290.75 234.5,-45.75 438.5,-45.75 438.5,-290.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-45.75 234.5,-290.75 438.5,-290.75 438.5,-45.75 234.5,-45.75"/>
|
||||
<polygon fill="none" stroke="black" points="234.5,-266.25 234.5,-290.75 438.5,-290.75 438.5,-266.25 234.5,-266.25"/>
|
||||
<text text-anchor="start" x="325.25" y="-273.45" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="234.5,-241.75 234.5,-266.25 257.5,-266.25 257.5,-241.75 234.5,-241.75"/>
|
||||
<text text-anchor="start" x="238.5" y="-248.95" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="257.5,-241.75 257.5,-266.25 394.5,-266.25 394.5,-241.75 257.5,-241.75"/>
|
||||
<text text-anchor="start" x="261.5" y="-248.95" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="394.5,-241.75 394.5,-266.25 438.5,-266.25 438.5,-241.75 394.5,-241.75"/>
|
||||
<text text-anchor="start" x="398.5" y="-248.95" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="248.29" y="-226.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="236.5" y="-206.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="279.62" y="-206.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="340.92" y="-206.45" font-family="arial" font-size="14.00">BN</text>
|
||||
<text text-anchor="start" x="389.62" y="-206.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="432.75" y="-206.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-199.75 234.5,-201.75 438.5,-201.75 438.5,-199.75 234.5,-199.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-197.75 234.5,-199.75 438.5,-199.75 438.5,-197.75 234.5,-197.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-195.75 234.5,-197.75 438.5,-197.75 438.5,-195.75 234.5,-195.75"/>
|
||||
<text text-anchor="start" x="236.5" y="-180.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="279.62" y="-180.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="340.17" y="-180.45" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="389.62" y="-180.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="432.75" y="-180.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-173.75 234.5,-175.75 438.5,-175.75 438.5,-173.75 234.5,-173.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-171.75 234.5,-173.75 438.5,-173.75 438.5,-171.75 234.5,-171.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-169.75 234.5,-171.75 438.5,-171.75 438.5,-169.75 234.5,-169.75"/>
|
||||
<text text-anchor="start" x="236.5" y="-154.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="279.62" y="-154.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="339.42" y="-154.45" font-family="arial" font-size="14.00">OG</text>
|
||||
<text text-anchor="start" x="389.62" y="-154.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="432.75" y="-154.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-147.75 234.5,-149.75 438.5,-149.75 438.5,-147.75 234.5,-147.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-145.75 234.5,-147.75 438.5,-147.75 438.5,-145.75 234.5,-145.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-143.75 234.5,-145.75 438.5,-145.75 438.5,-143.75 234.5,-143.75"/>
|
||||
<text text-anchor="start" x="236.5" y="-128.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="279.62" y="-128.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="341.29" y="-128.45" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="389.62" y="-128.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="432.75" y="-128.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-121.75 234.5,-123.75 438.5,-123.75 438.5,-121.75 234.5,-121.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-119.75 234.5,-121.75 438.5,-121.75 438.5,-119.75 234.5,-119.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-117.75 234.5,-119.75 438.5,-119.75 438.5,-117.75 234.5,-117.75"/>
|
||||
<text text-anchor="start" x="236.5" y="-102.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="279.62" y="-102.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="340.17" y="-102.45" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="389.62" y="-102.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="432.75" y="-102.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-95.75 234.5,-97.75 438.5,-97.75 438.5,-95.75 234.5,-95.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-93.75 234.5,-95.75 438.5,-95.75 438.5,-93.75 234.5,-93.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-91.75 234.5,-93.75 438.5,-93.75 438.5,-91.75 234.5,-91.75"/>
|
||||
<text text-anchor="start" x="236.5" y="-76.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="279.62" y="-76.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="340.92" y="-76.45" font-family="arial" font-size="14.00">BU</text>
|
||||
<text text-anchor="start" x="389.62" y="-76.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="432.75" y="-76.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-69.75 234.5,-71.75 438.5,-71.75 438.5,-69.75 234.5,-69.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-67.75 234.5,-69.75 438.5,-69.75 438.5,-67.75 234.5,-67.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="234.5,-65.75 234.5,-67.75 438.5,-67.75 438.5,-65.75 234.5,-65.75"/>
|
||||
<text text-anchor="start" x="248.29" y="-50.45" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>AUTOGENERATED_F_1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-244.5C155.53,-246.25 162.51,-191.25 233,-189.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M89,-246.5C157.51,-246.5 164.49,-191.5 233,-191.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-248.5C159.49,-246.75 166.47,-191.75 233,-193.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-255.25C157.59,-257.05 163.43,-198.55 234.5,-196.75"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M90.5,-257.25C159.58,-257.25 165.42,-198.75 234.5,-198.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-259.25C161.57,-257.45 167.41,-198.95 234.5,-200.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>AUTOGENERATED_F_2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="89,-211 0,-211 0,-188 89,-188 89,-211"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-187.5 0.5,-210.5 89.5,-210.5 89.5,-187.5 0.5,-187.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-195.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-200.75C370.5,-200.75 302.5,-200.75 234.5,-200.75"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M438.5,-198.75C370.5,-198.75 302.5,-198.75 234.5,-198.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-196.75C370.5,-196.75 302.5,-196.75 234.5,-196.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_2--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>AUTOGENERATED_F_2:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-197.5C152.79,-198.78 165.47,-165.78 233,-164.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M89,-199.5C154.66,-199.5 167.34,-166.5 233,-166.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-201.5C156.53,-200.22 169.21,-167.22 233,-168.5"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-174.75C370.5,-174.75 302.5,-174.75 234.5,-174.75"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M438.5,-172.75C370.5,-172.75 302.5,-172.75 234.5,-172.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-170.75C370.5,-170.75 302.5,-170.75 234.5,-170.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>AUTOGENERATED_F_3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="89,-164 0,-164 0,-141 89,-141 89,-164"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-140.5 0.5,-163.5 89.5,-163.5 89.5,-140.5 0.5,-140.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-148.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-148.75C370.5,-148.75 302.5,-148.75 234.5,-148.75"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M438.5,-146.75C370.5,-146.75 302.5,-146.75 234.5,-146.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-144.75C370.5,-144.75 302.5,-144.75 234.5,-144.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_3--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>AUTOGENERATED_F_3:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-150.5C152.04,-150.86 167.66,-139.86 233,-139.5"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M89,-152.5C153.19,-152.5 168.81,-141.5 233,-141.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-154.5C154.34,-154.14 169.96,-143.14 233,-143.5"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-122.75C370.5,-122.75 302.5,-122.75 234.5,-122.75"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M438.5,-120.75C370.5,-120.75 302.5,-120.75 234.5,-120.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-118.75C370.5,-118.75 302.5,-118.75 234.5,-118.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_4 -->
|
||||
<g id="node4" class="node">
|
||||
<title>AUTOGENERATED_F_4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="89,-117 0,-117 0,-94 89,-94 89,-117"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-93.5 0.5,-116.5 89.5,-116.5 89.5,-93.5 0.5,-93.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-101.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-96.75C370.5,-96.75 302.5,-96.75 234.5,-96.75"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M438.5,-94.75C370.5,-94.75 302.5,-94.75 234.5,-94.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-92.75C370.5,-92.75 302.5,-92.75 234.5,-92.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_4--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>AUTOGENERATED_F_4:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-103.5C154.34,-103.86 169.96,-114.86 233,-114.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M89,-105.5C153.19,-105.5 168.81,-116.5 233,-116.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-107.5C152.04,-107.14 167.66,-118.14 233,-118.5"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_5 -->
|
||||
<g id="node5" class="node">
|
||||
<title>AUTOGENERATED_F_5</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="89,-70 0,-70 0,-47 89,-47 89,-70"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-46.5 0.5,-69.5 89.5,-69.5 89.5,-46.5 0.5,-46.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-54.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_5--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>AUTOGENERATED_F_5:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-56.5C156.53,-57.78 169.21,-90.78 233,-89.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M89,-58.5C154.66,-58.5 167.34,-91.5 233,-91.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-60.5C152.79,-59.22 165.47,-92.22 233,-93.5"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_6 -->
|
||||
<g id="node6" class="node">
|
||||
<title>AUTOGENERATED_F_6</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="89,-23 0,-23 0,0 89,0 89,-23"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,0.5 0.5,-22.5 89.5,-22.5 89.5,0.5 0.5,0.5"/>
|
||||
<text text-anchor="start" x="4.5" y="-7.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_6--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>AUTOGENERATED_F_6:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-9.5C159.49,-11.25 166.47,-66.25 233,-64.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M89,-11.5C157.51,-11.5 164.49,-66.5 233,-66.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M89,-13.5C155.53,-11.75 162.51,-66.75 233,-68.5"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-70.75C370.5,-70.75 302.5,-70.75 234.5,-70.75"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M438.5,-68.75C370.5,-68.75 302.5,-68.75 234.5,-68.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-66.75C370.5,-66.75 302.5,-66.75 234.5,-66.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_7 -->
|
||||
<g id="node7" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>AUTOGENERATED_F_7</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="665,-258 576,-258 576,-235 665,-235 665,-258"/>
|
||||
<polygon fill="none" stroke="black" points="576.5,-234.5 576.5,-257.5 665.5,-257.5 665.5,-234.5 576.5,-234.5"/>
|
||||
<text text-anchor="start" x="580.5" y="-242.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_8 -->
|
||||
<g id="node8" class="node">
|
||||
<title>AUTOGENERATED_F_8</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="665,-211 576,-211 576,-188 665,-188 665,-211"/>
|
||||
<polygon fill="none" stroke="black" points="576.5,-187.5 576.5,-210.5 665.5,-210.5 665.5,-187.5 576.5,-187.5"/>
|
||||
<text text-anchor="start" x="580.5" y="-195.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_9 -->
|
||||
<g id="node9" class="node">
|
||||
<title>AUTOGENERATED_F_9</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="665,-164 576,-164 576,-141 665,-141 665,-164"/>
|
||||
<polygon fill="none" stroke="black" points="576.5,-140.5 576.5,-163.5 665.5,-163.5 665.5,-140.5 576.5,-140.5"/>
|
||||
<text text-anchor="start" x="580.5" y="-148.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_10 -->
|
||||
<g id="node10" class="node">
|
||||
<title>AUTOGENERATED_F_10</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="665,-117 576,-117 576,-94 665,-94 665,-117"/>
|
||||
<polygon fill="none" stroke="black" points="576.5,-93.5 576.5,-116.5 665.5,-116.5 665.5,-93.5 576.5,-93.5"/>
|
||||
<text text-anchor="start" x="580.5" y="-101.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_11 -->
|
||||
<g id="node11" class="node">
|
||||
<title>AUTOGENERATED_F_11</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="665,-70 576,-70 576,-47 665,-47 665,-70"/>
|
||||
<polygon fill="none" stroke="black" points="576.5,-46.5 576.5,-69.5 665.5,-69.5 665.5,-46.5 576.5,-46.5"/>
|
||||
<text text-anchor="start" x="580.5" y="-54.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_12 -->
|
||||
<g id="node12" class="node">
|
||||
<title>AUTOGENERATED_F_12</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="665,-23 576,-23 576,0 665,0 665,-23"/>
|
||||
<polygon fill="none" stroke="black" points="576.5,0.5 576.5,-22.5 665.5,-22.5 665.5,0.5 576.5,0.5"/>
|
||||
<text text-anchor="start" x="580.5" y="-7.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="673,-269.5 582.5,-269.5 582.5,-245 673,-245 673,-269.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="582.5,-245 582.5,-269.5 673,-269.5 673,-245 582.5,-245"/>
|
||||
<polygon fill="none" stroke="black" points="582.5,-245 582.5,-269.5 673,-269.5 673,-245 582.5,-245"/>
|
||||
<text text-anchor="start" x="586.5" y="-252.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_7 -->
|
||||
<g id="edge2" class="edge">
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_7:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-189.5C502.49,-191.25 509.47,-246.25 576,-244.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M432,-191.5C500.51,-191.5 507.49,-246.5 576,-246.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-193.5C498.53,-191.75 505.51,-246.75 576,-248.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-196.75C509.57,-198.55 515.41,-257.05 582.5,-255.25"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M438.5,-198.75C507.58,-198.75 513.42,-257.25 582.5,-257.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-200.75C505.59,-198.95 511.43,-257.45 582.5,-259.25"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_8 -->
|
||||
<g id="node4" class="node">
|
||||
<title>AUTOGENERATED_F_8</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="673,-220.5 582.5,-220.5 582.5,-196 673,-196 673,-220.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="582.5,-196 582.5,-220.5 673,-220.5 673,-196 582.5,-196"/>
|
||||
<polygon fill="none" stroke="black" points="582.5,-196 582.5,-220.5 673,-220.5 673,-196 582.5,-196"/>
|
||||
<text text-anchor="start" x="586.5" y="-203.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_8 -->
|
||||
<g id="edge4" class="edge">
|
||||
<g id="edge9" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_8:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-164.5C499.53,-165.78 512.21,-198.78 576,-197.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M432,-166.5C497.66,-166.5 510.34,-199.5 576,-199.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-168.5C495.79,-167.22 508.47,-200.22 576,-201.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-170.75C506.31,-172.1 518.47,-207.6 582.5,-206.25"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M438.5,-172.75C504.42,-172.75 516.58,-208.25 582.5,-208.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-174.75C502.53,-173.4 514.69,-208.9 582.5,-210.25"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_9 -->
|
||||
<g id="node5" class="node">
|
||||
<title>AUTOGENERATED_F_9</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="673,-171.5 582.5,-171.5 582.5,-147 673,-147 673,-171.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="582.5,-147 582.5,-171.5 673,-171.5 673,-147 582.5,-147"/>
|
||||
<polygon fill="none" stroke="black" points="582.5,-147 582.5,-171.5 673,-171.5 673,-147 582.5,-147"/>
|
||||
<text text-anchor="start" x="586.5" y="-154.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_9 -->
|
||||
<g id="edge6" class="edge">
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_9:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-139.5C497.34,-139.86 512.96,-150.86 576,-150.5"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M432,-141.5C496.19,-141.5 511.81,-152.5 576,-152.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-143.5C495.04,-143.14 510.66,-154.14 576,-154.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-144.75C503.99,-145.19 519.51,-157.69 582.5,-157.25"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M438.5,-146.75C502.74,-146.75 518.26,-159.25 582.5,-159.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-148.75C501.49,-148.31 517.01,-160.81 582.5,-161.25"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_10 -->
|
||||
<g id="node6" class="node">
|
||||
<title>AUTOGENERATED_F_10</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="673,-122.5 582.5,-122.5 582.5,-98 673,-98 673,-122.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="582.5,-98 582.5,-122.5 673,-122.5 673,-98 582.5,-98"/>
|
||||
<polygon fill="none" stroke="black" points="582.5,-98 582.5,-122.5 673,-122.5 673,-98 582.5,-98"/>
|
||||
<text text-anchor="start" x="586.5" y="-105.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_10 -->
|
||||
<g id="edge8" class="edge">
|
||||
<g id="edge11" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_10:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-114.5C495.04,-114.86 510.66,-103.86 576,-103.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M432,-116.5C496.19,-116.5 511.81,-105.5 576,-105.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-118.5C497.34,-118.14 512.96,-107.14 576,-107.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-118.75C501.56,-119.09 517.22,-108.59 582.5,-108.25"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M438.5,-120.75C502.67,-120.75 518.33,-110.25 582.5,-110.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-122.75C503.78,-122.41 519.44,-111.91 582.5,-112.25"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_11 -->
|
||||
<g id="node7" class="node">
|
||||
<title>AUTOGENERATED_F_11</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="673,-73.5 582.5,-73.5 582.5,-49 673,-49 673,-73.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="582.5,-49 582.5,-73.5 673,-73.5 673,-49 582.5,-49"/>
|
||||
<polygon fill="none" stroke="black" points="582.5,-49 582.5,-73.5 673,-73.5 673,-49 582.5,-49"/>
|
||||
<text text-anchor="start" x="586.5" y="-56.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_11 -->
|
||||
<g id="edge10" class="edge">
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_11:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-89.5C495.79,-90.78 508.47,-57.78 576,-56.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M432,-91.5C497.66,-91.5 510.34,-58.5 576,-58.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-93.5C499.53,-92.22 512.21,-59.22 576,-60.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-92.75C502.34,-94.05 514.92,-60.55 582.5,-59.25"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M438.5,-94.75C504.21,-94.75 516.79,-61.25 582.5,-61.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-96.75C506.08,-95.45 518.66,-61.95 582.5,-63.25"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_12 -->
|
||||
<g id="node8" class="node">
|
||||
<title>AUTOGENERATED_F_12</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="673,-24.5 582.5,-24.5 582.5,0 673,0 673,-24.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="582.5,0 582.5,-24.5 673,-24.5 673,0 582.5,0"/>
|
||||
<polygon fill="none" stroke="black" points="582.5,0 582.5,-24.5 673,-24.5 673,0 582.5,0"/>
|
||||
<text text-anchor="start" x="586.5" y="-7.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_12 -->
|
||||
<g id="edge12" class="edge">
|
||||
<g id="edge13" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_12:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-64.5C498.53,-66.25 505.51,-11.25 576,-9.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M432,-66.5C500.51,-66.5 507.49,-11.5 576,-11.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M432,-68.5C502.49,-66.75 509.47,-11.75 576,-13.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-66.75C505.26,-68.52 511.76,-12.02 582.5,-10.25"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M438.5,-68.75C507.25,-68.75 513.75,-12.25 582.5,-12.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M438.5,-70.75C509.24,-68.98 515.74,-12.48 582.5,-14.25"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_2 -->
|
||||
<g id="node9" class="node">
|
||||
<title>AUTOGENERATED_F_2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="90.5,-220.5 0,-220.5 0,-196 90.5,-196 90.5,-220.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-196 0,-220.5 90.5,-220.5 90.5,-196 0,-196"/>
|
||||
<polygon fill="none" stroke="black" points="0,-196 0,-220.5 90.5,-220.5 90.5,-196 0,-196"/>
|
||||
<text text-anchor="start" x="4" y="-203.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_2--W1 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>AUTOGENERATED_F_2:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-206.25C154.53,-207.6 166.69,-172.1 234.5,-170.75"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M90.5,-208.25C156.42,-208.25 168.58,-172.75 234.5,-172.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-210.25C158.31,-208.9 170.47,-173.4 234.5,-174.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_3 -->
|
||||
<g id="node10" class="node">
|
||||
<title>AUTOGENERATED_F_3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="90.5,-171.5 0,-171.5 0,-147 90.5,-147 90.5,-171.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-147 0,-171.5 90.5,-171.5 90.5,-147 0,-147"/>
|
||||
<polygon fill="none" stroke="black" points="0,-147 0,-171.5 90.5,-171.5 90.5,-147 0,-147"/>
|
||||
<text text-anchor="start" x="4" y="-154.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_3--W1 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>AUTOGENERATED_F_3:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-157.25C153.49,-157.69 169.01,-145.19 234.5,-144.75"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M90.5,-159.25C154.74,-159.25 170.26,-146.75 234.5,-146.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-161.25C155.99,-160.81 171.51,-148.31 234.5,-148.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_4 -->
|
||||
<g id="node11" class="node">
|
||||
<title>AUTOGENERATED_F_4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="90.5,-122.5 0,-122.5 0,-98 90.5,-98 90.5,-122.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-98 0,-122.5 90.5,-122.5 90.5,-98 0,-98"/>
|
||||
<polygon fill="none" stroke="black" points="0,-98 0,-122.5 90.5,-122.5 90.5,-98 0,-98"/>
|
||||
<text text-anchor="start" x="4" y="-105.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_4--W1 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>AUTOGENERATED_F_4:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-108.25C155.78,-108.59 171.44,-119.09 234.5,-118.75"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M90.5,-110.25C154.67,-110.25 170.33,-120.75 234.5,-120.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-112.25C153.56,-111.91 169.22,-122.41 234.5,-122.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_5 -->
|
||||
<g id="node12" class="node">
|
||||
<title>AUTOGENERATED_F_5</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="90.5,-73.5 0,-73.5 0,-49 90.5,-49 90.5,-73.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-49 0,-73.5 90.5,-73.5 90.5,-49 0,-49"/>
|
||||
<polygon fill="none" stroke="black" points="0,-49 0,-73.5 90.5,-73.5 90.5,-49 0,-49"/>
|
||||
<text text-anchor="start" x="4" y="-56.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_5--W1 -->
|
||||
<g id="edge17" class="edge">
|
||||
<title>AUTOGENERATED_F_5:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-59.25C158.08,-60.55 170.66,-94.05 234.5,-92.75"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M90.5,-61.25C156.21,-61.25 168.79,-94.75 234.5,-94.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-63.25C154.34,-61.95 166.92,-95.45 234.5,-96.75"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_6 -->
|
||||
<g id="node13" class="node">
|
||||
<title>AUTOGENERATED_F_6</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="90.5,-24.5 0,-24.5 0,0 90.5,0 90.5,-24.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,0 0,-24.5 90.5,-24.5 90.5,0 0,0"/>
|
||||
<polygon fill="none" stroke="black" points="0,0 0,-24.5 90.5,-24.5 90.5,0 0,0"/>
|
||||
<text text-anchor="start" x="4" y="-7.2" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_6--W1 -->
|
||||
<g id="edge18" class="edge">
|
||||
<title>AUTOGENERATED_F_6:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-10.25C161.24,-12.02 167.74,-68.52 234.5,-66.75"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M90.5,-12.25C159.25,-12.25 165.75,-68.75 234.5,-68.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M90.5,-14.25C157.26,-12.48 163.76,-68.98 234.5,-70.75"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 20 KiB |
8
examples/ex04.tsv
generated
Normal file
@ -0,0 +1,8 @@
|
||||
# Qty Unit Description Designators
|
||||
1 12 Connector, Crimp ferrule
|
||||
2 1 m Wire, 0.25 mm², BN W1
|
||||
3 1 m Wire, 0.25 mm², BU W1
|
||||
4 1 m Wire, 0.25 mm², GN W1
|
||||
5 1 m Wire, 0.25 mm², OG W1
|
||||
6 1 m Wire, 0.25 mm², RD W1
|
||||
7 1 m Wire, 0.25 mm², YE W1
|
||||
|
64
examples/ex04_wv_gvpr.gvpr
Normal file
@ -0,0 +1,64 @@
|
||||
/*******************************************************************
|
||||
|
||||
see https://forum.graphviz.org/t/straitening-one-line-throu-a-table/2196 and https://forum.graphviz.org/t/way-of-drawing-a-black-circle-inside-a-table-field/2273/12
|
||||
input must include pos values (must be output from one of the engines w/ -Tdot)#
|
||||
Thanks to steveroush and FeRDNYC
|
||||
|
||||
*******************************************************************/
|
||||
BEG_G{
|
||||
double x1,y1,x2,y2,x3,y3,x4,y4;
|
||||
string ptSize, tok[int], pt[];
|
||||
int cnt, circ, i;
|
||||
node_t aNode;
|
||||
|
||||
circ=0;
|
||||
|
||||
/***************************************
|
||||
$G.bb="";
|
||||
$G.nodesep="";
|
||||
$G.ranksep="";
|
||||
$G.splines="true";
|
||||
****************************************/
|
||||
}
|
||||
|
||||
// This removes the label text but keeps the position
|
||||
E[noLabel] {
|
||||
$.label=""; // remove pesky label
|
||||
// $.lp=""; // remove peskier label pos
|
||||
}
|
||||
|
||||
E[straight] {
|
||||
cnt=tokens($.pos,tok," ");
|
||||
$.oldpos=$.pos;
|
||||
x1 = xOf(tok[0]);
|
||||
y1 = yOf(tok[0]);
|
||||
x4 = xOf(tok[cnt-1]);
|
||||
y4 = yOf(tok[cnt-1]);
|
||||
x2 = x1 + (x4-x1)/3.;
|
||||
y2 = y1 + (y4-y1)/3.;
|
||||
x3 = x1 + 2.*(x4-x1)/3.;
|
||||
y3 = y1 + 2.*(y4-y1)/3.;
|
||||
pos=sprintf("%.3f,%.3f %.3f,%.3f %.3f,%.3f %.3f,%.3f", x1,y1, x2,y2, x3,y3, x4,y4);
|
||||
$.label=""; // remove pesky label
|
||||
$.lp=""; // remove peskier label pos
|
||||
|
||||
if (hasAttr($, "addPTS") && $.addPTS!="" && $.colorPTS!=""){
|
||||
// now we place point nodes at the edge ends
|
||||
pt[1] = tok[0];
|
||||
pt[2] = tok[cnt-1];
|
||||
ptSize=$.addPTS;
|
||||
for (pt[i]) {
|
||||
if (i==2 && pt[1]==pt[2])
|
||||
continue;
|
||||
aNode=node($G, "__CIRCLE__" + (string)++circ);
|
||||
aNode.pos=pt[i];
|
||||
aNode.shape="point";
|
||||
aNode.width=ptSize;
|
||||
aNode.height=ptSize;
|
||||
aNode.style="filled";
|
||||
aNode.fillcolor=$.colorPTS;
|
||||
aNode.color=$.colorPTS;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
710
examples/ex05.gv
generated
@ -1,317 +1,451 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4-dev
|
||||
// Graph generated by WireViz 0.4-dev251
|
||||
// https://github.com/formatc1702/WireViz
|
||||
graph [bgcolor="#FFFFFF" fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor="#FFFFFF" fontname=arial height=0 margin=0 shape=none style=filled width=0]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Molex KK 254</td>
|
||||
<td balign="left">female</td>
|
||||
<td balign="left">4-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td>GND</td>
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>VCC</td>
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>SCL</td>
|
||||
<td port="p3r">3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>SDA</td>
|
||||
<td port="p4r">4</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Molex KK 254</td>
|
||||
<td>female</td>
|
||||
<td>4-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>GND</td>
|
||||
[]
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>VCC</td>
|
||||
[]
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>SCL</td>
|
||||
[]
|
||||
<td port="p3r">3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>SDA</td>
|
||||
[]
|
||||
<td port="p4r">4</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
X2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X2</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Molex KK 254</td>
|
||||
<td balign="left">female</td>
|
||||
<td balign="left">4-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p3l">3</td>
|
||||
<td>SCL</td>
|
||||
<td port="p3r">3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p4l">4</td>
|
||||
<td>SDA</td>
|
||||
<td port="p4r">4</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Molex KK 254</td>
|
||||
<td>female</td>
|
||||
<td>4-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
[]
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
[]
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p3l">3</td>
|
||||
<td>SCL</td>
|
||||
[]
|
||||
<td port="p3r">3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p4l">4</td>
|
||||
<td>SDA</td>
|
||||
[]
|
||||
<td port="p4r">4</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
X3 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X3</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Molex KK 254</td>
|
||||
<td balign="left">female</td>
|
||||
<td balign="left">4-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p3l">3</td>
|
||||
<td>SCL</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p4l">4</td>
|
||||
<td>SDA</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X3</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Molex KK 254</td>
|
||||
<td>female</td>
|
||||
<td>4-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p3l">3</td>
|
||||
<td>SCL</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p4l">4</td>
|
||||
<td>SDA</td>
|
||||
[]
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
edge [color="#000000:#ff66cc:#000000"]
|
||||
> shape=box style=filled]
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>I2C</td>
|
||||
<td>4x</td>
|
||||
<td>0.25 mm²</td>
|
||||
<td>0.2 m</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:1:GND</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>PK</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:1:GND </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w1">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:2:VCC</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>TQ</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:2:VCC </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w2">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:3:SCL</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>YE</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:3:SCL </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w3">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:4:SDA</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>VT</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:4:SDA </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w4">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#FF66CC:#000000"]
|
||||
X1:p1r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
edge [color="#000000:#00ffff:#000000"]
|
||||
edge [color="#000000:#00FFFF:#000000"]
|
||||
X1:p2r:e -- W1:w2:w
|
||||
W1:w2:e -- X2:p2l:w
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
edge [color="#000000:#FFFF00:#000000"]
|
||||
X1:p3r:e -- W1:w3:w
|
||||
W1:w3:e -- X2:p3l:w
|
||||
edge [color="#000000:#8000ff:#000000"]
|
||||
edge [color="#000000:#8000FF:#000000"]
|
||||
X1:p4r:e -- W1:w4:w
|
||||
W1:w4:e -- X2:p4l:w
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">W1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">I2C</td>
|
||||
<td balign="left">4x</td>
|
||||
<td balign="left">0.25 mm²</td>
|
||||
<td balign="left">0.2 m</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td>X1:1:GND</td>
|
||||
<td>
|
||||
PK
|
||||
</td>
|
||||
<td>X2:1:GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff66cc" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:2:VCC</td>
|
||||
<td>
|
||||
TQ
|
||||
</td>
|
||||
<td>X2:2:VCC</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#00ffff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:3:SCL</td>
|
||||
<td>
|
||||
YE
|
||||
</td>
|
||||
<td>X2:3:SCL</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w3" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ffff00" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:4:SDA</td>
|
||||
<td>
|
||||
VT
|
||||
</td>
|
||||
<td>X2:4:SDA</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w4" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#8000ff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
W1:w1:e -- W1:w1:w [color="#000000:#FF66CC:#000000" straight=straight]
|
||||
W1:w2:e -- W1:w2:w [color="#000000:#00FFFF:#000000" straight=straight]
|
||||
W1:w3:e -- W1:w3:w [color="#000000:#FFFF00:#000000" straight=straight]
|
||||
W1:w4:e -- W1:w4:w [color="#000000:#8000FF:#000000" straight=straight]
|
||||
W2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>W2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>I2C</td>
|
||||
<td>4x</td>
|
||||
<td>0.25 mm²</td>
|
||||
<td>0.2 m</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X2:1:GND</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>PK</td>
|
||||
<td> </td>
|
||||
<td align="right">X3:1:GND </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w1">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X2:2:VCC</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>TQ</td>
|
||||
<td> </td>
|
||||
<td align="right">X3:2:VCC </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w2">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X2:3:SCL</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>YE</td>
|
||||
<td> </td>
|
||||
<td align="right">X3:3:SCL </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w3">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X2:4:SDA</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>VT</td>
|
||||
<td> </td>
|
||||
<td align="right">X3:4:SDA </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w4">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#ff66cc:#000000"]
|
||||
> shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#FF66CC:#000000"]
|
||||
X2:p1r:e -- W2:w1:w
|
||||
W2:w1:e -- X3:p1l:w
|
||||
edge [color="#000000:#00ffff:#000000"]
|
||||
edge [color="#000000:#00FFFF:#000000"]
|
||||
X2:p2r:e -- W2:w2:w
|
||||
W2:w2:e -- X3:p2l:w
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
edge [color="#000000:#FFFF00:#000000"]
|
||||
X2:p3r:e -- W2:w3:w
|
||||
W2:w3:e -- X3:p3l:w
|
||||
edge [color="#000000:#8000ff:#000000"]
|
||||
edge [color="#000000:#8000FF:#000000"]
|
||||
X2:p4r:e -- W2:w4:w
|
||||
W2:w4:e -- X3:p4l:w
|
||||
W2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">W2</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">I2C</td>
|
||||
<td balign="left">4x</td>
|
||||
<td balign="left">0.25 mm²</td>
|
||||
<td balign="left">0.2 m</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td>X2:1:GND</td>
|
||||
<td>
|
||||
PK
|
||||
</td>
|
||||
<td>X3:1:GND</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff66cc" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X2:2:VCC</td>
|
||||
<td>
|
||||
TQ
|
||||
</td>
|
||||
<td>X3:2:VCC</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#00ffff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X2:3:SCL</td>
|
||||
<td>
|
||||
YE
|
||||
</td>
|
||||
<td>X3:3:SCL</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w3" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ffff00" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X2:4:SDA</td>
|
||||
<td>
|
||||
VT
|
||||
</td>
|
||||
<td>X3:4:SDA</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w4" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#8000ff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
|
||||
W2:w1:e -- W2:w1:w [color="#000000:#FF66CC:#000000" straight=straight]
|
||||
W2:w2:e -- W2:w2:w [color="#000000:#00FFFF:#000000" straight=straight]
|
||||
W2:w3:e -- W2:w3:w [color="#000000:#FFFF00:#000000" straight=straight]
|
||||
W2:w4:e -- W2:w4:w [color="#000000:#8000FF:#000000" straight=straight]
|
||||
}
|
||||
|
||||
603
examples/ex05.html
generated
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="generator" content="WireViz 0.4-dev - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.4-dev251 - https://github.com/formatc1702/WireViz">
|
||||
<title>ex05</title>
|
||||
<style>
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
}
|
||||
|
||||
</style>
|
||||
</head><body style="font-family:arial;background-color:#ffffff">
|
||||
</head><body style="font-family:arial;background-color:#FFFFFF">
|
||||
<h1>ex05</h1>
|
||||
<h2>Diagram</h2>
|
||||
|
||||
@ -30,301 +30,378 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1535pt" height="192pt"
|
||||
viewBox="0.00 0.00 1535.00 192.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 188)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-188 1531,-188 1531,4 -4,4"/>
|
||||
<svg width="1525pt" height="201pt"
|
||||
viewBox="0.00 0.00 1524.73 201.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 197)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-197 1520.73,-197 1520.73,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="187,-152 0,-152 0,-14 187,-14 187,-152"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-129 0.5,-152 187.5,-152 187.5,-129 0.5,-129"/>
|
||||
<text text-anchor="start" x="85" y="-136.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-106 0.5,-129 96.5,-129 96.5,-106 0.5,-106"/>
|
||||
<text text-anchor="start" x="4.5" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="96.5,-106 96.5,-129 147.5,-129 147.5,-106 96.5,-106"/>
|
||||
<text text-anchor="start" x="100.5" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="147.5,-106 147.5,-129 187.5,-129 187.5,-106 147.5,-106"/>
|
||||
<text text-anchor="start" x="151.5" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-83 0.5,-106 106.5,-106 106.5,-83 0.5,-83"/>
|
||||
<text text-anchor="start" x="37.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-83 106.5,-106 187.5,-106 187.5,-83 106.5,-83"/>
|
||||
<text text-anchor="start" x="143" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-60 0.5,-83 106.5,-83 106.5,-60 0.5,-60"/>
|
||||
<text text-anchor="start" x="38.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-60 106.5,-83 187.5,-83 187.5,-60 106.5,-60"/>
|
||||
<text text-anchor="start" x="143" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-37 0.5,-60 106.5,-60 106.5,-37 0.5,-37"/>
|
||||
<text text-anchor="start" x="39.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-37 106.5,-60 187.5,-60 187.5,-37 106.5,-37"/>
|
||||
<text text-anchor="start" x="143" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-14 0.5,-37 106.5,-37 106.5,-14 0.5,-14"/>
|
||||
<text text-anchor="start" x="39" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-14 106.5,-37 187.5,-37 187.5,-14 106.5,-14"/>
|
||||
<text text-anchor="start" x="143" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="188.25,-159 0,-159 0,-14 188.25,-14 188.25,-159"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-14 0,-159 188.25,-159 188.25,-14 0,-14"/>
|
||||
<polygon fill="none" stroke="black" points="0,-134.5 0,-159 188.25,-159 188.25,-134.5 0,-134.5"/>
|
||||
<text text-anchor="start" x="85.13" y="-141.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-110 0,-134.5 97.25,-134.5 97.25,-110 0,-110"/>
|
||||
<text text-anchor="start" x="4" y="-117.2" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="97.25,-110 97.25,-134.5 148.75,-134.5 148.75,-110 97.25,-110"/>
|
||||
<text text-anchor="start" x="101.25" y="-117.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="148.75,-110 148.75,-134.5 188.25,-134.5 188.25,-110 148.75,-110"/>
|
||||
<text text-anchor="start" x="152.75" y="-117.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-86 0,-110 105.63,-110 105.63,-86 0,-86"/>
|
||||
<text text-anchor="start" x="37.06" y="-92.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-86 105.63,-110 188.25,-110 188.25,-86 105.63,-86"/>
|
||||
<text text-anchor="start" x="142.81" y="-92.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-62 0,-86 105.63,-86 105.63,-62 0,-62"/>
|
||||
<text text-anchor="start" x="37.44" y="-68.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-62 105.63,-86 188.25,-86 188.25,-62 105.63,-62"/>
|
||||
<text text-anchor="start" x="142.81" y="-68.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-38 0,-62 105.63,-62 105.63,-38 0,-38"/>
|
||||
<text text-anchor="start" x="38.56" y="-44.7" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-38 105.63,-62 188.25,-62 188.25,-38 105.63,-38"/>
|
||||
<text text-anchor="start" x="142.81" y="-44.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-14 0,-38 105.63,-38 105.63,-14 0,-14"/>
|
||||
<text text-anchor="start" x="37.81" y="-20.7" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-14 105.63,-38 188.25,-38 188.25,-14 105.63,-14"/>
|
||||
<text text-anchor="start" x="142.81" y="-20.7" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node4" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="526,-184 331,-184 331,0 526,0 526,-184"/>
|
||||
<polygon fill="none" stroke="black" points="331.5,-161 331.5,-184 526.5,-184 526.5,-161 331.5,-161"/>
|
||||
<text text-anchor="start" x="418.5" y="-168.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="331.5,-138 331.5,-161 369.5,-161 369.5,-138 331.5,-138"/>
|
||||
<text text-anchor="start" x="339.5" y="-145.8" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="369.5,-138 369.5,-161 400.5,-161 400.5,-138 369.5,-138"/>
|
||||
<text text-anchor="start" x="377.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="400.5,-138 400.5,-161 475.5,-161 475.5,-138 400.5,-138"/>
|
||||
<text text-anchor="start" x="408" y="-145.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="475.5,-138 475.5,-161 526.5,-161 526.5,-138 475.5,-138"/>
|
||||
<text text-anchor="start" x="483" y="-145.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="363.5" y="-124.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="333.5" y="-105.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="402" y="-105.8" font-family="arial" font-size="14.00">     PK    </text>
|
||||
<text text-anchor="start" x="460.5" y="-105.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-98 331.5,-100 526.5,-100 526.5,-98 331.5,-98"/>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="331.5,-96 331.5,-98 526.5,-98 526.5,-96 331.5,-96"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-94 331.5,-96 526.5,-96 526.5,-94 331.5,-94"/>
|
||||
<text text-anchor="start" x="334" y="-80.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="401.5" y="-80.8" font-family="arial" font-size="14.00">     TQ    </text>
|
||||
<text text-anchor="start" x="461" y="-80.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-73 331.5,-75 526.5,-75 526.5,-73 331.5,-73"/>
|
||||
<polygon fill="#00ffff" stroke="transparent" points="331.5,-71 331.5,-73 526.5,-73 526.5,-71 331.5,-71"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-69 331.5,-71 526.5,-71 526.5,-69 331.5,-69"/>
|
||||
<text text-anchor="start" x="335.5" y="-55.8" font-family="arial" font-size="14.00">X1:3:SCL</text>
|
||||
<text text-anchor="start" x="402" y="-55.8" font-family="arial" font-size="14.00">     YE    </text>
|
||||
<text text-anchor="start" x="462.5" y="-55.8" font-family="arial" font-size="14.00">X2:3:SCL</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-48 331.5,-50 526.5,-50 526.5,-48 331.5,-48"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="331.5,-46 331.5,-48 526.5,-48 526.5,-46 331.5,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-44 331.5,-46 526.5,-46 526.5,-44 331.5,-44"/>
|
||||
<text text-anchor="start" x="334.5" y="-30.8" font-family="arial" font-size="14.00">X1:4:SDA</text>
|
||||
<text text-anchor="start" x="402.5" y="-30.8" font-family="arial" font-size="14.00">     VT    </text>
|
||||
<text text-anchor="start" x="461.5" y="-30.8" font-family="arial" font-size="14.00">X2:4:SDA</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-23 331.5,-25 526.5,-25 526.5,-23 331.5,-23"/>
|
||||
<polygon fill="#8000ff" stroke="transparent" points="331.5,-21 331.5,-23 526.5,-23 526.5,-21 331.5,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-19 331.5,-21 526.5,-21 526.5,-19 331.5,-19"/>
|
||||
<text text-anchor="start" x="363.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="520.25,-193 332.25,-193 332.25,0 520.25,0 520.25,-193"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,0 332.25,-193 520.25,-193 520.25,0 332.25,0"/>
|
||||
<polygon fill="none" stroke="black" points="332.25,-168.5 332.25,-193 520.25,-193 520.25,-168.5 332.25,-168.5"/>
|
||||
<text text-anchor="start" x="415" y="-175.7" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="332.25,-144 332.25,-168.5 368.75,-168.5 368.75,-144 332.25,-144"/>
|
||||
<text text-anchor="start" x="338.88" y="-151.2" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="368.75,-144 368.75,-168.5 397,-168.5 397,-144 368.75,-144"/>
|
||||
<text text-anchor="start" x="375.38" y="-151.2" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="397,-144 397,-168.5 471,-168.5 471,-144 397,-144"/>
|
||||
<text text-anchor="start" x="403.63" y="-151.2" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="471,-144 471,-168.5 520.25,-168.5 520.25,-144 471,-144"/>
|
||||
<text text-anchor="start" x="477.63" y="-151.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="366.88" y="-128.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="334.25" y="-108.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="406.88" y="-108.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="418.5" y="-108.7" font-family="arial" font-size="14.00">PK</text>
|
||||
<text text-anchor="start" x="441.88" y="-108.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="449.25" y="-108.7" font-family="arial" font-size="14.00">X2:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-102 332.25,-104 520.25,-104 520.25,-102 332.25,-102"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-100 332.25,-102 520.25,-102 520.25,-100 332.25,-100"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-98 332.25,-100 520.25,-100 520.25,-98 332.25,-98"/>
|
||||
<text text-anchor="start" x="334.25" y="-82.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="406.88" y="-82.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="418.13" y="-82.7" font-family="arial" font-size="14.00">TQ</text>
|
||||
<text text-anchor="start" x="441.88" y="-82.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="450" y="-82.7" font-family="arial" font-size="14.00">X2:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-76 332.25,-78 520.25,-78 520.25,-76 332.25,-76"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-74 332.25,-76 520.25,-76 520.25,-74 332.25,-74"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-72 332.25,-74 520.25,-74 520.25,-72 332.25,-72"/>
|
||||
<text text-anchor="start" x="334.25" y="-56.7" font-family="arial" font-size="14.00"> X1:3:SCL</text>
|
||||
<text text-anchor="start" x="406.88" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="418.88" y="-56.7" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="441.88" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="452.25" y="-56.7" font-family="arial" font-size="14.00">X2:3:SCL </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-50 332.25,-52 520.25,-52 520.25,-50 332.25,-50"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-48 332.25,-50 520.25,-50 520.25,-48 332.25,-48"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-46 332.25,-48 520.25,-48 520.25,-46 332.25,-46"/>
|
||||
<text text-anchor="start" x="334.25" y="-30.7" font-family="arial" font-size="14.00"> X1:4:SDA</text>
|
||||
<text text-anchor="start" x="406.88" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="418.88" y="-30.7" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="441.88" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="450.75" y="-30.7" font-family="arial" font-size="14.00">X2:4:SDA </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-24 332.25,-26 520.25,-26 520.25,-24 332.25,-24"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-22 332.25,-24 520.25,-24 520.25,-22 332.25,-22"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-20 332.25,-22 520.25,-22 520.25,-20 332.25,-20"/>
|
||||
<text text-anchor="start" x="366.88" y="-4.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-93C251.25,-93.02 267.24,-95.02 331,-95"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M187,-95C251.01,-95 266.99,-97 331,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-97C250.76,-96.98 266.75,-98.98 331,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-96C252.63,-96.04 268.61,-99.04 332.25,-99"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M188.25,-98C252.26,-98 268.24,-101 332.25,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-100C251.89,-99.97 267.87,-102.97 332.25,-103"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-72C252.38,-72.01 268.38,-73.01 332.25,-73"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M188.25,-74C252.25,-74 268.25,-75 332.25,-75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-76C252.13,-76 268.13,-77 332.25,-77"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-69C251.13,-69 267.12,-70 331,-70"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M187,-71C251,-71 267,-72 331,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-73C250.88,-73 266.87,-74 331,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-48C252.13,-48.01 268.13,-47.01 332.25,-47"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M188.25,-50C252.25,-50 268.25,-49 332.25,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-52C252.38,-52 268.38,-51 332.25,-51"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-24C251.89,-24.04 267.87,-21.04 332.25,-21"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M188.25,-26C252.26,-26 268.24,-23 332.25,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-28C252.63,-27.97 268.61,-24.97 332.25,-25"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-46C250.88,-46 266.87,-45 331,-45"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M187,-48C251,-48 267,-47 331,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-50C251.13,-50 267.12,-49 331,-49"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-103C457.58,-103 394.92,-103 332.25,-103"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M520.25,-101C457.58,-101 394.92,-101 332.25,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-99C457.58,-99 394.92,-99 332.25,-99"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-77C457.58,-77 394.92,-77 332.25,-77"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M520.25,-75C457.58,-75 394.92,-75 332.25,-75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-73C457.58,-73 394.92,-73 332.25,-73"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-23C250.64,-23.03 266.62,-20.03 331,-20"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M187,-25C251.01,-25 266.99,-22 331,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-27C251.38,-26.97 267.36,-23.97 331,-24"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-51C457.58,-51 394.92,-51 332.25,-51"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M520.25,-49C457.58,-49 394.92,-49 332.25,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-47C457.58,-47 394.92,-47 332.25,-47"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-25C457.58,-25 394.92,-25 332.25,-25"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M520.25,-23C457.58,-23 394.92,-23 332.25,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-21C457.58,-21 394.92,-21 332.25,-21"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="857,-152 670,-152 670,-14 857,-14 857,-152"/>
|
||||
<polygon fill="none" stroke="black" points="670.5,-129 670.5,-152 857.5,-152 857.5,-129 670.5,-129"/>
|
||||
<text text-anchor="start" x="755" y="-136.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-106 670.5,-129 766.5,-129 766.5,-106 670.5,-106"/>
|
||||
<text text-anchor="start" x="674.5" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="766.5,-106 766.5,-129 817.5,-129 817.5,-106 766.5,-106"/>
|
||||
<text text-anchor="start" x="770.5" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="817.5,-106 817.5,-129 857.5,-129 857.5,-106 817.5,-106"/>
|
||||
<text text-anchor="start" x="821.5" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-83 670.5,-106 725.5,-106 725.5,-83 670.5,-83"/>
|
||||
<text text-anchor="start" x="694" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="725.5,-83 725.5,-106 803.5,-106 803.5,-83 725.5,-83"/>
|
||||
<text text-anchor="start" x="748.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="803.5,-83 803.5,-106 857.5,-106 857.5,-83 803.5,-83"/>
|
||||
<text text-anchor="start" x="826.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-60 670.5,-83 725.5,-83 725.5,-60 670.5,-60"/>
|
||||
<text text-anchor="start" x="694" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="725.5,-60 725.5,-83 803.5,-83 803.5,-60 725.5,-60"/>
|
||||
<text text-anchor="start" x="749.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="803.5,-60 803.5,-83 857.5,-83 857.5,-60 803.5,-60"/>
|
||||
<text text-anchor="start" x="826.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-37 670.5,-60 725.5,-60 725.5,-37 670.5,-37"/>
|
||||
<text text-anchor="start" x="694" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="725.5,-37 725.5,-60 803.5,-60 803.5,-37 725.5,-37"/>
|
||||
<text text-anchor="start" x="750.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="803.5,-37 803.5,-60 857.5,-60 857.5,-37 803.5,-37"/>
|
||||
<text text-anchor="start" x="826.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-14 670.5,-37 725.5,-37 725.5,-14 670.5,-14"/>
|
||||
<text text-anchor="start" x="694" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="725.5,-14 725.5,-37 803.5,-37 803.5,-14 725.5,-14"/>
|
||||
<text text-anchor="start" x="750" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="803.5,-14 803.5,-37 857.5,-37 857.5,-14 803.5,-14"/>
|
||||
<text text-anchor="start" x="826.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="852.51,-159 664.26,-159 664.26,-14 852.51,-14 852.51,-159"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="664.26,-14 664.26,-159 852.51,-159 852.51,-14 664.26,-14"/>
|
||||
<polygon fill="none" stroke="black" points="664.26,-134.5 664.26,-159 852.51,-159 852.51,-134.5 664.26,-134.5"/>
|
||||
<text text-anchor="start" x="749.38" y="-141.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="664.26,-110 664.26,-134.5 761.51,-134.5 761.51,-110 664.26,-110"/>
|
||||
<text text-anchor="start" x="668.26" y="-117.2" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="761.51,-110 761.51,-134.5 813.01,-134.5 813.01,-110 761.51,-110"/>
|
||||
<text text-anchor="start" x="765.51" y="-117.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="813.01,-110 813.01,-134.5 852.51,-134.5 852.51,-110 813.01,-110"/>
|
||||
<text text-anchor="start" x="817.01" y="-117.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="664.26,-86 664.26,-110 719.34,-110 719.34,-86 664.26,-86"/>
|
||||
<text text-anchor="start" x="687.67" y="-92.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="719.34,-86 719.34,-110 797.42,-110 797.42,-86 719.34,-86"/>
|
||||
<text text-anchor="start" x="742.63" y="-92.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="797.42,-86 797.42,-110 852.51,-110 852.51,-86 797.42,-86"/>
|
||||
<text text-anchor="start" x="820.84" y="-92.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="664.26,-62 664.26,-86 719.34,-86 719.34,-62 664.26,-62"/>
|
||||
<text text-anchor="start" x="687.67" y="-68.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="719.34,-62 719.34,-86 797.42,-86 797.42,-62 719.34,-62"/>
|
||||
<text text-anchor="start" x="743.01" y="-68.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="797.42,-62 797.42,-86 852.51,-86 852.51,-62 797.42,-62"/>
|
||||
<text text-anchor="start" x="820.84" y="-68.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="664.26,-38 664.26,-62 719.34,-62 719.34,-38 664.26,-38"/>
|
||||
<text text-anchor="start" x="687.67" y="-44.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="719.34,-38 719.34,-62 797.42,-62 797.42,-38 719.34,-38"/>
|
||||
<text text-anchor="start" x="744.13" y="-44.7" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="797.42,-38 797.42,-62 852.51,-62 852.51,-38 797.42,-38"/>
|
||||
<text text-anchor="start" x="820.84" y="-44.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="664.26,-14 664.26,-38 719.34,-38 719.34,-14 664.26,-14"/>
|
||||
<text text-anchor="start" x="687.67" y="-20.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="719.34,-14 719.34,-38 797.42,-38 797.42,-14 719.34,-14"/>
|
||||
<text text-anchor="start" x="743.38" y="-20.7" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="797.42,-14 797.42,-38 852.51,-38 852.51,-14 797.42,-14"/>
|
||||
<text text-anchor="start" x="820.84" y="-20.7" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-99C583.89,-99.04 599.87,-96.04 664.25,-96"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M520.25,-101C584.26,-101 600.24,-98 664.25,-98"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-103C584.63,-102.97 600.61,-99.97 664.25,-100"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-73C584.13,-73.01 600.13,-72.01 664.25,-72"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M520.25,-75C584.25,-75 600.25,-74 664.25,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-77C584.38,-77 600.38,-76 664.25,-76"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-47C584.38,-47.01 600.38,-48.01 664.25,-48"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M520.25,-49C584.25,-49 600.25,-50 664.25,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-51C584.13,-51 600.13,-52 664.25,-52"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-21C584.63,-21.04 600.61,-24.04 664.25,-24"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M520.25,-23C584.26,-23 600.24,-26 664.25,-26"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-25C583.89,-24.97 599.87,-27.97 664.25,-28"/>
|
||||
</g>
|
||||
<!-- W2 -->
|
||||
<g id="node5" class="node">
|
||||
<g id="node4" class="node">
|
||||
<title>W2</title>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1196,-184 1001,-184 1001,0 1196,0 1196,-184"/>
|
||||
<polygon fill="none" stroke="black" points="1001.5,-161 1001.5,-184 1196.5,-184 1196.5,-161 1001.5,-161"/>
|
||||
<text text-anchor="start" x="1088.5" y="-168.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="1001.5,-138 1001.5,-161 1039.5,-161 1039.5,-138 1001.5,-138"/>
|
||||
<text text-anchor="start" x="1009.5" y="-145.8" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="1039.5,-138 1039.5,-161 1070.5,-161 1070.5,-138 1039.5,-138"/>
|
||||
<text text-anchor="start" x="1047.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1070.5,-138 1070.5,-161 1145.5,-161 1145.5,-138 1070.5,-138"/>
|
||||
<text text-anchor="start" x="1078" y="-145.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="1145.5,-138 1145.5,-161 1196.5,-161 1196.5,-138 1145.5,-138"/>
|
||||
<text text-anchor="start" x="1153" y="-145.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="1033.5" y="-124.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1003.5" y="-105.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<text text-anchor="start" x="1072" y="-105.8" font-family="arial" font-size="14.00">     PK    </text>
|
||||
<text text-anchor="start" x="1130.5" y="-105.8" font-family="arial" font-size="14.00">X3:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="1001.5,-98 1001.5,-100 1196.5,-100 1196.5,-98 1001.5,-98"/>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="1001.5,-96 1001.5,-98 1196.5,-98 1196.5,-96 1001.5,-96"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="1001.5,-94 1001.5,-96 1196.5,-96 1196.5,-94 1001.5,-94"/>
|
||||
<text text-anchor="start" x="1004" y="-80.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<text text-anchor="start" x="1071.5" y="-80.8" font-family="arial" font-size="14.00">     TQ    </text>
|
||||
<text text-anchor="start" x="1131" y="-80.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="1001.5,-73 1001.5,-75 1196.5,-75 1196.5,-73 1001.5,-73"/>
|
||||
<polygon fill="#00ffff" stroke="transparent" points="1001.5,-71 1001.5,-73 1196.5,-73 1196.5,-71 1001.5,-71"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="1001.5,-69 1001.5,-71 1196.5,-71 1196.5,-69 1001.5,-69"/>
|
||||
<text text-anchor="start" x="1005.5" y="-55.8" font-family="arial" font-size="14.00">X2:3:SCL</text>
|
||||
<text text-anchor="start" x="1072" y="-55.8" font-family="arial" font-size="14.00">     YE    </text>
|
||||
<text text-anchor="start" x="1132.5" y="-55.8" font-family="arial" font-size="14.00">X3:3:SCL</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="1001.5,-48 1001.5,-50 1196.5,-50 1196.5,-48 1001.5,-48"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="1001.5,-46 1001.5,-48 1196.5,-48 1196.5,-46 1001.5,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="1001.5,-44 1001.5,-46 1196.5,-46 1196.5,-44 1001.5,-44"/>
|
||||
<text text-anchor="start" x="1004.5" y="-30.8" font-family="arial" font-size="14.00">X2:4:SDA</text>
|
||||
<text text-anchor="start" x="1072.5" y="-30.8" font-family="arial" font-size="14.00">     VT    </text>
|
||||
<text text-anchor="start" x="1131.5" y="-30.8" font-family="arial" font-size="14.00">X3:4:SDA</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="1001.5,-23 1001.5,-25 1196.5,-25 1196.5,-23 1001.5,-23"/>
|
||||
<polygon fill="#8000ff" stroke="transparent" points="1001.5,-21 1001.5,-23 1196.5,-23 1196.5,-21 1001.5,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="1001.5,-19 1001.5,-21 1196.5,-21 1196.5,-19 1001.5,-19"/>
|
||||
<text text-anchor="start" x="1033.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M857,-93C921.25,-93.02 937.24,-95.02 1001,-95"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M857,-95C921.01,-95 936.99,-97 1001,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M857,-97C920.76,-96.98 936.75,-98.98 1001,-99"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M857,-69C921.13,-69 937.12,-70 1001,-70"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M857,-71C921,-71 937,-72 1001,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M857,-73C920.88,-73 936.87,-74 1001,-74"/>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1184.5,-193 996.5,-193 996.5,0 1184.5,0 1184.5,-193"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,0 996.5,-193 1184.5,-193 1184.5,0 996.5,0"/>
|
||||
<polygon fill="none" stroke="black" points="996.5,-168.5 996.5,-193 1184.5,-193 1184.5,-168.5 996.5,-168.5"/>
|
||||
<text text-anchor="start" x="1079.25" y="-175.7" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="996.5,-144 996.5,-168.5 1033,-168.5 1033,-144 996.5,-144"/>
|
||||
<text text-anchor="start" x="1003.13" y="-151.2" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="1033,-144 1033,-168.5 1061.25,-168.5 1061.25,-144 1033,-144"/>
|
||||
<text text-anchor="start" x="1039.63" y="-151.2" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1061.25,-144 1061.25,-168.5 1135.25,-168.5 1135.25,-144 1061.25,-144"/>
|
||||
<text text-anchor="start" x="1067.88" y="-151.2" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="1135.25,-144 1135.25,-168.5 1184.5,-168.5 1184.5,-144 1135.25,-144"/>
|
||||
<text text-anchor="start" x="1141.88" y="-151.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="1031.13" y="-128.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="998.5" y="-108.7" font-family="arial" font-size="14.00"> X2:1:GND</text>
|
||||
<text text-anchor="start" x="1071.13" y="-108.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1082.75" y="-108.7" font-family="arial" font-size="14.00">PK</text>
|
||||
<text text-anchor="start" x="1106.13" y="-108.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1113.5" y="-108.7" font-family="arial" font-size="14.00">X3:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-102 996.5,-104 1184.5,-104 1184.5,-102 996.5,-102"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-100 996.5,-102 1184.5,-102 1184.5,-100 996.5,-100"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-98 996.5,-100 1184.5,-100 1184.5,-98 996.5,-98"/>
|
||||
<text text-anchor="start" x="998.5" y="-82.7" font-family="arial" font-size="14.00"> X2:2:VCC</text>
|
||||
<text text-anchor="start" x="1071.13" y="-82.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1082.38" y="-82.7" font-family="arial" font-size="14.00">TQ</text>
|
||||
<text text-anchor="start" x="1106.13" y="-82.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1114.25" y="-82.7" font-family="arial" font-size="14.00">X3:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-76 996.5,-78 1184.5,-78 1184.5,-76 996.5,-76"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-74 996.5,-76 1184.5,-76 1184.5,-74 996.5,-74"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-72 996.5,-74 1184.5,-74 1184.5,-72 996.5,-72"/>
|
||||
<text text-anchor="start" x="998.5" y="-56.7" font-family="arial" font-size="14.00"> X2:3:SCL</text>
|
||||
<text text-anchor="start" x="1071.13" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1083.13" y="-56.7" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="1106.13" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1116.5" y="-56.7" font-family="arial" font-size="14.00">X3:3:SCL </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-50 996.5,-52 1184.5,-52 1184.5,-50 996.5,-50"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-48 996.5,-50 1184.5,-50 1184.5,-48 996.5,-48"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-46 996.5,-48 1184.5,-48 1184.5,-46 996.5,-46"/>
|
||||
<text text-anchor="start" x="998.5" y="-30.7" font-family="arial" font-size="14.00"> X2:4:SDA</text>
|
||||
<text text-anchor="start" x="1071.13" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1083.13" y="-30.7" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="1106.13" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1115" y="-30.7" font-family="arial" font-size="14.00">X3:4:SDA </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-24 996.5,-26 1184.5,-26 1184.5,-24 996.5,-24"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-22 996.5,-24 1184.5,-24 1184.5,-22 996.5,-22"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-20 996.5,-22 1184.5,-22 1184.5,-20 996.5,-20"/>
|
||||
<text text-anchor="start" x="1031.13" y="-4.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M857,-46C920.88,-46 936.87,-45 1001,-45"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M857,-48C921,-48 937,-47 1001,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M857,-50C921.13,-50 937.12,-49 1001,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M852.5,-96C916.88,-96.04 932.86,-99.04 996.5,-99"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M852.5,-98C916.51,-98 932.49,-101 996.5,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M852.5,-100C916.14,-99.97 932.12,-102.97 996.5,-103"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M852.5,-72C916.63,-72.01 932.63,-73.01 996.5,-73"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M852.5,-74C916.5,-74 932.5,-75 996.5,-75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M852.5,-76C916.38,-76 932.38,-77 996.5,-77"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M857,-23C920.64,-23.03 936.62,-20.03 1001,-20"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M857,-25C921.01,-25 936.99,-22 1001,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M857,-27C921.38,-26.97 937.36,-23.97 1001,-24"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M852.5,-48C916.38,-48.01 932.38,-47.01 996.5,-47"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M852.5,-50C916.5,-50 932.5,-49 996.5,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M852.5,-52C916.63,-52 932.63,-51 996.5,-51"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M852.5,-24C916.14,-24.04 932.12,-21.04 996.5,-21"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M852.5,-26C916.51,-26 932.49,-23 996.5,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M852.5,-28C916.88,-27.97 932.86,-24.97 996.5,-25"/>
|
||||
</g>
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge17" class="edge">
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-103C1121.83,-103 1059.17,-103 996.5,-103"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1184.5,-101C1121.83,-101 1059.17,-101 996.5,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-99C1121.83,-99 1059.17,-99 996.5,-99"/>
|
||||
</g>
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge18" class="edge">
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-77C1121.83,-77 1059.17,-77 996.5,-77"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M1184.5,-75C1121.83,-75 1059.17,-75 996.5,-75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-73C1121.83,-73 1059.17,-73 996.5,-73"/>
|
||||
</g>
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge19" class="edge">
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-51C1121.83,-51 1059.17,-51 996.5,-51"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1184.5,-49C1121.83,-49 1059.17,-49 996.5,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-47C1121.83,-47 1059.17,-47 996.5,-47"/>
|
||||
</g>
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge20" class="edge">
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-25C1121.83,-25 1059.17,-25 996.5,-25"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M1184.5,-23C1121.83,-23 1059.17,-23 996.5,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-21C1121.83,-21 1059.17,-21 996.5,-21"/>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node5" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="1527,-152 1340,-152 1340,-14 1527,-14 1527,-152"/>
|
||||
<polygon fill="none" stroke="black" points="1340.5,-129 1340.5,-152 1527.5,-152 1527.5,-129 1340.5,-129"/>
|
||||
<text text-anchor="start" x="1425" y="-136.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="1340.5,-106 1340.5,-129 1436.5,-129 1436.5,-106 1340.5,-106"/>
|
||||
<text text-anchor="start" x="1344.5" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="1436.5,-106 1436.5,-129 1487.5,-129 1487.5,-106 1436.5,-106"/>
|
||||
<text text-anchor="start" x="1440.5" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="1487.5,-106 1487.5,-129 1527.5,-129 1527.5,-106 1487.5,-106"/>
|
||||
<text text-anchor="start" x="1491.5" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="1340.5,-83 1340.5,-106 1422.5,-106 1422.5,-83 1340.5,-83"/>
|
||||
<text text-anchor="start" x="1377.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="1422.5,-83 1422.5,-106 1527.5,-106 1527.5,-83 1422.5,-83"/>
|
||||
<text text-anchor="start" x="1459" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="1340.5,-60 1340.5,-83 1422.5,-83 1422.5,-60 1340.5,-60"/>
|
||||
<text text-anchor="start" x="1377.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="1422.5,-60 1422.5,-83 1527.5,-83 1527.5,-60 1422.5,-60"/>
|
||||
<text text-anchor="start" x="1460" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="1340.5,-37 1340.5,-60 1422.5,-60 1422.5,-37 1340.5,-37"/>
|
||||
<text text-anchor="start" x="1377.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="1422.5,-37 1422.5,-60 1527.5,-60 1527.5,-37 1422.5,-37"/>
|
||||
<text text-anchor="start" x="1461" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="1340.5,-14 1340.5,-37 1422.5,-37 1422.5,-14 1340.5,-14"/>
|
||||
<text text-anchor="start" x="1377.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="1422.5,-14 1422.5,-37 1527.5,-37 1527.5,-14 1422.5,-14"/>
|
||||
<text text-anchor="start" x="1460.5" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-95C589.76,-95.02 605.75,-93.02 670,-93"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M526,-97C590.01,-97 605.99,-95 670,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-99C590.25,-98.98 606.24,-96.98 670,-97"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-70C589.88,-70 605.87,-69 670,-69"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M526,-72C590,-72 606,-71 670,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-74C590.13,-74 606.12,-73 670,-73"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-45C590.13,-45 606.12,-46 670,-46"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M526,-47C590,-47 606,-48 670,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-49C589.88,-49 605.87,-50 670,-50"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-20C590.38,-20.03 606.36,-23.03 670,-23"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M526,-22C590.01,-22 605.99,-25 670,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-24C589.64,-23.97 605.62,-26.97 670,-27"/>
|
||||
<polygon fill="#ffffff" stroke="black" points="1516.73,-159 1328.47,-159 1328.47,-14 1516.73,-14 1516.73,-159"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="1328.48,-14 1328.48,-159 1516.73,-159 1516.73,-14 1328.48,-14"/>
|
||||
<polygon fill="none" stroke="black" points="1328.48,-134.5 1328.48,-159 1516.73,-159 1516.73,-134.5 1328.48,-134.5"/>
|
||||
<text text-anchor="start" x="1413.6" y="-141.7" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="1328.48,-110 1328.48,-134.5 1425.73,-134.5 1425.73,-110 1328.48,-110"/>
|
||||
<text text-anchor="start" x="1332.48" y="-117.2" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="1425.73,-110 1425.73,-134.5 1477.23,-134.5 1477.23,-110 1425.73,-110"/>
|
||||
<text text-anchor="start" x="1429.73" y="-117.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="1477.23,-110 1477.23,-134.5 1516.73,-134.5 1516.73,-110 1477.23,-110"/>
|
||||
<text text-anchor="start" x="1481.23" y="-117.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="1328.48,-86 1328.48,-110 1411.1,-110 1411.1,-86 1328.48,-86"/>
|
||||
<text text-anchor="start" x="1365.66" y="-92.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="1411.1,-86 1411.1,-110 1516.73,-110 1516.73,-86 1411.1,-86"/>
|
||||
<text text-anchor="start" x="1448.16" y="-92.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="1328.48,-62 1328.48,-86 1411.1,-86 1411.1,-62 1328.48,-62"/>
|
||||
<text text-anchor="start" x="1365.66" y="-68.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="1411.1,-62 1411.1,-86 1516.73,-86 1516.73,-62 1411.1,-62"/>
|
||||
<text text-anchor="start" x="1448.54" y="-68.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="1328.48,-38 1328.48,-62 1411.1,-62 1411.1,-38 1328.48,-38"/>
|
||||
<text text-anchor="start" x="1365.66" y="-44.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="1411.1,-38 1411.1,-62 1516.73,-62 1516.73,-38 1411.1,-38"/>
|
||||
<text text-anchor="start" x="1449.66" y="-44.7" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="1328.48,-14 1328.48,-38 1411.1,-38 1411.1,-14 1328.48,-14"/>
|
||||
<text text-anchor="start" x="1365.66" y="-20.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="1411.1,-14 1411.1,-38 1516.73,-38 1516.73,-14 1411.1,-14"/>
|
||||
<text text-anchor="start" x="1448.91" y="-20.7" font-family="arial" font-size="14.00">SDA</text>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge10" class="edge">
|
||||
<g id="edge21" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1196,-95C1259.76,-95.02 1275.75,-93.02 1340,-93"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1196,-97C1260.01,-97 1275.99,-95 1340,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1196,-99C1260.25,-98.98 1276.24,-96.98 1340,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-99C1248.13,-99.04 1264.13,-96.04 1328.5,-96"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1184.5,-101C1248.5,-101 1264.5,-98 1328.5,-98"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-103C1248.87,-102.97 1264.87,-99.97 1328.5,-100"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge12" class="edge">
|
||||
<g id="edge22" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1196,-70C1259.88,-70 1275.87,-69 1340,-69"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M1196,-72C1260,-72 1276,-71 1340,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1196,-74C1260.13,-74 1276.12,-73 1340,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-73C1248.38,-73.01 1264.38,-72.01 1328.5,-72"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M1184.5,-75C1248.5,-75 1264.5,-74 1328.5,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-77C1248.63,-77 1264.63,-76 1328.5,-76"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge14" class="edge">
|
||||
<g id="edge23" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1196,-45C1260.13,-45 1276.12,-46 1340,-46"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1196,-47C1260,-47 1276,-48 1340,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1196,-49C1259.88,-49 1275.87,-50 1340,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-47C1248.63,-47.01 1264.63,-48.01 1328.5,-48"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1184.5,-49C1248.5,-49 1264.5,-50 1328.5,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-51C1248.38,-51 1264.38,-52 1328.5,-52"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge16" class="edge">
|
||||
<g id="edge24" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1196,-20C1260.38,-20.03 1276.36,-23.03 1340,-23"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M1196,-22C1260.01,-22 1275.99,-25 1340,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1196,-24C1259.64,-23.97 1275.62,-26.97 1340,-27"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-21C1248.87,-21.04 1264.87,-24.04 1328.5,-24"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M1184.5,-23C1248.5,-23 1264.5,-26 1328.5,-26"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-25C1248.13,-24.97 1264.13,-27.97 1328.5,-28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
@ -340,45 +417,45 @@
|
||||
<div id="bom">
|
||||
<table class="bom">
|
||||
<tr>
|
||||
<th class="bom_col_id">Id</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_#">#</th>
|
||||
<th class="bom_col_qty">Qty</th>
|
||||
<th class="bom_col_unit">Unit</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_designators">Designators</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">1</td>
|
||||
<td class="bom_col_description">Connector, <a href="https://www.molex.com/molex/products/family/kk_254_rpc_connector_system">Molex KK 254</a>, female, 4 pins</td>
|
||||
<td class="bom_col_#">1</td>
|
||||
<td class="bom_col_qty">3</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, <a href="https://www.molex.com/molex/products/family/kk_254_rpc_connector_system">Molex KK 254</a>, female, 4 pins</td>
|
||||
<td class="bom_col_designators">X1, X2, X3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">2</td>
|
||||
<td class="bom_col_#">2</td>
|
||||
<td class="bom_col_qty">2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Wire, I2C, 0.25 mm², PK</td>
|
||||
<td class="bom_col_qty">0.4</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W1, W2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">3</td>
|
||||
<td class="bom_col_#">3</td>
|
||||
<td class="bom_col_qty">2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Wire, I2C, 0.25 mm², TQ</td>
|
||||
<td class="bom_col_qty">0.4</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W1, W2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">4</td>
|
||||
<td class="bom_col_#">4</td>
|
||||
<td class="bom_col_qty">2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Wire, I2C, 0.25 mm², VT</td>
|
||||
<td class="bom_col_qty">0.4</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W1, W2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">5</td>
|
||||
<td class="bom_col_description">Wire, I2C, 0.25 mm², YE</td>
|
||||
<td class="bom_col_qty">0.4</td>
|
||||
<td class="bom_col_#">5</td>
|
||||
<td class="bom_col_qty">2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Wire, I2C, 0.25 mm², YE</td>
|
||||
<td class="bom_col_designators">W1, W2</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
BIN
examples/ex05.png
generated
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 44 KiB |
567
examples/ex05.svg
generated
@ -1,301 +1,378 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1535pt" height="192pt"
|
||||
viewBox="0.00 0.00 1535.00 192.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 188)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-188 1531,-188 1531,4 -4,4"/>
|
||||
<svg width="1525pt" height="201pt"
|
||||
viewBox="0.00 0.00 1524.73 201.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 197)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-197 1520.73,-197 1520.73,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="187,-152 0,-152 0,-14 187,-14 187,-152"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-129 0.5,-152 187.5,-152 187.5,-129 0.5,-129"/>
|
||||
<text text-anchor="start" x="85" y="-136.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-106 0.5,-129 96.5,-129 96.5,-106 0.5,-106"/>
|
||||
<text text-anchor="start" x="4.5" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="96.5,-106 96.5,-129 147.5,-129 147.5,-106 96.5,-106"/>
|
||||
<text text-anchor="start" x="100.5" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="147.5,-106 147.5,-129 187.5,-129 187.5,-106 147.5,-106"/>
|
||||
<text text-anchor="start" x="151.5" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-83 0.5,-106 106.5,-106 106.5,-83 0.5,-83"/>
|
||||
<text text-anchor="start" x="37.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-83 106.5,-106 187.5,-106 187.5,-83 106.5,-83"/>
|
||||
<text text-anchor="start" x="143" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-60 0.5,-83 106.5,-83 106.5,-60 0.5,-60"/>
|
||||
<text text-anchor="start" x="38.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-60 106.5,-83 187.5,-83 187.5,-60 106.5,-60"/>
|
||||
<text text-anchor="start" x="143" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-37 0.5,-60 106.5,-60 106.5,-37 0.5,-37"/>
|
||||
<text text-anchor="start" x="39.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-37 106.5,-60 187.5,-60 187.5,-37 106.5,-37"/>
|
||||
<text text-anchor="start" x="143" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-14 0.5,-37 106.5,-37 106.5,-14 0.5,-14"/>
|
||||
<text text-anchor="start" x="39" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="106.5,-14 106.5,-37 187.5,-37 187.5,-14 106.5,-14"/>
|
||||
<text text-anchor="start" x="143" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="188.25,-159 0,-159 0,-14 188.25,-14 188.25,-159"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-14 0,-159 188.25,-159 188.25,-14 0,-14"/>
|
||||
<polygon fill="none" stroke="black" points="0,-134.5 0,-159 188.25,-159 188.25,-134.5 0,-134.5"/>
|
||||
<text text-anchor="start" x="85.13" y="-141.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-110 0,-134.5 97.25,-134.5 97.25,-110 0,-110"/>
|
||||
<text text-anchor="start" x="4" y="-117.2" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="97.25,-110 97.25,-134.5 148.75,-134.5 148.75,-110 97.25,-110"/>
|
||||
<text text-anchor="start" x="101.25" y="-117.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="148.75,-110 148.75,-134.5 188.25,-134.5 188.25,-110 148.75,-110"/>
|
||||
<text text-anchor="start" x="152.75" y="-117.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-86 0,-110 105.63,-110 105.63,-86 0,-86"/>
|
||||
<text text-anchor="start" x="37.06" y="-92.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-86 105.63,-110 188.25,-110 188.25,-86 105.63,-86"/>
|
||||
<text text-anchor="start" x="142.81" y="-92.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-62 0,-86 105.63,-86 105.63,-62 0,-62"/>
|
||||
<text text-anchor="start" x="37.44" y="-68.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-62 105.63,-86 188.25,-86 188.25,-62 105.63,-62"/>
|
||||
<text text-anchor="start" x="142.81" y="-68.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-38 0,-62 105.63,-62 105.63,-38 0,-38"/>
|
||||
<text text-anchor="start" x="38.56" y="-44.7" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-38 105.63,-62 188.25,-62 188.25,-38 105.63,-38"/>
|
||||
<text text-anchor="start" x="142.81" y="-44.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-14 0,-38 105.63,-38 105.63,-14 0,-14"/>
|
||||
<text text-anchor="start" x="37.81" y="-20.7" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-14 105.63,-38 188.25,-38 188.25,-14 105.63,-14"/>
|
||||
<text text-anchor="start" x="142.81" y="-20.7" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node4" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="526,-184 331,-184 331,0 526,0 526,-184"/>
|
||||
<polygon fill="none" stroke="black" points="331.5,-161 331.5,-184 526.5,-184 526.5,-161 331.5,-161"/>
|
||||
<text text-anchor="start" x="418.5" y="-168.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="331.5,-138 331.5,-161 369.5,-161 369.5,-138 331.5,-138"/>
|
||||
<text text-anchor="start" x="339.5" y="-145.8" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="369.5,-138 369.5,-161 400.5,-161 400.5,-138 369.5,-138"/>
|
||||
<text text-anchor="start" x="377.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="400.5,-138 400.5,-161 475.5,-161 475.5,-138 400.5,-138"/>
|
||||
<text text-anchor="start" x="408" y="-145.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="475.5,-138 475.5,-161 526.5,-161 526.5,-138 475.5,-138"/>
|
||||
<text text-anchor="start" x="483" y="-145.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="363.5" y="-124.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="333.5" y="-105.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="402" y="-105.8" font-family="arial" font-size="14.00">     PK    </text>
|
||||
<text text-anchor="start" x="460.5" y="-105.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-98 331.5,-100 526.5,-100 526.5,-98 331.5,-98"/>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="331.5,-96 331.5,-98 526.5,-98 526.5,-96 331.5,-96"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-94 331.5,-96 526.5,-96 526.5,-94 331.5,-94"/>
|
||||
<text text-anchor="start" x="334" y="-80.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="401.5" y="-80.8" font-family="arial" font-size="14.00">     TQ    </text>
|
||||
<text text-anchor="start" x="461" y="-80.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-73 331.5,-75 526.5,-75 526.5,-73 331.5,-73"/>
|
||||
<polygon fill="#00ffff" stroke="transparent" points="331.5,-71 331.5,-73 526.5,-73 526.5,-71 331.5,-71"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-69 331.5,-71 526.5,-71 526.5,-69 331.5,-69"/>
|
||||
<text text-anchor="start" x="335.5" y="-55.8" font-family="arial" font-size="14.00">X1:3:SCL</text>
|
||||
<text text-anchor="start" x="402" y="-55.8" font-family="arial" font-size="14.00">     YE    </text>
|
||||
<text text-anchor="start" x="462.5" y="-55.8" font-family="arial" font-size="14.00">X2:3:SCL</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-48 331.5,-50 526.5,-50 526.5,-48 331.5,-48"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="331.5,-46 331.5,-48 526.5,-48 526.5,-46 331.5,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-44 331.5,-46 526.5,-46 526.5,-44 331.5,-44"/>
|
||||
<text text-anchor="start" x="334.5" y="-30.8" font-family="arial" font-size="14.00">X1:4:SDA</text>
|
||||
<text text-anchor="start" x="402.5" y="-30.8" font-family="arial" font-size="14.00">     VT    </text>
|
||||
<text text-anchor="start" x="461.5" y="-30.8" font-family="arial" font-size="14.00">X2:4:SDA</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-23 331.5,-25 526.5,-25 526.5,-23 331.5,-23"/>
|
||||
<polygon fill="#8000ff" stroke="transparent" points="331.5,-21 331.5,-23 526.5,-23 526.5,-21 331.5,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="331.5,-19 331.5,-21 526.5,-21 526.5,-19 331.5,-19"/>
|
||||
<text text-anchor="start" x="363.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="520.25,-193 332.25,-193 332.25,0 520.25,0 520.25,-193"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,0 332.25,-193 520.25,-193 520.25,0 332.25,0"/>
|
||||
<polygon fill="none" stroke="black" points="332.25,-168.5 332.25,-193 520.25,-193 520.25,-168.5 332.25,-168.5"/>
|
||||
<text text-anchor="start" x="415" y="-175.7" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="332.25,-144 332.25,-168.5 368.75,-168.5 368.75,-144 332.25,-144"/>
|
||||
<text text-anchor="start" x="338.88" y="-151.2" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="368.75,-144 368.75,-168.5 397,-168.5 397,-144 368.75,-144"/>
|
||||
<text text-anchor="start" x="375.38" y="-151.2" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="397,-144 397,-168.5 471,-168.5 471,-144 397,-144"/>
|
||||
<text text-anchor="start" x="403.63" y="-151.2" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="471,-144 471,-168.5 520.25,-168.5 520.25,-144 471,-144"/>
|
||||
<text text-anchor="start" x="477.63" y="-151.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="366.88" y="-128.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="334.25" y="-108.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="406.88" y="-108.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="418.5" y="-108.7" font-family="arial" font-size="14.00">PK</text>
|
||||
<text text-anchor="start" x="441.88" y="-108.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="449.25" y="-108.7" font-family="arial" font-size="14.00">X2:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-102 332.25,-104 520.25,-104 520.25,-102 332.25,-102"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-100 332.25,-102 520.25,-102 520.25,-100 332.25,-100"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-98 332.25,-100 520.25,-100 520.25,-98 332.25,-98"/>
|
||||
<text text-anchor="start" x="334.25" y="-82.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="406.88" y="-82.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="418.13" y="-82.7" font-family="arial" font-size="14.00">TQ</text>
|
||||
<text text-anchor="start" x="441.88" y="-82.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="450" y="-82.7" font-family="arial" font-size="14.00">X2:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-76 332.25,-78 520.25,-78 520.25,-76 332.25,-76"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-74 332.25,-76 520.25,-76 520.25,-74 332.25,-74"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-72 332.25,-74 520.25,-74 520.25,-72 332.25,-72"/>
|
||||
<text text-anchor="start" x="334.25" y="-56.7" font-family="arial" font-size="14.00"> X1:3:SCL</text>
|
||||
<text text-anchor="start" x="406.88" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="418.88" y="-56.7" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="441.88" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="452.25" y="-56.7" font-family="arial" font-size="14.00">X2:3:SCL </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-50 332.25,-52 520.25,-52 520.25,-50 332.25,-50"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-48 332.25,-50 520.25,-50 520.25,-48 332.25,-48"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-46 332.25,-48 520.25,-48 520.25,-46 332.25,-46"/>
|
||||
<text text-anchor="start" x="334.25" y="-30.7" font-family="arial" font-size="14.00"> X1:4:SDA</text>
|
||||
<text text-anchor="start" x="406.88" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="418.88" y="-30.7" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="441.88" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="450.75" y="-30.7" font-family="arial" font-size="14.00">X2:4:SDA </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-24 332.25,-26 520.25,-26 520.25,-24 332.25,-24"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-22 332.25,-24 520.25,-24 520.25,-22 332.25,-22"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,-20 332.25,-22 520.25,-22 520.25,-20 332.25,-20"/>
|
||||
<text text-anchor="start" x="366.88" y="-4.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-93C251.25,-93.02 267.24,-95.02 331,-95"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M187,-95C251.01,-95 266.99,-97 331,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-97C250.76,-96.98 266.75,-98.98 331,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-96C252.63,-96.04 268.61,-99.04 332.25,-99"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M188.25,-98C252.26,-98 268.24,-101 332.25,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-100C251.89,-99.97 267.87,-102.97 332.25,-103"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-72C252.38,-72.01 268.38,-73.01 332.25,-73"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M188.25,-74C252.25,-74 268.25,-75 332.25,-75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-76C252.13,-76 268.13,-77 332.25,-77"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-69C251.13,-69 267.12,-70 331,-70"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M187,-71C251,-71 267,-72 331,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-73C250.88,-73 266.87,-74 331,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-48C252.13,-48.01 268.13,-47.01 332.25,-47"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M188.25,-50C252.25,-50 268.25,-49 332.25,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-52C252.38,-52 268.38,-51 332.25,-51"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-24C251.89,-24.04 267.87,-21.04 332.25,-21"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M188.25,-26C252.26,-26 268.24,-23 332.25,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-28C252.63,-27.97 268.61,-24.97 332.25,-25"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-46C250.88,-46 266.87,-45 331,-45"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M187,-48C251,-48 267,-47 331,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-50C251.13,-50 267.12,-49 331,-49"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-103C457.58,-103 394.92,-103 332.25,-103"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M520.25,-101C457.58,-101 394.92,-101 332.25,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-99C457.58,-99 394.92,-99 332.25,-99"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-77C457.58,-77 394.92,-77 332.25,-77"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M520.25,-75C457.58,-75 394.92,-75 332.25,-75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-73C457.58,-73 394.92,-73 332.25,-73"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-23C250.64,-23.03 266.62,-20.03 331,-20"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M187,-25C251.01,-25 266.99,-22 331,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M187,-27C251.38,-26.97 267.36,-23.97 331,-24"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-51C457.58,-51 394.92,-51 332.25,-51"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M520.25,-49C457.58,-49 394.92,-49 332.25,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-47C457.58,-47 394.92,-47 332.25,-47"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-25C457.58,-25 394.92,-25 332.25,-25"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M520.25,-23C457.58,-23 394.92,-23 332.25,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-21C457.58,-21 394.92,-21 332.25,-21"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="857,-152 670,-152 670,-14 857,-14 857,-152"/>
|
||||
<polygon fill="none" stroke="black" points="670.5,-129 670.5,-152 857.5,-152 857.5,-129 670.5,-129"/>
|
||||
<text text-anchor="start" x="755" y="-136.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-106 670.5,-129 766.5,-129 766.5,-106 670.5,-106"/>
|
||||
<text text-anchor="start" x="674.5" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="766.5,-106 766.5,-129 817.5,-129 817.5,-106 766.5,-106"/>
|
||||
<text text-anchor="start" x="770.5" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="817.5,-106 817.5,-129 857.5,-129 857.5,-106 817.5,-106"/>
|
||||
<text text-anchor="start" x="821.5" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-83 670.5,-106 725.5,-106 725.5,-83 670.5,-83"/>
|
||||
<text text-anchor="start" x="694" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="725.5,-83 725.5,-106 803.5,-106 803.5,-83 725.5,-83"/>
|
||||
<text text-anchor="start" x="748.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="803.5,-83 803.5,-106 857.5,-106 857.5,-83 803.5,-83"/>
|
||||
<text text-anchor="start" x="826.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-60 670.5,-83 725.5,-83 725.5,-60 670.5,-60"/>
|
||||
<text text-anchor="start" x="694" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="725.5,-60 725.5,-83 803.5,-83 803.5,-60 725.5,-60"/>
|
||||
<text text-anchor="start" x="749.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="803.5,-60 803.5,-83 857.5,-83 857.5,-60 803.5,-60"/>
|
||||
<text text-anchor="start" x="826.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-37 670.5,-60 725.5,-60 725.5,-37 670.5,-37"/>
|
||||
<text text-anchor="start" x="694" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="725.5,-37 725.5,-60 803.5,-60 803.5,-37 725.5,-37"/>
|
||||
<text text-anchor="start" x="750.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="803.5,-37 803.5,-60 857.5,-60 857.5,-37 803.5,-37"/>
|
||||
<text text-anchor="start" x="826.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="670.5,-14 670.5,-37 725.5,-37 725.5,-14 670.5,-14"/>
|
||||
<text text-anchor="start" x="694" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="725.5,-14 725.5,-37 803.5,-37 803.5,-14 725.5,-14"/>
|
||||
<text text-anchor="start" x="750" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="803.5,-14 803.5,-37 857.5,-37 857.5,-14 803.5,-14"/>
|
||||
<text text-anchor="start" x="826.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="852.51,-159 664.26,-159 664.26,-14 852.51,-14 852.51,-159"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="664.26,-14 664.26,-159 852.51,-159 852.51,-14 664.26,-14"/>
|
||||
<polygon fill="none" stroke="black" points="664.26,-134.5 664.26,-159 852.51,-159 852.51,-134.5 664.26,-134.5"/>
|
||||
<text text-anchor="start" x="749.38" y="-141.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="664.26,-110 664.26,-134.5 761.51,-134.5 761.51,-110 664.26,-110"/>
|
||||
<text text-anchor="start" x="668.26" y="-117.2" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="761.51,-110 761.51,-134.5 813.01,-134.5 813.01,-110 761.51,-110"/>
|
||||
<text text-anchor="start" x="765.51" y="-117.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="813.01,-110 813.01,-134.5 852.51,-134.5 852.51,-110 813.01,-110"/>
|
||||
<text text-anchor="start" x="817.01" y="-117.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="664.26,-86 664.26,-110 719.34,-110 719.34,-86 664.26,-86"/>
|
||||
<text text-anchor="start" x="687.67" y="-92.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="719.34,-86 719.34,-110 797.42,-110 797.42,-86 719.34,-86"/>
|
||||
<text text-anchor="start" x="742.63" y="-92.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="797.42,-86 797.42,-110 852.51,-110 852.51,-86 797.42,-86"/>
|
||||
<text text-anchor="start" x="820.84" y="-92.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="664.26,-62 664.26,-86 719.34,-86 719.34,-62 664.26,-62"/>
|
||||
<text text-anchor="start" x="687.67" y="-68.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="719.34,-62 719.34,-86 797.42,-86 797.42,-62 719.34,-62"/>
|
||||
<text text-anchor="start" x="743.01" y="-68.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="797.42,-62 797.42,-86 852.51,-86 852.51,-62 797.42,-62"/>
|
||||
<text text-anchor="start" x="820.84" y="-68.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="664.26,-38 664.26,-62 719.34,-62 719.34,-38 664.26,-38"/>
|
||||
<text text-anchor="start" x="687.67" y="-44.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="719.34,-38 719.34,-62 797.42,-62 797.42,-38 719.34,-38"/>
|
||||
<text text-anchor="start" x="744.13" y="-44.7" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="797.42,-38 797.42,-62 852.51,-62 852.51,-38 797.42,-38"/>
|
||||
<text text-anchor="start" x="820.84" y="-44.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="664.26,-14 664.26,-38 719.34,-38 719.34,-14 664.26,-14"/>
|
||||
<text text-anchor="start" x="687.67" y="-20.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="719.34,-14 719.34,-38 797.42,-38 797.42,-14 719.34,-14"/>
|
||||
<text text-anchor="start" x="743.38" y="-20.7" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="797.42,-14 797.42,-38 852.51,-38 852.51,-14 797.42,-14"/>
|
||||
<text text-anchor="start" x="820.84" y="-20.7" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-99C583.89,-99.04 599.87,-96.04 664.25,-96"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M520.25,-101C584.26,-101 600.24,-98 664.25,-98"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-103C584.63,-102.97 600.61,-99.97 664.25,-100"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-73C584.13,-73.01 600.13,-72.01 664.25,-72"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M520.25,-75C584.25,-75 600.25,-74 664.25,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-77C584.38,-77 600.38,-76 664.25,-76"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-47C584.38,-47.01 600.38,-48.01 664.25,-48"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M520.25,-49C584.25,-49 600.25,-50 664.25,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-51C584.13,-51 600.13,-52 664.25,-52"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-21C584.63,-21.04 600.61,-24.04 664.25,-24"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M520.25,-23C584.26,-23 600.24,-26 664.25,-26"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M520.25,-25C583.89,-24.97 599.87,-27.97 664.25,-28"/>
|
||||
</g>
|
||||
<!-- W2 -->
|
||||
<g id="node5" class="node">
|
||||
<g id="node4" class="node">
|
||||
<title>W2</title>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1196,-184 1001,-184 1001,0 1196,0 1196,-184"/>
|
||||
<polygon fill="none" stroke="black" points="1001.5,-161 1001.5,-184 1196.5,-184 1196.5,-161 1001.5,-161"/>
|
||||
<text text-anchor="start" x="1088.5" y="-168.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="1001.5,-138 1001.5,-161 1039.5,-161 1039.5,-138 1001.5,-138"/>
|
||||
<text text-anchor="start" x="1009.5" y="-145.8" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="1039.5,-138 1039.5,-161 1070.5,-161 1070.5,-138 1039.5,-138"/>
|
||||
<text text-anchor="start" x="1047.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1070.5,-138 1070.5,-161 1145.5,-161 1145.5,-138 1070.5,-138"/>
|
||||
<text text-anchor="start" x="1078" y="-145.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="1145.5,-138 1145.5,-161 1196.5,-161 1196.5,-138 1145.5,-138"/>
|
||||
<text text-anchor="start" x="1153" y="-145.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="1033.5" y="-124.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1003.5" y="-105.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<text text-anchor="start" x="1072" y="-105.8" font-family="arial" font-size="14.00">     PK    </text>
|
||||
<text text-anchor="start" x="1130.5" y="-105.8" font-family="arial" font-size="14.00">X3:1:GND</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="1001.5,-98 1001.5,-100 1196.5,-100 1196.5,-98 1001.5,-98"/>
|
||||
<polygon fill="#ff66cc" stroke="transparent" points="1001.5,-96 1001.5,-98 1196.5,-98 1196.5,-96 1001.5,-96"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="1001.5,-94 1001.5,-96 1196.5,-96 1196.5,-94 1001.5,-94"/>
|
||||
<text text-anchor="start" x="1004" y="-80.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<text text-anchor="start" x="1071.5" y="-80.8" font-family="arial" font-size="14.00">     TQ    </text>
|
||||
<text text-anchor="start" x="1131" y="-80.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="1001.5,-73 1001.5,-75 1196.5,-75 1196.5,-73 1001.5,-73"/>
|
||||
<polygon fill="#00ffff" stroke="transparent" points="1001.5,-71 1001.5,-73 1196.5,-73 1196.5,-71 1001.5,-71"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="1001.5,-69 1001.5,-71 1196.5,-71 1196.5,-69 1001.5,-69"/>
|
||||
<text text-anchor="start" x="1005.5" y="-55.8" font-family="arial" font-size="14.00">X2:3:SCL</text>
|
||||
<text text-anchor="start" x="1072" y="-55.8" font-family="arial" font-size="14.00">     YE    </text>
|
||||
<text text-anchor="start" x="1132.5" y="-55.8" font-family="arial" font-size="14.00">X3:3:SCL</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="1001.5,-48 1001.5,-50 1196.5,-50 1196.5,-48 1001.5,-48"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="1001.5,-46 1001.5,-48 1196.5,-48 1196.5,-46 1001.5,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="1001.5,-44 1001.5,-46 1196.5,-46 1196.5,-44 1001.5,-44"/>
|
||||
<text text-anchor="start" x="1004.5" y="-30.8" font-family="arial" font-size="14.00">X2:4:SDA</text>
|
||||
<text text-anchor="start" x="1072.5" y="-30.8" font-family="arial" font-size="14.00">     VT    </text>
|
||||
<text text-anchor="start" x="1131.5" y="-30.8" font-family="arial" font-size="14.00">X3:4:SDA</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="1001.5,-23 1001.5,-25 1196.5,-25 1196.5,-23 1001.5,-23"/>
|
||||
<polygon fill="#8000ff" stroke="transparent" points="1001.5,-21 1001.5,-23 1196.5,-23 1196.5,-21 1001.5,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="1001.5,-19 1001.5,-21 1196.5,-21 1196.5,-19 1001.5,-19"/>
|
||||
<text text-anchor="start" x="1033.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M857,-93C921.25,-93.02 937.24,-95.02 1001,-95"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M857,-95C921.01,-95 936.99,-97 1001,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M857,-97C920.76,-96.98 936.75,-98.98 1001,-99"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M857,-69C921.13,-69 937.12,-70 1001,-70"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M857,-71C921,-71 937,-72 1001,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M857,-73C920.88,-73 936.87,-74 1001,-74"/>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1184.5,-193 996.5,-193 996.5,0 1184.5,0 1184.5,-193"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,0 996.5,-193 1184.5,-193 1184.5,0 996.5,0"/>
|
||||
<polygon fill="none" stroke="black" points="996.5,-168.5 996.5,-193 1184.5,-193 1184.5,-168.5 996.5,-168.5"/>
|
||||
<text text-anchor="start" x="1079.25" y="-175.7" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="996.5,-144 996.5,-168.5 1033,-168.5 1033,-144 996.5,-144"/>
|
||||
<text text-anchor="start" x="1003.13" y="-151.2" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="1033,-144 1033,-168.5 1061.25,-168.5 1061.25,-144 1033,-144"/>
|
||||
<text text-anchor="start" x="1039.63" y="-151.2" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1061.25,-144 1061.25,-168.5 1135.25,-168.5 1135.25,-144 1061.25,-144"/>
|
||||
<text text-anchor="start" x="1067.88" y="-151.2" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="1135.25,-144 1135.25,-168.5 1184.5,-168.5 1184.5,-144 1135.25,-144"/>
|
||||
<text text-anchor="start" x="1141.88" y="-151.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="1031.13" y="-128.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="998.5" y="-108.7" font-family="arial" font-size="14.00"> X2:1:GND</text>
|
||||
<text text-anchor="start" x="1071.13" y="-108.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1082.75" y="-108.7" font-family="arial" font-size="14.00">PK</text>
|
||||
<text text-anchor="start" x="1106.13" y="-108.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1113.5" y="-108.7" font-family="arial" font-size="14.00">X3:1:GND </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-102 996.5,-104 1184.5,-104 1184.5,-102 996.5,-102"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-100 996.5,-102 1184.5,-102 1184.5,-100 996.5,-100"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-98 996.5,-100 1184.5,-100 1184.5,-98 996.5,-98"/>
|
||||
<text text-anchor="start" x="998.5" y="-82.7" font-family="arial" font-size="14.00"> X2:2:VCC</text>
|
||||
<text text-anchor="start" x="1071.13" y="-82.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1082.38" y="-82.7" font-family="arial" font-size="14.00">TQ</text>
|
||||
<text text-anchor="start" x="1106.13" y="-82.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1114.25" y="-82.7" font-family="arial" font-size="14.00">X3:2:VCC </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-76 996.5,-78 1184.5,-78 1184.5,-76 996.5,-76"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-74 996.5,-76 1184.5,-76 1184.5,-74 996.5,-74"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-72 996.5,-74 1184.5,-74 1184.5,-72 996.5,-72"/>
|
||||
<text text-anchor="start" x="998.5" y="-56.7" font-family="arial" font-size="14.00"> X2:3:SCL</text>
|
||||
<text text-anchor="start" x="1071.13" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1083.13" y="-56.7" font-family="arial" font-size="14.00">YE</text>
|
||||
<text text-anchor="start" x="1106.13" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1116.5" y="-56.7" font-family="arial" font-size="14.00">X3:3:SCL </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-50 996.5,-52 1184.5,-52 1184.5,-50 996.5,-50"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-48 996.5,-50 1184.5,-50 1184.5,-48 996.5,-48"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-46 996.5,-48 1184.5,-48 1184.5,-46 996.5,-46"/>
|
||||
<text text-anchor="start" x="998.5" y="-30.7" font-family="arial" font-size="14.00"> X2:4:SDA</text>
|
||||
<text text-anchor="start" x="1071.13" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1083.13" y="-30.7" font-family="arial" font-size="14.00">VT</text>
|
||||
<text text-anchor="start" x="1106.13" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1115" y="-30.7" font-family="arial" font-size="14.00">X3:4:SDA </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-24 996.5,-26 1184.5,-26 1184.5,-24 996.5,-24"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-22 996.5,-24 1184.5,-24 1184.5,-22 996.5,-22"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="996.5,-20 996.5,-22 1184.5,-22 1184.5,-20 996.5,-20"/>
|
||||
<text text-anchor="start" x="1031.13" y="-4.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M857,-46C920.88,-46 936.87,-45 1001,-45"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M857,-48C921,-48 937,-47 1001,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M857,-50C921.13,-50 937.12,-49 1001,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M852.5,-96C916.88,-96.04 932.86,-99.04 996.5,-99"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M852.5,-98C916.51,-98 932.49,-101 996.5,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M852.5,-100C916.14,-99.97 932.12,-102.97 996.5,-103"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M852.5,-72C916.63,-72.01 932.63,-73.01 996.5,-73"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M852.5,-74C916.5,-74 932.5,-75 996.5,-75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M852.5,-76C916.38,-76 932.38,-77 996.5,-77"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M857,-23C920.64,-23.03 936.62,-20.03 1001,-20"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M857,-25C921.01,-25 936.99,-22 1001,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M857,-27C921.38,-26.97 937.36,-23.97 1001,-24"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M852.5,-48C916.38,-48.01 932.38,-47.01 996.5,-47"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M852.5,-50C916.5,-50 932.5,-49 996.5,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M852.5,-52C916.63,-52 932.63,-51 996.5,-51"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M852.5,-24C916.14,-24.04 932.12,-21.04 996.5,-21"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M852.5,-26C916.51,-26 932.49,-23 996.5,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M852.5,-28C916.88,-27.97 932.86,-24.97 996.5,-25"/>
|
||||
</g>
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge17" class="edge">
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-103C1121.83,-103 1059.17,-103 996.5,-103"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1184.5,-101C1121.83,-101 1059.17,-101 996.5,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-99C1121.83,-99 1059.17,-99 996.5,-99"/>
|
||||
</g>
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge18" class="edge">
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-77C1121.83,-77 1059.17,-77 996.5,-77"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M1184.5,-75C1121.83,-75 1059.17,-75 996.5,-75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-73C1121.83,-73 1059.17,-73 996.5,-73"/>
|
||||
</g>
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge19" class="edge">
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-51C1121.83,-51 1059.17,-51 996.5,-51"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1184.5,-49C1121.83,-49 1059.17,-49 996.5,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-47C1121.83,-47 1059.17,-47 996.5,-47"/>
|
||||
</g>
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge20" class="edge">
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-25C1121.83,-25 1059.17,-25 996.5,-25"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M1184.5,-23C1121.83,-23 1059.17,-23 996.5,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-21C1121.83,-21 1059.17,-21 996.5,-21"/>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node5" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="1527,-152 1340,-152 1340,-14 1527,-14 1527,-152"/>
|
||||
<polygon fill="none" stroke="black" points="1340.5,-129 1340.5,-152 1527.5,-152 1527.5,-129 1340.5,-129"/>
|
||||
<text text-anchor="start" x="1425" y="-136.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="1340.5,-106 1340.5,-129 1436.5,-129 1436.5,-106 1340.5,-106"/>
|
||||
<text text-anchor="start" x="1344.5" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="1436.5,-106 1436.5,-129 1487.5,-129 1487.5,-106 1436.5,-106"/>
|
||||
<text text-anchor="start" x="1440.5" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="1487.5,-106 1487.5,-129 1527.5,-129 1527.5,-106 1487.5,-106"/>
|
||||
<text text-anchor="start" x="1491.5" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="1340.5,-83 1340.5,-106 1422.5,-106 1422.5,-83 1340.5,-83"/>
|
||||
<text text-anchor="start" x="1377.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="1422.5,-83 1422.5,-106 1527.5,-106 1527.5,-83 1422.5,-83"/>
|
||||
<text text-anchor="start" x="1459" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="1340.5,-60 1340.5,-83 1422.5,-83 1422.5,-60 1340.5,-60"/>
|
||||
<text text-anchor="start" x="1377.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="1422.5,-60 1422.5,-83 1527.5,-83 1527.5,-60 1422.5,-60"/>
|
||||
<text text-anchor="start" x="1460" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="1340.5,-37 1340.5,-60 1422.5,-60 1422.5,-37 1340.5,-37"/>
|
||||
<text text-anchor="start" x="1377.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="1422.5,-37 1422.5,-60 1527.5,-60 1527.5,-37 1422.5,-37"/>
|
||||
<text text-anchor="start" x="1461" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="1340.5,-14 1340.5,-37 1422.5,-37 1422.5,-14 1340.5,-14"/>
|
||||
<text text-anchor="start" x="1377.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="1422.5,-14 1422.5,-37 1527.5,-37 1527.5,-14 1422.5,-14"/>
|
||||
<text text-anchor="start" x="1460.5" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-95C589.76,-95.02 605.75,-93.02 670,-93"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M526,-97C590.01,-97 605.99,-95 670,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-99C590.25,-98.98 606.24,-96.98 670,-97"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-70C589.88,-70 605.87,-69 670,-69"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M526,-72C590,-72 606,-71 670,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-74C590.13,-74 606.12,-73 670,-73"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-45C590.13,-45 606.12,-46 670,-46"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M526,-47C590,-47 606,-48 670,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-49C589.88,-49 605.87,-50 670,-50"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-20C590.38,-20.03 606.36,-23.03 670,-23"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M526,-22C590.01,-22 605.99,-25 670,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M526,-24C589.64,-23.97 605.62,-26.97 670,-27"/>
|
||||
<polygon fill="#ffffff" stroke="black" points="1516.73,-159 1328.47,-159 1328.47,-14 1516.73,-14 1516.73,-159"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="1328.48,-14 1328.48,-159 1516.73,-159 1516.73,-14 1328.48,-14"/>
|
||||
<polygon fill="none" stroke="black" points="1328.48,-134.5 1328.48,-159 1516.73,-159 1516.73,-134.5 1328.48,-134.5"/>
|
||||
<text text-anchor="start" x="1413.6" y="-141.7" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="1328.48,-110 1328.48,-134.5 1425.73,-134.5 1425.73,-110 1328.48,-110"/>
|
||||
<text text-anchor="start" x="1332.48" y="-117.2" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="1425.73,-110 1425.73,-134.5 1477.23,-134.5 1477.23,-110 1425.73,-110"/>
|
||||
<text text-anchor="start" x="1429.73" y="-117.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="1477.23,-110 1477.23,-134.5 1516.73,-134.5 1516.73,-110 1477.23,-110"/>
|
||||
<text text-anchor="start" x="1481.23" y="-117.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="1328.48,-86 1328.48,-110 1411.1,-110 1411.1,-86 1328.48,-86"/>
|
||||
<text text-anchor="start" x="1365.66" y="-92.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="1411.1,-86 1411.1,-110 1516.73,-110 1516.73,-86 1411.1,-86"/>
|
||||
<text text-anchor="start" x="1448.16" y="-92.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="1328.48,-62 1328.48,-86 1411.1,-86 1411.1,-62 1328.48,-62"/>
|
||||
<text text-anchor="start" x="1365.66" y="-68.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="1411.1,-62 1411.1,-86 1516.73,-86 1516.73,-62 1411.1,-62"/>
|
||||
<text text-anchor="start" x="1448.54" y="-68.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="1328.48,-38 1328.48,-62 1411.1,-62 1411.1,-38 1328.48,-38"/>
|
||||
<text text-anchor="start" x="1365.66" y="-44.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="1411.1,-38 1411.1,-62 1516.73,-62 1516.73,-38 1411.1,-38"/>
|
||||
<text text-anchor="start" x="1449.66" y="-44.7" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="1328.48,-14 1328.48,-38 1411.1,-38 1411.1,-14 1328.48,-14"/>
|
||||
<text text-anchor="start" x="1365.66" y="-20.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="1411.1,-14 1411.1,-38 1516.73,-38 1516.73,-14 1411.1,-14"/>
|
||||
<text text-anchor="start" x="1448.91" y="-20.7" font-family="arial" font-size="14.00">SDA</text>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge10" class="edge">
|
||||
<g id="edge21" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1196,-95C1259.76,-95.02 1275.75,-93.02 1340,-93"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1196,-97C1260.01,-97 1275.99,-95 1340,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1196,-99C1260.25,-98.98 1276.24,-96.98 1340,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-99C1248.13,-99.04 1264.13,-96.04 1328.5,-96"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1184.5,-101C1248.5,-101 1264.5,-98 1328.5,-98"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-103C1248.87,-102.97 1264.87,-99.97 1328.5,-100"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge12" class="edge">
|
||||
<g id="edge22" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1196,-70C1259.88,-70 1275.87,-69 1340,-69"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M1196,-72C1260,-72 1276,-71 1340,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1196,-74C1260.13,-74 1276.12,-73 1340,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-73C1248.38,-73.01 1264.38,-72.01 1328.5,-72"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M1184.5,-75C1248.5,-75 1264.5,-74 1328.5,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-77C1248.63,-77 1264.63,-76 1328.5,-76"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge14" class="edge">
|
||||
<g id="edge23" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1196,-45C1260.13,-45 1276.12,-46 1340,-46"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1196,-47C1260,-47 1276,-48 1340,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1196,-49C1259.88,-49 1275.87,-50 1340,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-47C1248.63,-47.01 1264.63,-48.01 1328.5,-48"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1184.5,-49C1248.5,-49 1264.5,-50 1328.5,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-51C1248.38,-51 1264.38,-52 1328.5,-52"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge16" class="edge">
|
||||
<g id="edge24" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1196,-20C1260.38,-20.03 1276.36,-23.03 1340,-23"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M1196,-22C1260.01,-22 1275.99,-25 1340,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1196,-24C1259.64,-23.97 1275.62,-26.97 1340,-27"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-21C1248.87,-21.04 1264.87,-24.04 1328.5,-24"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M1184.5,-23C1248.5,-23 1264.5,-26 1328.5,-26"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1184.5,-25C1248.13,-24.97 1264.13,-27.97 1328.5,-28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 28 KiB |
6
examples/ex05.tsv
generated
Normal file
@ -0,0 +1,6 @@
|
||||
# Qty Unit Description Designators
|
||||
1 3 Connector, Molex KK 254, female, 4 pins X1, X2, X3
|
||||
2 2 m Wire, I2C, 0.25 mm², PK W1, W2
|
||||
3 2 m Wire, I2C, 0.25 mm², TQ W1, W2
|
||||
4 2 m Wire, I2C, 0.25 mm², VT W1, W2
|
||||
5 2 m Wire, I2C, 0.25 mm², YE W1, W2
|
||||
|
64
examples/ex05_wv_gvpr.gvpr
Normal file
@ -0,0 +1,64 @@
|
||||
/*******************************************************************
|
||||
|
||||
see https://forum.graphviz.org/t/straitening-one-line-throu-a-table/2196 and https://forum.graphviz.org/t/way-of-drawing-a-black-circle-inside-a-table-field/2273/12
|
||||
input must include pos values (must be output from one of the engines w/ -Tdot)#
|
||||
Thanks to steveroush and FeRDNYC
|
||||
|
||||
*******************************************************************/
|
||||
BEG_G{
|
||||
double x1,y1,x2,y2,x3,y3,x4,y4;
|
||||
string ptSize, tok[int], pt[];
|
||||
int cnt, circ, i;
|
||||
node_t aNode;
|
||||
|
||||
circ=0;
|
||||
|
||||
/***************************************
|
||||
$G.bb="";
|
||||
$G.nodesep="";
|
||||
$G.ranksep="";
|
||||
$G.splines="true";
|
||||
****************************************/
|
||||
}
|
||||
|
||||
// This removes the label text but keeps the position
|
||||
E[noLabel] {
|
||||
$.label=""; // remove pesky label
|
||||
// $.lp=""; // remove peskier label pos
|
||||
}
|
||||
|
||||
E[straight] {
|
||||
cnt=tokens($.pos,tok," ");
|
||||
$.oldpos=$.pos;
|
||||
x1 = xOf(tok[0]);
|
||||
y1 = yOf(tok[0]);
|
||||
x4 = xOf(tok[cnt-1]);
|
||||
y4 = yOf(tok[cnt-1]);
|
||||
x2 = x1 + (x4-x1)/3.;
|
||||
y2 = y1 + (y4-y1)/3.;
|
||||
x3 = x1 + 2.*(x4-x1)/3.;
|
||||
y3 = y1 + 2.*(y4-y1)/3.;
|
||||
pos=sprintf("%.3f,%.3f %.3f,%.3f %.3f,%.3f %.3f,%.3f", x1,y1, x2,y2, x3,y3, x4,y4);
|
||||
$.label=""; // remove pesky label
|
||||
$.lp=""; // remove peskier label pos
|
||||
|
||||
if (hasAttr($, "addPTS") && $.addPTS!="" && $.colorPTS!=""){
|
||||
// now we place point nodes at the edge ends
|
||||
pt[1] = tok[0];
|
||||
pt[2] = tok[cnt-1];
|
||||
ptSize=$.addPTS;
|
||||
for (pt[i]) {
|
||||
if (i==2 && pt[1]==pt[2])
|
||||
continue;
|
||||
aNode=node($G, "__CIRCLE__" + (string)++circ);
|
||||
aNode.pos=pt[i];
|
||||
aNode.shape="point";
|
||||
aNode.width=ptSize;
|
||||
aNode.height=ptSize;
|
||||
aNode.style="filled";
|
||||
aNode.fillcolor=$.colorPTS;
|
||||
aNode.color=$.colorPTS;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
1616
examples/ex06.gv
generated
1327
examples/ex06.html
generated
BIN
examples/ex06.png
generated
|
Before Width: | Height: | Size: 293 KiB After Width: | Height: | Size: 286 KiB |
1291
examples/ex06.svg
generated
|
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 64 KiB |
6
examples/ex06.tsv
generated
Normal file
@ -0,0 +1,6 @@
|
||||
# Qty Unit Description Designators
|
||||
1 6 Connector, Molex KK 254, female, 4 pins X1, X2, X3, X4, X5, X6
|
||||
2 5 m Wire, 0.25 mm², PK W1, W2, W3, W4, W5
|
||||
3 5 m Wire, 0.25 mm², TQ W1, W2, W3, W4, W5
|
||||
4 5 m Wire, 0.25 mm², VT W1, W2, W3, W4, W5
|
||||
5 5 m Wire, 0.25 mm², YE W1, W2, W3, W4, W5
|
||||
|
64
examples/ex06_wv_gvpr.gvpr
Normal file
@ -0,0 +1,64 @@
|
||||
/*******************************************************************
|
||||
|
||||
see https://forum.graphviz.org/t/straitening-one-line-throu-a-table/2196 and https://forum.graphviz.org/t/way-of-drawing-a-black-circle-inside-a-table-field/2273/12
|
||||
input must include pos values (must be output from one of the engines w/ -Tdot)#
|
||||
Thanks to steveroush and FeRDNYC
|
||||
|
||||
*******************************************************************/
|
||||
BEG_G{
|
||||
double x1,y1,x2,y2,x3,y3,x4,y4;
|
||||
string ptSize, tok[int], pt[];
|
||||
int cnt, circ, i;
|
||||
node_t aNode;
|
||||
|
||||
circ=0;
|
||||
|
||||
/***************************************
|
||||
$G.bb="";
|
||||
$G.nodesep="";
|
||||
$G.ranksep="";
|
||||
$G.splines="true";
|
||||
****************************************/
|
||||
}
|
||||
|
||||
// This removes the label text but keeps the position
|
||||
E[noLabel] {
|
||||
$.label=""; // remove pesky label
|
||||
// $.lp=""; // remove peskier label pos
|
||||
}
|
||||
|
||||
E[straight] {
|
||||
cnt=tokens($.pos,tok," ");
|
||||
$.oldpos=$.pos;
|
||||
x1 = xOf(tok[0]);
|
||||
y1 = yOf(tok[0]);
|
||||
x4 = xOf(tok[cnt-1]);
|
||||
y4 = yOf(tok[cnt-1]);
|
||||
x2 = x1 + (x4-x1)/3.;
|
||||
y2 = y1 + (y4-y1)/3.;
|
||||
x3 = x1 + 2.*(x4-x1)/3.;
|
||||
y3 = y1 + 2.*(y4-y1)/3.;
|
||||
pos=sprintf("%.3f,%.3f %.3f,%.3f %.3f,%.3f %.3f,%.3f", x1,y1, x2,y2, x3,y3, x4,y4);
|
||||
$.label=""; // remove pesky label
|
||||
$.lp=""; // remove peskier label pos
|
||||
|
||||
if (hasAttr($, "addPTS") && $.addPTS!="" && $.colorPTS!=""){
|
||||
// now we place point nodes at the edge ends
|
||||
pt[1] = tok[0];
|
||||
pt[2] = tok[cnt-1];
|
||||
ptSize=$.addPTS;
|
||||
for (pt[i]) {
|
||||
if (i==2 && pt[1]==pt[2])
|
||||
continue;
|
||||
aNode=node($G, "__CIRCLE__" + (string)++circ);
|
||||
aNode.pos=pt[i];
|
||||
aNode.shape="point";
|
||||
aNode.width=ptSize;
|
||||
aNode.height=ptSize;
|
||||
aNode.style="filled";
|
||||
aNode.fillcolor=$.colorPTS;
|
||||
aNode.color=$.colorPTS;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
294
examples/ex07.gv
generated
@ -1,129 +1,193 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4-dev
|
||||
// Graph generated by WireViz 0.4-dev251
|
||||
// https://github.com/formatc1702/WireViz
|
||||
graph [bgcolor="#FFFFFF" fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor="#FFFFFF" fontname=arial height=0 margin=0 shape=none style=filled width=0]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">TE 776164-1</td>
|
||||
<td balign="left">female</td>
|
||||
<td balign="left">35-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td port="p5r">5</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p6r">6</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Unconnected pins are not shown</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>TE 776164-1</td>
|
||||
<td>female</td>
|
||||
<td>35-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
|
||||
[]
|
||||
<td port="p5r">5</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
[]
|
||||
<td port="p6r">6</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td balign="left">Unconnected pins are not shown</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
X2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X2</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">D-Sub</td>
|
||||
<td balign="left">female</td>
|
||||
<td balign="left">9-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p7l">7</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Unconnected pins are not shown</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>D-Sub</td>
|
||||
<td>female</td>
|
||||
<td>9-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p7l">7</td>
|
||||
|
||||
[]
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td balign="left">Unconnected pins are not shown</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
> shape=box style=filled]
|
||||
C1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>C1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>2x</td>
|
||||
<td>20 AWG</td>
|
||||
<td>1 m</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:5</td>
|
||||
<td> </td>
|
||||
<td>1:YE</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:7 </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w1">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:6</td>
|
||||
<td> </td>
|
||||
<td>2:GN</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:2 </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w2">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> shape=box style=filled]
|
||||
edge [color="#000000:#FFFF00:#000000"]
|
||||
X1:p5r:e -- C1:w1:w
|
||||
C1:w1:e -- X2:p7l:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
edge [color="#000000:#00AA00:#000000"]
|
||||
X1:p6r:e -- C1:w2:w
|
||||
C1:w2:e -- X2:p2l:w
|
||||
C1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">C1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">2x</td>
|
||||
<td balign="left">20 AWG</td>
|
||||
<td balign="left">1 m</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td>X1:5</td>
|
||||
<td>
|
||||
1:YE
|
||||
</td>
|
||||
<td>X2:7</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ffff00" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:6</td>
|
||||
<td>
|
||||
2:GN
|
||||
</td>
|
||||
<td>X2:2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#00ff00" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
C1:w1:e -- C1:w1:w [color="#000000:#FFFF00:#000000" straight=straight]
|
||||
C1:w2:e -- C1:w2:w [color="#000000:#00AA00:#000000" straight=straight]
|
||||
}
|
||||
|
||||
201
examples/ex07.html
generated
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="generator" content="WireViz 0.4-dev - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.4-dev251 - https://github.com/formatc1702/WireViz">
|
||||
<title>ex07</title>
|
||||
<style>
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
}
|
||||
|
||||
</style>
|
||||
</head><body style="font-family:arial;background-color:#ffffff">
|
||||
</head><body style="font-family:arial;background-color:#FFFFFF">
|
||||
<h1>ex07</h1>
|
||||
<h2>Diagram</h2>
|
||||
|
||||
@ -30,105 +30,126 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="858pt" height="153pt"
|
||||
viewBox="0.00 0.00 858.00 152.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 148.5)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-148.5 854,-148.5 854,4 -4,4"/>
|
||||
<svg width="848pt" height="162pt"
|
||||
viewBox="0.00 0.00 848.00 161.75" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 157.75)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-157.75 844,-157.75 844,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="212,-115 0,-115 0,0 212,0 212,-115"/>
|
||||
<polygon fill="none" stroke="black" points="0,-91.5 0,-114.5 212,-114.5 212,-91.5 0,-91.5"/>
|
||||
<text text-anchor="start" x="97" y="-99.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-68.5 0,-91.5 98,-91.5 98,-68.5 0,-68.5"/>
|
||||
<text text-anchor="start" x="8.5" y="-76.3" font-family="arial" font-size="14.00">TE 776164-1</text>
|
||||
<polygon fill="none" stroke="black" points="98,-68.5 98,-91.5 157,-91.5 157,-68.5 98,-68.5"/>
|
||||
<text text-anchor="start" x="106" y="-76.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="157,-68.5 157,-91.5 212,-91.5 212,-68.5 157,-68.5"/>
|
||||
<text text-anchor="start" x="165" y="-76.3" font-family="arial" font-size="14.00">35-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-45.5 0,-68.5 212,-68.5 212,-45.5 0,-45.5"/>
|
||||
<text text-anchor="start" x="102" y="-53.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-22.5 0,-45.5 212,-45.5 212,-22.5 0,-22.5"/>
|
||||
<text text-anchor="start" x="102" y="-30.3" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0,0.5 0,-22.5 212,-22.5 212,0.5 0,0.5"/>
|
||||
<text text-anchor="start" x="4" y="-7.3" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="213.5,-122.5 0,-122.5 0,0 213.5,0 213.5,-122.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,0 0,-122.5 213.5,-122.5 213.5,0 0,0"/>
|
||||
<polygon fill="none" stroke="black" points="0,-98 0,-122.5 213.5,-122.5 213.5,-98 0,-98"/>
|
||||
<text text-anchor="start" x="97.75" y="-105.2" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-73.5 0,-98 99.92,-98 99.92,-73.5 0,-73.5"/>
|
||||
<text text-anchor="start" x="7.58" y="-80.7" font-family="arial" font-size="14.00">TE 776164-1</text>
|
||||
<polygon fill="none" stroke="black" points="99.92,-73.5 99.92,-98 158.58,-98 158.58,-73.5 99.92,-73.5"/>
|
||||
<text text-anchor="start" x="107.5" y="-80.7" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="158.58,-73.5 158.58,-98 213.5,-98 213.5,-73.5 158.58,-73.5"/>
|
||||
<text text-anchor="start" x="166.17" y="-80.7" font-family="arial" font-size="14.00">35-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-49 0,-73.5 213.5,-73.5 213.5,-49 0,-49"/>
|
||||
<text text-anchor="start" x="102.63" y="-56.2" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-24.5 0,-49 213.5,-49 213.5,-24.5 0,-24.5"/>
|
||||
<text text-anchor="start" x="102.63" y="-31.7" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0,0 0,-24.5 213.5,-24.5 213.5,0 0,0"/>
|
||||
<text text-anchor="start" x="4" y="-7.2" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
|
||||
</g>
|
||||
<!-- C1 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>C1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="494,-144.5 356,-144.5 356,-10.5 494,-10.5 494,-144.5"/>
|
||||
<polygon fill="none" stroke="black" points="356,-121.5 356,-144.5 494,-144.5 494,-121.5 356,-121.5"/>
|
||||
<text text-anchor="start" x="416" y="-129.3" font-family="arial" font-size="14.00">C1</text>
|
||||
<polygon fill="none" stroke="black" points="356,-98.5 356,-121.5 387,-121.5 387,-98.5 356,-98.5"/>
|
||||
<text text-anchor="start" x="364" y="-106.3" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="387,-98.5 387,-121.5 455,-121.5 455,-98.5 387,-98.5"/>
|
||||
<text text-anchor="start" x="395" y="-106.3" font-family="arial" font-size="14.00">20 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="455,-98.5 455,-121.5 494,-121.5 494,-98.5 455,-98.5"/>
|
||||
<text text-anchor="start" x="462.5" y="-106.3" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="370.5" y="-85.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="358" y="-66.3" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="392" y="-66.3" font-family="arial" font-size="14.00">     1:YE    </text>
|
||||
<text text-anchor="start" x="463" y="-66.3" font-family="arial" font-size="14.00">X2:7</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="356,-58.5 356,-60.5 494,-60.5 494,-58.5 356,-58.5"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="356,-56.5 356,-58.5 494,-58.5 494,-56.5 356,-56.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="356,-54.5 356,-56.5 494,-56.5 494,-54.5 356,-54.5"/>
|
||||
<text text-anchor="start" x="358" y="-41.3" font-family="arial" font-size="14.00">X1:6</text>
|
||||
<text text-anchor="start" x="391" y="-41.3" font-family="arial" font-size="14.00">     2:GN    </text>
|
||||
<text text-anchor="start" x="463" y="-41.3" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="356,-33.5 356,-35.5 494,-35.5 494,-33.5 356,-33.5"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="356,-31.5 356,-33.5 494,-33.5 494,-31.5 356,-31.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="356,-29.5 356,-31.5 494,-31.5 494,-29.5 356,-29.5"/>
|
||||
<text text-anchor="start" x="370.5" y="-16.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="482.5,-153.75 357.5,-153.75 357.5,-12.75 482.5,-12.75 482.5,-153.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="357.5,-12.75 357.5,-153.75 482.5,-153.75 482.5,-12.75 357.5,-12.75"/>
|
||||
<polygon fill="none" stroke="black" points="357.5,-129.25 357.5,-153.75 482.5,-153.75 482.5,-129.25 357.5,-129.25"/>
|
||||
<text text-anchor="start" x="410.63" y="-136.45" font-family="arial" font-size="14.00">C1</text>
|
||||
<polygon fill="none" stroke="black" points="357.5,-104.75 357.5,-129.25 382.67,-129.25 382.67,-104.75 357.5,-104.75"/>
|
||||
<text text-anchor="start" x="362.58" y="-111.95" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="382.67,-104.75 382.67,-129.25 448.33,-129.25 448.33,-104.75 382.67,-104.75"/>
|
||||
<text text-anchor="start" x="387.75" y="-111.95" font-family="arial" font-size="14.00">20 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="448.33,-104.75 448.33,-129.25 482.5,-129.25 482.5,-104.75 448.33,-104.75"/>
|
||||
<text text-anchor="start" x="453.42" y="-111.95" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="374.13" y="-89.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="359.13" y="-69.45" font-family="arial" font-size="14.00"> X1:5</text>
|
||||
<text text-anchor="start" x="396.13" y="-69.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="404.63" y="-69.45" font-family="arial" font-size="14.00">1:YE</text>
|
||||
<text text-anchor="start" x="440.13" y="-69.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="447.13" y="-69.45" font-family="arial" font-size="14.00">X2:7 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="357.5,-62.75 357.5,-64.75 482.5,-64.75 482.5,-62.75 357.5,-62.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="357.5,-60.75 357.5,-62.75 482.5,-62.75 482.5,-60.75 357.5,-60.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="357.5,-58.75 357.5,-60.75 482.5,-60.75 482.5,-58.75 357.5,-58.75"/>
|
||||
<text text-anchor="start" x="359.13" y="-43.45" font-family="arial" font-size="14.00"> X1:6</text>
|
||||
<text text-anchor="start" x="396.13" y="-43.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="403.5" y="-43.45" font-family="arial" font-size="14.00">2:GN</text>
|
||||
<text text-anchor="start" x="440.13" y="-43.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="447.13" y="-43.45" font-family="arial" font-size="14.00">X2:2 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="357.5,-36.75 357.5,-38.75 482.5,-38.75 482.5,-36.75 357.5,-36.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="357.5,-34.75 357.5,-36.75 482.5,-36.75 482.5,-34.75 357.5,-34.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="357.5,-32.75 357.5,-34.75 482.5,-34.75 482.5,-32.75 357.5,-32.75"/>
|
||||
<text text-anchor="start" x="374.13" y="-17.45" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M212,-54.5C276.13,-54.5 292.12,-55.5 356,-55.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M212,-56.5C276,-56.5 292,-57.5 356,-57.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M212,-58.5C275.88,-58.5 291.87,-59.5 356,-59.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M213.5,-59.25C277.56,-59.25 293.56,-59.75 357.5,-59.75"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M213.5,-61.25C277.5,-61.25 293.5,-61.75 357.5,-61.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M213.5,-63.25C277.44,-63.25 293.44,-63.75 357.5,-63.75"/>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M212,-31.5C275.88,-31.5 291.87,-30.5 356,-30.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M212,-33.5C276,-33.5 292,-32.5 356,-32.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M212,-35.5C276.13,-35.5 292.12,-34.5 356,-34.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M213.5,-34.75C277.38,-34.75 293.38,-33.75 357.5,-33.75"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M213.5,-36.75C277.5,-36.75 293.5,-35.75 357.5,-35.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M213.5,-38.75C277.63,-38.75 293.63,-37.75 357.5,-37.75"/>
|
||||
</g>
|
||||
<!-- C1--C1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>C1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M482.5,-63.75C440.83,-63.75 399.17,-63.75 357.5,-63.75"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M482.5,-61.75C440.83,-61.75 399.17,-61.75 357.5,-61.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M482.5,-59.75C440.83,-59.75 399.17,-59.75 357.5,-59.75"/>
|
||||
</g>
|
||||
<!-- C1--C1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>C1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M482.5,-37.75C440.83,-37.75 399.17,-37.75 357.5,-37.75"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M482.5,-35.75C440.83,-35.75 399.17,-35.75 357.5,-35.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M482.5,-33.75C440.83,-33.75 399.17,-33.75 357.5,-33.75"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="850,-115 638,-115 638,0 850,0 850,-115"/>
|
||||
<polygon fill="none" stroke="black" points="638,-91.5 638,-114.5 850,-114.5 850,-91.5 638,-91.5"/>
|
||||
<text text-anchor="start" x="735" y="-99.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="638,-68.5 638,-91.5 711,-91.5 711,-68.5 638,-68.5"/>
|
||||
<text text-anchor="start" x="654.5" y="-76.3" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="711,-68.5 711,-91.5 786,-91.5 786,-68.5 711,-68.5"/>
|
||||
<text text-anchor="start" x="727" y="-76.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="786,-68.5 786,-91.5 850,-91.5 850,-68.5 786,-68.5"/>
|
||||
<text text-anchor="start" x="802" y="-76.3" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polygon fill="none" stroke="black" points="638,-45.5 638,-68.5 850,-68.5 850,-45.5 638,-45.5"/>
|
||||
<text text-anchor="start" x="740" y="-53.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="638,-22.5 638,-45.5 850,-45.5 850,-22.5 638,-22.5"/>
|
||||
<text text-anchor="start" x="740" y="-30.3" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="638,0.5 638,-22.5 850,-22.5 850,0.5 638,0.5"/>
|
||||
<text text-anchor="start" x="642" y="-7.3" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="840,-122.5 626.5,-122.5 626.5,0 840,0 840,-122.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="626.5,0 626.5,-122.5 840,-122.5 840,0 626.5,0"/>
|
||||
<polygon fill="none" stroke="black" points="626.5,-98 626.5,-122.5 840,-122.5 840,-98 626.5,-98"/>
|
||||
<text text-anchor="start" x="724.25" y="-105.2" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="626.5,-73.5 626.5,-98 699.67,-98 699.67,-73.5 626.5,-73.5"/>
|
||||
<text text-anchor="start" x="642.83" y="-80.7" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="699.67,-73.5 699.67,-98 775.83,-98 775.83,-73.5 699.67,-73.5"/>
|
||||
<text text-anchor="start" x="716" y="-80.7" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="775.83,-73.5 775.83,-98 840,-98 840,-73.5 775.83,-73.5"/>
|
||||
<text text-anchor="start" x="792.17" y="-80.7" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polygon fill="none" stroke="black" points="626.5,-49 626.5,-73.5 840,-73.5 840,-49 626.5,-49"/>
|
||||
<text text-anchor="start" x="729.13" y="-56.2" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="626.5,-24.5 626.5,-49 840,-49 840,-24.5 626.5,-24.5"/>
|
||||
<text text-anchor="start" x="729.13" y="-31.7" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="626.5,0 626.5,-24.5 840,-24.5 840,0 626.5,0"/>
|
||||
<text text-anchor="start" x="630.5" y="-7.2" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
|
||||
</g>
|
||||
<!-- C1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<g id="edge5" class="edge">
|
||||
<title>C1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-55.5C557.16,-56.48 571.4,-32.48 638,-31.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M494,-57.5C558.88,-57.5 573.12,-33.5 638,-33.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-59.5C560.6,-58.52 574.84,-34.52 638,-35.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M482.5,-59.75C545.72,-60.77 559.8,-35.77 626.5,-34.75"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M482.5,-61.75C547.46,-61.75 561.54,-36.75 626.5,-36.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M482.5,-63.75C549.2,-62.73 563.28,-37.73 626.5,-38.75"/>
|
||||
</g>
|
||||
<!-- C1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<g id="edge6" class="edge">
|
||||
<title>C1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-30.5C560.6,-31.48 574.84,-55.48 638,-54.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M494,-32.5C558.88,-32.5 573.12,-56.5 638,-56.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-34.5C557.16,-33.52 571.4,-57.52 638,-58.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M482.5,-33.75C549.25,-34.79 563.25,-60.29 626.5,-59.25"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M482.5,-35.75C547.5,-35.75 561.5,-61.25 626.5,-61.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M482.5,-37.75C545.75,-36.71 559.75,-62.21 626.5,-63.25"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
@ -144,33 +165,33 @@
|
||||
<div id="bom">
|
||||
<table class="bom">
|
||||
<tr>
|
||||
<th class="bom_col_id">Id</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_#">#</th>
|
||||
<th class="bom_col_qty">Qty</th>
|
||||
<th class="bom_col_unit">Unit</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_designators">Designators</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">1</td>
|
||||
<td class="bom_col_description">Cable, 2 x 20 AWG</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">C1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">2</td>
|
||||
<td class="bom_col_description">Connector, D-Sub, female, 9 pins</td>
|
||||
<td class="bom_col_#">1</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, D-Sub, female, 9 pins</td>
|
||||
<td class="bom_col_designators">X2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">3</td>
|
||||
<td class="bom_col_description">Connector, TE 776164-1, female, 35 pins</td>
|
||||
<td class="bom_col_#">2</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, TE 776164-1, female, 35 pins</td>
|
||||
<td class="bom_col_designators">X1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_#">3</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Cable, 2 x 20 AWG</td>
|
||||
<td class="bom_col_designators">C1</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
BIN
examples/ex07.png
generated
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 23 KiB |
171
examples/ex07.svg
generated
@ -1,105 +1,126 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="858pt" height="153pt"
|
||||
viewBox="0.00 0.00 858.00 152.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 148.5)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-148.5 854,-148.5 854,4 -4,4"/>
|
||||
<svg width="848pt" height="162pt"
|
||||
viewBox="0.00 0.00 848.00 161.75" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 157.75)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-157.75 844,-157.75 844,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="212,-115 0,-115 0,0 212,0 212,-115"/>
|
||||
<polygon fill="none" stroke="black" points="0,-91.5 0,-114.5 212,-114.5 212,-91.5 0,-91.5"/>
|
||||
<text text-anchor="start" x="97" y="-99.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-68.5 0,-91.5 98,-91.5 98,-68.5 0,-68.5"/>
|
||||
<text text-anchor="start" x="8.5" y="-76.3" font-family="arial" font-size="14.00">TE 776164-1</text>
|
||||
<polygon fill="none" stroke="black" points="98,-68.5 98,-91.5 157,-91.5 157,-68.5 98,-68.5"/>
|
||||
<text text-anchor="start" x="106" y="-76.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="157,-68.5 157,-91.5 212,-91.5 212,-68.5 157,-68.5"/>
|
||||
<text text-anchor="start" x="165" y="-76.3" font-family="arial" font-size="14.00">35-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-45.5 0,-68.5 212,-68.5 212,-45.5 0,-45.5"/>
|
||||
<text text-anchor="start" x="102" y="-53.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-22.5 0,-45.5 212,-45.5 212,-22.5 0,-22.5"/>
|
||||
<text text-anchor="start" x="102" y="-30.3" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0,0.5 0,-22.5 212,-22.5 212,0.5 0,0.5"/>
|
||||
<text text-anchor="start" x="4" y="-7.3" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="213.5,-122.5 0,-122.5 0,0 213.5,0 213.5,-122.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,0 0,-122.5 213.5,-122.5 213.5,0 0,0"/>
|
||||
<polygon fill="none" stroke="black" points="0,-98 0,-122.5 213.5,-122.5 213.5,-98 0,-98"/>
|
||||
<text text-anchor="start" x="97.75" y="-105.2" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-73.5 0,-98 99.92,-98 99.92,-73.5 0,-73.5"/>
|
||||
<text text-anchor="start" x="7.58" y="-80.7" font-family="arial" font-size="14.00">TE 776164-1</text>
|
||||
<polygon fill="none" stroke="black" points="99.92,-73.5 99.92,-98 158.58,-98 158.58,-73.5 99.92,-73.5"/>
|
||||
<text text-anchor="start" x="107.5" y="-80.7" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="158.58,-73.5 158.58,-98 213.5,-98 213.5,-73.5 158.58,-73.5"/>
|
||||
<text text-anchor="start" x="166.17" y="-80.7" font-family="arial" font-size="14.00">35-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-49 0,-73.5 213.5,-73.5 213.5,-49 0,-49"/>
|
||||
<text text-anchor="start" x="102.63" y="-56.2" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-24.5 0,-49 213.5,-49 213.5,-24.5 0,-24.5"/>
|
||||
<text text-anchor="start" x="102.63" y="-31.7" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0,0 0,-24.5 213.5,-24.5 213.5,0 0,0"/>
|
||||
<text text-anchor="start" x="4" y="-7.2" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
|
||||
</g>
|
||||
<!-- C1 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>C1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="494,-144.5 356,-144.5 356,-10.5 494,-10.5 494,-144.5"/>
|
||||
<polygon fill="none" stroke="black" points="356,-121.5 356,-144.5 494,-144.5 494,-121.5 356,-121.5"/>
|
||||
<text text-anchor="start" x="416" y="-129.3" font-family="arial" font-size="14.00">C1</text>
|
||||
<polygon fill="none" stroke="black" points="356,-98.5 356,-121.5 387,-121.5 387,-98.5 356,-98.5"/>
|
||||
<text text-anchor="start" x="364" y="-106.3" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="387,-98.5 387,-121.5 455,-121.5 455,-98.5 387,-98.5"/>
|
||||
<text text-anchor="start" x="395" y="-106.3" font-family="arial" font-size="14.00">20 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="455,-98.5 455,-121.5 494,-121.5 494,-98.5 455,-98.5"/>
|
||||
<text text-anchor="start" x="462.5" y="-106.3" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="370.5" y="-85.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="358" y="-66.3" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="392" y="-66.3" font-family="arial" font-size="14.00">     1:YE    </text>
|
||||
<text text-anchor="start" x="463" y="-66.3" font-family="arial" font-size="14.00">X2:7</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="356,-58.5 356,-60.5 494,-60.5 494,-58.5 356,-58.5"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="356,-56.5 356,-58.5 494,-58.5 494,-56.5 356,-56.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="356,-54.5 356,-56.5 494,-56.5 494,-54.5 356,-54.5"/>
|
||||
<text text-anchor="start" x="358" y="-41.3" font-family="arial" font-size="14.00">X1:6</text>
|
||||
<text text-anchor="start" x="391" y="-41.3" font-family="arial" font-size="14.00">     2:GN    </text>
|
||||
<text text-anchor="start" x="463" y="-41.3" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="356,-33.5 356,-35.5 494,-35.5 494,-33.5 356,-33.5"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="356,-31.5 356,-33.5 494,-33.5 494,-31.5 356,-31.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="356,-29.5 356,-31.5 494,-31.5 494,-29.5 356,-29.5"/>
|
||||
<text text-anchor="start" x="370.5" y="-16.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="482.5,-153.75 357.5,-153.75 357.5,-12.75 482.5,-12.75 482.5,-153.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="357.5,-12.75 357.5,-153.75 482.5,-153.75 482.5,-12.75 357.5,-12.75"/>
|
||||
<polygon fill="none" stroke="black" points="357.5,-129.25 357.5,-153.75 482.5,-153.75 482.5,-129.25 357.5,-129.25"/>
|
||||
<text text-anchor="start" x="410.63" y="-136.45" font-family="arial" font-size="14.00">C1</text>
|
||||
<polygon fill="none" stroke="black" points="357.5,-104.75 357.5,-129.25 382.67,-129.25 382.67,-104.75 357.5,-104.75"/>
|
||||
<text text-anchor="start" x="362.58" y="-111.95" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="382.67,-104.75 382.67,-129.25 448.33,-129.25 448.33,-104.75 382.67,-104.75"/>
|
||||
<text text-anchor="start" x="387.75" y="-111.95" font-family="arial" font-size="14.00">20 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="448.33,-104.75 448.33,-129.25 482.5,-129.25 482.5,-104.75 448.33,-104.75"/>
|
||||
<text text-anchor="start" x="453.42" y="-111.95" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="374.13" y="-89.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="359.13" y="-69.45" font-family="arial" font-size="14.00"> X1:5</text>
|
||||
<text text-anchor="start" x="396.13" y="-69.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="404.63" y="-69.45" font-family="arial" font-size="14.00">1:YE</text>
|
||||
<text text-anchor="start" x="440.13" y="-69.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="447.13" y="-69.45" font-family="arial" font-size="14.00">X2:7 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="357.5,-62.75 357.5,-64.75 482.5,-64.75 482.5,-62.75 357.5,-62.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="357.5,-60.75 357.5,-62.75 482.5,-62.75 482.5,-60.75 357.5,-60.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="357.5,-58.75 357.5,-60.75 482.5,-60.75 482.5,-58.75 357.5,-58.75"/>
|
||||
<text text-anchor="start" x="359.13" y="-43.45" font-family="arial" font-size="14.00"> X1:6</text>
|
||||
<text text-anchor="start" x="396.13" y="-43.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="403.5" y="-43.45" font-family="arial" font-size="14.00">2:GN</text>
|
||||
<text text-anchor="start" x="440.13" y="-43.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="447.13" y="-43.45" font-family="arial" font-size="14.00">X2:2 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="357.5,-36.75 357.5,-38.75 482.5,-38.75 482.5,-36.75 357.5,-36.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="357.5,-34.75 357.5,-36.75 482.5,-36.75 482.5,-34.75 357.5,-34.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="357.5,-32.75 357.5,-34.75 482.5,-34.75 482.5,-32.75 357.5,-32.75"/>
|
||||
<text text-anchor="start" x="374.13" y="-17.45" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M212,-54.5C276.13,-54.5 292.12,-55.5 356,-55.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M212,-56.5C276,-56.5 292,-57.5 356,-57.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M212,-58.5C275.88,-58.5 291.87,-59.5 356,-59.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M213.5,-59.25C277.56,-59.25 293.56,-59.75 357.5,-59.75"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M213.5,-61.25C277.5,-61.25 293.5,-61.75 357.5,-61.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M213.5,-63.25C277.44,-63.25 293.44,-63.75 357.5,-63.75"/>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M212,-31.5C275.88,-31.5 291.87,-30.5 356,-30.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M212,-33.5C276,-33.5 292,-32.5 356,-32.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M212,-35.5C276.13,-35.5 292.12,-34.5 356,-34.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M213.5,-34.75C277.38,-34.75 293.38,-33.75 357.5,-33.75"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M213.5,-36.75C277.5,-36.75 293.5,-35.75 357.5,-35.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M213.5,-38.75C277.63,-38.75 293.63,-37.75 357.5,-37.75"/>
|
||||
</g>
|
||||
<!-- C1--C1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>C1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M482.5,-63.75C440.83,-63.75 399.17,-63.75 357.5,-63.75"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M482.5,-61.75C440.83,-61.75 399.17,-61.75 357.5,-61.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M482.5,-59.75C440.83,-59.75 399.17,-59.75 357.5,-59.75"/>
|
||||
</g>
|
||||
<!-- C1--C1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>C1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M482.5,-37.75C440.83,-37.75 399.17,-37.75 357.5,-37.75"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M482.5,-35.75C440.83,-35.75 399.17,-35.75 357.5,-35.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M482.5,-33.75C440.83,-33.75 399.17,-33.75 357.5,-33.75"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="850,-115 638,-115 638,0 850,0 850,-115"/>
|
||||
<polygon fill="none" stroke="black" points="638,-91.5 638,-114.5 850,-114.5 850,-91.5 638,-91.5"/>
|
||||
<text text-anchor="start" x="735" y="-99.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="638,-68.5 638,-91.5 711,-91.5 711,-68.5 638,-68.5"/>
|
||||
<text text-anchor="start" x="654.5" y="-76.3" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="711,-68.5 711,-91.5 786,-91.5 786,-68.5 711,-68.5"/>
|
||||
<text text-anchor="start" x="727" y="-76.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="786,-68.5 786,-91.5 850,-91.5 850,-68.5 786,-68.5"/>
|
||||
<text text-anchor="start" x="802" y="-76.3" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polygon fill="none" stroke="black" points="638,-45.5 638,-68.5 850,-68.5 850,-45.5 638,-45.5"/>
|
||||
<text text-anchor="start" x="740" y="-53.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="638,-22.5 638,-45.5 850,-45.5 850,-22.5 638,-22.5"/>
|
||||
<text text-anchor="start" x="740" y="-30.3" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="638,0.5 638,-22.5 850,-22.5 850,0.5 638,0.5"/>
|
||||
<text text-anchor="start" x="642" y="-7.3" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="840,-122.5 626.5,-122.5 626.5,0 840,0 840,-122.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="626.5,0 626.5,-122.5 840,-122.5 840,0 626.5,0"/>
|
||||
<polygon fill="none" stroke="black" points="626.5,-98 626.5,-122.5 840,-122.5 840,-98 626.5,-98"/>
|
||||
<text text-anchor="start" x="724.25" y="-105.2" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="626.5,-73.5 626.5,-98 699.67,-98 699.67,-73.5 626.5,-73.5"/>
|
||||
<text text-anchor="start" x="642.83" y="-80.7" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="699.67,-73.5 699.67,-98 775.83,-98 775.83,-73.5 699.67,-73.5"/>
|
||||
<text text-anchor="start" x="716" y="-80.7" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="775.83,-73.5 775.83,-98 840,-98 840,-73.5 775.83,-73.5"/>
|
||||
<text text-anchor="start" x="792.17" y="-80.7" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polygon fill="none" stroke="black" points="626.5,-49 626.5,-73.5 840,-73.5 840,-49 626.5,-49"/>
|
||||
<text text-anchor="start" x="729.13" y="-56.2" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="626.5,-24.5 626.5,-49 840,-49 840,-24.5 626.5,-24.5"/>
|
||||
<text text-anchor="start" x="729.13" y="-31.7" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="626.5,0 626.5,-24.5 840,-24.5 840,0 626.5,0"/>
|
||||
<text text-anchor="start" x="630.5" y="-7.2" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
|
||||
</g>
|
||||
<!-- C1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<g id="edge5" class="edge">
|
||||
<title>C1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-55.5C557.16,-56.48 571.4,-32.48 638,-31.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M494,-57.5C558.88,-57.5 573.12,-33.5 638,-33.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-59.5C560.6,-58.52 574.84,-34.52 638,-35.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M482.5,-59.75C545.72,-60.77 559.8,-35.77 626.5,-34.75"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M482.5,-61.75C547.46,-61.75 561.54,-36.75 626.5,-36.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M482.5,-63.75C549.2,-62.73 563.28,-37.73 626.5,-38.75"/>
|
||||
</g>
|
||||
<!-- C1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<g id="edge6" class="edge">
|
||||
<title>C1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-30.5C560.6,-31.48 574.84,-55.48 638,-54.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M494,-32.5C558.88,-32.5 573.12,-56.5 638,-56.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M494,-34.5C557.16,-33.52 571.4,-57.52 638,-58.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M482.5,-33.75C549.25,-34.79 563.25,-60.29 626.5,-59.25"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M482.5,-35.75C547.5,-35.75 561.5,-61.25 626.5,-61.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M482.5,-37.75C545.75,-36.71 559.75,-62.21 626.5,-63.25"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 9.2 KiB |
4
examples/ex07.tsv
generated
Normal file
@ -0,0 +1,4 @@
|
||||
# Qty Unit Description Designators
|
||||
1 1 Connector, D-Sub, female, 9 pins X2
|
||||
2 1 Connector, TE 776164-1, female, 35 pins X1
|
||||
3 1 m Cable, 2 x 20 AWG C1
|
||||
|
64
examples/ex07_wv_gvpr.gvpr
Normal file
@ -0,0 +1,64 @@
|
||||
/*******************************************************************
|
||||
|
||||
see https://forum.graphviz.org/t/straitening-one-line-throu-a-table/2196 and https://forum.graphviz.org/t/way-of-drawing-a-black-circle-inside-a-table-field/2273/12
|
||||
input must include pos values (must be output from one of the engines w/ -Tdot)#
|
||||
Thanks to steveroush and FeRDNYC
|
||||
|
||||
*******************************************************************/
|
||||
BEG_G{
|
||||
double x1,y1,x2,y2,x3,y3,x4,y4;
|
||||
string ptSize, tok[int], pt[];
|
||||
int cnt, circ, i;
|
||||
node_t aNode;
|
||||
|
||||
circ=0;
|
||||
|
||||
/***************************************
|
||||
$G.bb="";
|
||||
$G.nodesep="";
|
||||
$G.ranksep="";
|
||||
$G.splines="true";
|
||||
****************************************/
|
||||
}
|
||||
|
||||
// This removes the label text but keeps the position
|
||||
E[noLabel] {
|
||||
$.label=""; // remove pesky label
|
||||
// $.lp=""; // remove peskier label pos
|
||||
}
|
||||
|
||||
E[straight] {
|
||||
cnt=tokens($.pos,tok," ");
|
||||
$.oldpos=$.pos;
|
||||
x1 = xOf(tok[0]);
|
||||
y1 = yOf(tok[0]);
|
||||
x4 = xOf(tok[cnt-1]);
|
||||
y4 = yOf(tok[cnt-1]);
|
||||
x2 = x1 + (x4-x1)/3.;
|
||||
y2 = y1 + (y4-y1)/3.;
|
||||
x3 = x1 + 2.*(x4-x1)/3.;
|
||||
y3 = y1 + 2.*(y4-y1)/3.;
|
||||
pos=sprintf("%.3f,%.3f %.3f,%.3f %.3f,%.3f %.3f,%.3f", x1,y1, x2,y2, x3,y3, x4,y4);
|
||||
$.label=""; // remove pesky label
|
||||
$.lp=""; // remove peskier label pos
|
||||
|
||||
if (hasAttr($, "addPTS") && $.addPTS!="" && $.colorPTS!=""){
|
||||
// now we place point nodes at the edge ends
|
||||
pt[1] = tok[0];
|
||||
pt[2] = tok[cnt-1];
|
||||
ptSize=$.addPTS;
|
||||
for (pt[i]) {
|
||||
if (i==2 && pt[1]==pt[2])
|
||||
continue;
|
||||
aNode=node($G, "__CIRCLE__" + (string)++circ);
|
||||
aNode.pos=pt[i];
|
||||
aNode.shape="point";
|
||||
aNode.width=ptSize;
|
||||
aNode.height=ptSize;
|
||||
aNode.style="filled";
|
||||
aNode.fillcolor=$.colorPTS;
|
||||
aNode.color=$.colorPTS;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
361
examples/ex08.gv
generated
@ -1,150 +1,235 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4-dev
|
||||
// Graph generated by WireViz 0.4-dev251
|
||||
// https://github.com/formatc1702/WireViz
|
||||
graph [bgcolor="#FFFFFF" fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor="#FFFFFF" fontname=arial height=0 margin=0 shape=none style=filled width=0]
|
||||
edge [fontname=arial style=bold]
|
||||
Key [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Key</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Phone Connector</td>
|
||||
<td balign="left">male 3.5</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td>Dot</td>
|
||||
<td port="p1r">T</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Dash</td>
|
||||
<td port="p2r">R</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Ground</td>
|
||||
<td port="p3r">S</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left" sides="TLR"><img scale="false" src="/Users/daniel/Projects/WireViz/examples/resources/stereo-phone-plug-TRS.png"/></td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left" sides="BLR">Tip, Ring, and Sleeve</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Key</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Phone Connector</td>
|
||||
<td>male 3.5</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Dot</td>
|
||||
[]
|
||||
<td port="p1r">T</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Dash</td>
|
||||
[]
|
||||
<td port="p2r">R</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Ground</td>
|
||||
[]
|
||||
<td port="p3r">S</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td balign="left" sides="TLR"><img scale="false" src="C:\Users\Tobias\Documents\git\WireViz\examples\resources\stereo-phone-plug-TRS.png" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td balign="left" sides="BLR">Tip, Ring, and Sleeve</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
edge [color="#000000:#ffffff:#000000"]
|
||||
> shape=box style=filled]
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>3x</td>
|
||||
<td>24 AWG</td>
|
||||
<td>+ S</td>
|
||||
<td>0.2 m</td>
|
||||
<td>BK</td>
|
||||
<td bgcolor="#000000" sides="TBLR"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> Key:S:Ground</td>
|
||||
<td> </td>
|
||||
<td>1:WH</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w1">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> Key:R:Dash</td>
|
||||
<td> </td>
|
||||
<td>2:BN</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w2">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> Key:T:Dot</td>
|
||||
<td> </td>
|
||||
<td>3:GN</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w3">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> Key:S:Ground</td>
|
||||
<td> </td>
|
||||
<td>SN:Shield</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w4">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td balign="left" sides="TLR">
|
||||
<table border="0" cellborder="0" cellspacing="0" id="!">
|
||||
<tr>
|
||||
<td width="70.0" height="70" fixedsize="true"><img scale="true" src="C:\Users\Tobias\Documents\git\WireViz\examples\resources\cable-WH+BN+GN+shield.png" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td balign="left" sides="BLR">Cross-section</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> shape=box style=filled]
|
||||
edge [color="#000000:#FFFFFF:#000000"]
|
||||
Key:p3r:e -- W1:w1:w
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
Key:p2r:e -- W1:w2:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
edge [color="#000000:#00AA00:#000000"]
|
||||
Key:p1r:e -- W1:w3:w
|
||||
edge [color="#000000:#aaaaaa:#000000"]
|
||||
Key:p3r:e -- W1:ws:w
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">W1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">3x</td>
|
||||
<td balign="left">24 AWG</td>
|
||||
<td balign="left">+ S</td>
|
||||
<td balign="left">0.2 m</td>
|
||||
<td balign="left">BK</td>
|
||||
<td balign="left" bgcolor="#000000" width="4"></td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td>Key:S:Ground</td>
|
||||
<td>
|
||||
1:WH
|
||||
</td>
|
||||
<td><!-- 1_out --></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ffffff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Key:R:Dash</td>
|
||||
<td>
|
||||
2:BN
|
||||
</td>
|
||||
<td><!-- 2_out --></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Key:T:Dot</td>
|
||||
<td>
|
||||
3:GN
|
||||
</td>
|
||||
<td><!-- 3_out --></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w3" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#00ff00" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td>Key:S:Ground</td>
|
||||
<td>Shield</td>
|
||||
<td><!-- s_out --></td>
|
||||
</tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="6" bgcolor="#aaaaaa" border="2" sides="tb" port="ws"></td></tr>
|
||||
<tr><td> </td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left" sides="TLR">
|
||||
<table border="0" cellspacing="0" cellborder="0"><tr>
|
||||
<td width="70.0" height="70" fixedsize="true"><img scale="true" src="/Users/daniel/Projects/WireViz/examples/resources/cable-WH+BN+GN+shield.png"/></td>
|
||||
</tr></table>
|
||||
</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left" sides="BLR">Cross-section</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
edge [color="#000000:#AAAAAA:#000000"]
|
||||
Key:p3r:e -- W1:w4:w
|
||||
W1:w1:e -- W1:w1:w [color="#000000:#FFFFFF:#000000" straight=straight]
|
||||
W1:w2:e -- W1:w2:w [color="#000000:#895956:#000000" straight=straight]
|
||||
W1:w3:e -- W1:w3:w [color="#000000:#00AA00:#000000" straight=straight]
|
||||
W1:w4:e -- W1:w4:w [color="#000000:#AAAAAA:#000000" straight=straight]
|
||||
}
|
||||
|
||||
232
examples/ex08.html
generated
BIN
examples/ex08.png
generated
|
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 46 KiB |
206
examples/ex08.svg
generated
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 20 KiB |
3
examples/ex08.tsv
generated
Normal file
@ -0,0 +1,3 @@
|
||||
# Qty Unit Description Designators
|
||||
1 1 Connector, Phone Connector, male 3.5 Key
|
||||
2 1 m Cable, 3 x 24 AWG shielded, BK W1
|
||||
|
64
examples/ex08_wv_gvpr.gvpr
Normal file
@ -0,0 +1,64 @@
|
||||
/*******************************************************************
|
||||
|
||||
see https://forum.graphviz.org/t/straitening-one-line-throu-a-table/2196 and https://forum.graphviz.org/t/way-of-drawing-a-black-circle-inside-a-table-field/2273/12
|
||||
input must include pos values (must be output from one of the engines w/ -Tdot)#
|
||||
Thanks to steveroush and FeRDNYC
|
||||
|
||||
*******************************************************************/
|
||||
BEG_G{
|
||||
double x1,y1,x2,y2,x3,y3,x4,y4;
|
||||
string ptSize, tok[int], pt[];
|
||||
int cnt, circ, i;
|
||||
node_t aNode;
|
||||
|
||||
circ=0;
|
||||
|
||||
/***************************************
|
||||
$G.bb="";
|
||||
$G.nodesep="";
|
||||
$G.ranksep="";
|
||||
$G.splines="true";
|
||||
****************************************/
|
||||
}
|
||||
|
||||
// This removes the label text but keeps the position
|
||||
E[noLabel] {
|
||||
$.label=""; // remove pesky label
|
||||
// $.lp=""; // remove peskier label pos
|
||||
}
|
||||
|
||||
E[straight] {
|
||||
cnt=tokens($.pos,tok," ");
|
||||
$.oldpos=$.pos;
|
||||
x1 = xOf(tok[0]);
|
||||
y1 = yOf(tok[0]);
|
||||
x4 = xOf(tok[cnt-1]);
|
||||
y4 = yOf(tok[cnt-1]);
|
||||
x2 = x1 + (x4-x1)/3.;
|
||||
y2 = y1 + (y4-y1)/3.;
|
||||
x3 = x1 + 2.*(x4-x1)/3.;
|
||||
y3 = y1 + 2.*(y4-y1)/3.;
|
||||
pos=sprintf("%.3f,%.3f %.3f,%.3f %.3f,%.3f %.3f,%.3f", x1,y1, x2,y2, x3,y3, x4,y4);
|
||||
$.label=""; // remove pesky label
|
||||
$.lp=""; // remove peskier label pos
|
||||
|
||||
if (hasAttr($, "addPTS") && $.addPTS!="" && $.colorPTS!=""){
|
||||
// now we place point nodes at the edge ends
|
||||
pt[1] = tok[0];
|
||||
pt[2] = tok[cnt-1];
|
||||
ptSize=$.addPTS;
|
||||
for (pt[i]) {
|
||||
if (i==2 && pt[1]==pt[2])
|
||||
continue;
|
||||
aNode=node($G, "__CIRCLE__" + (string)++circ);
|
||||
aNode.pos=pt[i];
|
||||
aNode.shape="point";
|
||||
aNode.width=ptSize;
|
||||
aNode.height=ptSize;
|
||||
aNode.style="filled";
|
||||
aNode.fillcolor=$.colorPTS;
|
||||
aNode.color=$.colorPTS;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
1266
examples/ex09.gv
generated
1035
examples/ex09.html
generated
BIN
examples/ex09.png
generated
|
Before Width: | Height: | Size: 245 KiB After Width: | Height: | Size: 206 KiB |
1005
examples/ex09.svg
generated
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 52 KiB |
4
examples/ex09.tsv
generated
Normal file
@ -0,0 +1,4 @@
|
||||
# Qty Unit Description Designators
|
||||
1 1 Connector, D-Sub, male, 25 pins X1
|
||||
2 1 Connector, F48, female, 48 pins X2
|
||||
3 1 m Cable, 12 x 0.25 mm² shielded W1
|
||||
|
64
examples/ex09_wv_gvpr.gvpr
Normal file
@ -0,0 +1,64 @@
|
||||
/*******************************************************************
|
||||
|
||||
see https://forum.graphviz.org/t/straitening-one-line-throu-a-table/2196 and https://forum.graphviz.org/t/way-of-drawing-a-black-circle-inside-a-table-field/2273/12
|
||||
input must include pos values (must be output from one of the engines w/ -Tdot)#
|
||||
Thanks to steveroush and FeRDNYC
|
||||
|
||||
*******************************************************************/
|
||||
BEG_G{
|
||||
double x1,y1,x2,y2,x3,y3,x4,y4;
|
||||
string ptSize, tok[int], pt[];
|
||||
int cnt, circ, i;
|
||||
node_t aNode;
|
||||
|
||||
circ=0;
|
||||
|
||||
/***************************************
|
||||
$G.bb="";
|
||||
$G.nodesep="";
|
||||
$G.ranksep="";
|
||||
$G.splines="true";
|
||||
****************************************/
|
||||
}
|
||||
|
||||
// This removes the label text but keeps the position
|
||||
E[noLabel] {
|
||||
$.label=""; // remove pesky label
|
||||
// $.lp=""; // remove peskier label pos
|
||||
}
|
||||
|
||||
E[straight] {
|
||||
cnt=tokens($.pos,tok," ");
|
||||
$.oldpos=$.pos;
|
||||
x1 = xOf(tok[0]);
|
||||
y1 = yOf(tok[0]);
|
||||
x4 = xOf(tok[cnt-1]);
|
||||
y4 = yOf(tok[cnt-1]);
|
||||
x2 = x1 + (x4-x1)/3.;
|
||||
y2 = y1 + (y4-y1)/3.;
|
||||
x3 = x1 + 2.*(x4-x1)/3.;
|
||||
y3 = y1 + 2.*(y4-y1)/3.;
|
||||
pos=sprintf("%.3f,%.3f %.3f,%.3f %.3f,%.3f %.3f,%.3f", x1,y1, x2,y2, x3,y3, x4,y4);
|
||||
$.label=""; // remove pesky label
|
||||
$.lp=""; // remove peskier label pos
|
||||
|
||||
if (hasAttr($, "addPTS") && $.addPTS!="" && $.colorPTS!=""){
|
||||
// now we place point nodes at the edge ends
|
||||
pt[1] = tok[0];
|
||||
pt[2] = tok[cnt-1];
|
||||
ptSize=$.addPTS;
|
||||
for (pt[i]) {
|
||||
if (i==2 && pt[1]==pt[2])
|
||||
continue;
|
||||
aNode=node($G, "__CIRCLE__" + (string)++circ);
|
||||
aNode.pos=pt[i];
|
||||
aNode.shape="point";
|
||||
aNode.width=ptSize;
|
||||
aNode.height=ptSize;
|
||||
aNode.style="filled";
|
||||
aNode.fillcolor=$.colorPTS;
|
||||
aNode.color=$.colorPTS;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
688
examples/ex10.gv
generated
@ -1,302 +1,440 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4-dev
|
||||
// Graph generated by WireViz 0.4-dev251
|
||||
// https://github.com/formatc1702/WireViz
|
||||
graph [bgcolor="#FFFFFF" fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor="#FFFFFF" fontname=arial height=0 margin=0 shape=none style=filled width=0]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Stewart Connector SS-37000-002</td>
|
||||
<td balign="left">male</td>
|
||||
<td balign="left">8-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td>DA+</td>
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DA-</td>
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DB+</td>
|
||||
<td port="p3r">3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DC+</td>
|
||||
<td port="p4r">4</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DC-</td>
|
||||
<td port="p5r">5</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DB-</td>
|
||||
<td port="p6r">6</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DD+</td>
|
||||
<td port="p7r">7</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DD-</td>
|
||||
<td port="p8r">8</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Stewart Connector SS-37000-002</td>
|
||||
<td>male</td>
|
||||
<td>8-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>DA+</td>
|
||||
[]
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DA-</td>
|
||||
[]
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DB+</td>
|
||||
[]
|
||||
<td port="p3r">3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DC+</td>
|
||||
[]
|
||||
<td port="p4r">4</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DC-</td>
|
||||
[]
|
||||
<td port="p5r">5</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DB-</td>
|
||||
[]
|
||||
<td port="p6r">6</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DD+</td>
|
||||
[]
|
||||
<td port="p7r">7</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DD-</td>
|
||||
[]
|
||||
<td port="p8r">8</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
X2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X2</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Stewart Connector SS-37000-002</td>
|
||||
<td balign="left">male</td>
|
||||
<td balign="left">8-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>DB+</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>DB-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p3l">3</td>
|
||||
<td>DA+</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p4l">4</td>
|
||||
<td>DD+</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p5l">5</td>
|
||||
<td>DD-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p6l">6</td>
|
||||
<td>DA-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p7l">7</td>
|
||||
<td>DC+</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p8l">8</td>
|
||||
<td>DC-</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Stewart Connector SS-37000-002</td>
|
||||
<td>male</td>
|
||||
<td>8-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>DB+</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>DB-</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p3l">3</td>
|
||||
<td>DA+</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p4l">4</td>
|
||||
<td>DD+</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p5l">5</td>
|
||||
<td>DD-</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p6l">6</td>
|
||||
<td>DA-</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p7l">7</td>
|
||||
<td>DC+</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p8l">8</td>
|
||||
<td>DC-</td>
|
||||
[]
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
edge [color="#000000:#ffffff:#00ff00:#ffffff:#000000"]
|
||||
> shape=box style=filled]
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>CAT5e</td>
|
||||
<td>8x</td>
|
||||
<td>24 AWG</td>
|
||||
<td>1 m</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:1:DA+</td>
|
||||
<td> </td>
|
||||
<td>1:WHGN</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:3:DA+ </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="10" port="w1">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:2:DA-</td>
|
||||
<td> </td>
|
||||
<td>2:GN</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:6:DA- </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="10" port="w2">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:3:DB+</td>
|
||||
<td> </td>
|
||||
<td>3:WHOG</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:1:DB+ </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="10" port="w3">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:4:DC+</td>
|
||||
<td> </td>
|
||||
<td>4:BU</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:7:DC+ </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="10" port="w4">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:5:DC-</td>
|
||||
<td> </td>
|
||||
<td>5:WHBU</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:8:DC- </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="10" port="w5">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:6:DB-</td>
|
||||
<td> </td>
|
||||
<td>6:OG</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:2:DB- </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="10" port="w6">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:7:DD+</td>
|
||||
<td> </td>
|
||||
<td>7:WHBN</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:4:DD+ </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="10" port="w7">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:8:DD-</td>
|
||||
<td> </td>
|
||||
<td>8:BN</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:5:DD- </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="10" port="w8">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> shape=box style=filled]
|
||||
edge [color="#000000:#FFFFFF:#00AA00:#FFFFFF:#000000"]
|
||||
X1:p1r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p3l:w
|
||||
edge [color="#000000:#00ff00:#00ff00:#00ff00:#000000"]
|
||||
edge [color="#000000:#00AA00:#00AA00:#00AA00:#000000"]
|
||||
X1:p2r:e -- W1:w2:w
|
||||
W1:w2:e -- X2:p6l:w
|
||||
edge [color="#000000:#ffffff:#ff8000:#ffffff:#000000"]
|
||||
edge [color="#000000:#FFFFFF:#FF8000:#FFFFFF:#000000"]
|
||||
X1:p3r:e -- W1:w3:w
|
||||
W1:w3:e -- X2:p1l:w
|
||||
edge [color="#000000:#0066ff:#0066ff:#0066ff:#000000"]
|
||||
edge [color="#000000:#0066FF:#0066FF:#0066FF:#000000"]
|
||||
X1:p4r:e -- W1:w4:w
|
||||
W1:w4:e -- X2:p7l:w
|
||||
edge [color="#000000:#ffffff:#0066ff:#ffffff:#000000"]
|
||||
edge [color="#000000:#FFFFFF:#0066FF:#FFFFFF:#000000"]
|
||||
X1:p5r:e -- W1:w5:w
|
||||
W1:w5:e -- X2:p8l:w
|
||||
edge [color="#000000:#ff8000:#ff8000:#ff8000:#000000"]
|
||||
edge [color="#000000:#FF8000:#FF8000:#FF8000:#000000"]
|
||||
X1:p6r:e -- W1:w6:w
|
||||
W1:w6:e -- X2:p2l:w
|
||||
edge [color="#000000:#ffffff:#895956:#ffffff:#000000"]
|
||||
edge [color="#000000:#FFFFFF:#895956:#FFFFFF:#000000"]
|
||||
X1:p7r:e -- W1:w7:w
|
||||
W1:w7:e -- X2:p4l:w
|
||||
edge [color="#000000:#895956:#895956:#895956:#000000"]
|
||||
X1:p8r:e -- W1:w8:w
|
||||
W1:w8:e -- X2:p5l:w
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">W1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">CAT5e</td>
|
||||
<td balign="left">8x</td>
|
||||
<td balign="left">24 AWG</td>
|
||||
<td balign="left">1 m</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td>X1:1:DA+</td>
|
||||
<td>
|
||||
1:WHGN
|
||||
</td>
|
||||
<td>X2:3:DA+</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="10">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ffffff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#00ff00" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ffffff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:2:DA-</td>
|
||||
<td>
|
||||
2:GN
|
||||
</td>
|
||||
<td>X2:6:DA-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="10">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#00ff00" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#00ff00" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#00ff00" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:3:DB+</td>
|
||||
<td>
|
||||
3:WHOG
|
||||
</td>
|
||||
<td>X2:1:DB+</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w3" height="10">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ffffff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff8000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ffffff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:4:DC+</td>
|
||||
<td>
|
||||
4:BU
|
||||
</td>
|
||||
<td>X2:7:DC+</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w4" height="10">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#0066ff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#0066ff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#0066ff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:5:DC-</td>
|
||||
<td>
|
||||
5:WHBU
|
||||
</td>
|
||||
<td>X2:8:DC-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w5" height="10">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ffffff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#0066ff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ffffff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:6:DB-</td>
|
||||
<td>
|
||||
6:OG
|
||||
</td>
|
||||
<td>X2:2:DB-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w6" height="10">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff8000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff8000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff8000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:7:DD+</td>
|
||||
<td>
|
||||
7:WHBN
|
||||
</td>
|
||||
<td>X2:4:DD+</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w7" height="10">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ffffff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ffffff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X1:8:DD-</td>
|
||||
<td>
|
||||
8:BN
|
||||
</td>
|
||||
<td>X2:5:DD-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w8" height="10">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
W1:w1:e -- W1:w1:w [color="#000000:#FFFFFF:#00AA00:#FFFFFF:#000000" straight=straight]
|
||||
W1:w2:e -- W1:w2:w [color="#000000:#00AA00:#00AA00:#00AA00:#000000" straight=straight]
|
||||
W1:w3:e -- W1:w3:w [color="#000000:#FFFFFF:#FF8000:#FFFFFF:#000000" straight=straight]
|
||||
W1:w4:e -- W1:w4:w [color="#000000:#0066FF:#0066FF:#0066FF:#000000" straight=straight]
|
||||
W1:w5:e -- W1:w5:w [color="#000000:#FFFFFF:#0066FF:#FFFFFF:#000000" straight=straight]
|
||||
W1:w6:e -- W1:w6:w [color="#000000:#FF8000:#FF8000:#FF8000:#000000" straight=straight]
|
||||
W1:w7:e -- W1:w7:w [color="#000000:#FFFFFF:#895956:#FFFFFF:#000000" straight=straight]
|
||||
W1:w8:e -- W1:w8:w [color="#000000:#895956:#895956:#895956:#000000" straight=straight]
|
||||
}
|
||||
|
||||
639
examples/ex10.html
generated
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="generator" content="WireViz 0.4-dev - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.4-dev251 - https://github.com/formatc1702/WireViz">
|
||||
<title>ex10</title>
|
||||
<style>
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
}
|
||||
|
||||
</style>
|
||||
</head><body style="font-family:arial;background-color:#ffffff">
|
||||
</head><body style="font-family:arial;background-color:#FFFFFF">
|
||||
<h1>ex10</h1>
|
||||
<h2>Diagram</h2>
|
||||
|
||||
@ -30,327 +30,418 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1120pt" height="324pt"
|
||||
viewBox="0.00 0.00 1120.00 324.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 320)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-320 1116,-320 1116,4 -4,4"/>
|
||||
<svg width="1115pt" height="337pt"
|
||||
viewBox="0.00 0.00 1115.00 337.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 333)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-333 1111,-333 1111,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="298,-264 0,-264 0,-34 298,-34 298,-264"/>
|
||||
<polygon fill="none" stroke="black" points="0,-241 0,-264 298,-264 298,-241 0,-241"/>
|
||||
<text text-anchor="start" x="140" y="-248.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-218 0,-241 219,-241 219,-218 0,-218"/>
|
||||
<text text-anchor="start" x="4" y="-225.8" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="219,-218 219,-241 258,-241 258,-218 219,-218"/>
|
||||
<text text-anchor="start" x="223" y="-225.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="258,-218 258,-241 298,-241 298,-218 258,-218"/>
|
||||
<text text-anchor="start" x="262" y="-225.8" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-195 0,-218 160,-218 160,-195 0,-195"/>
|
||||
<text text-anchor="start" x="66" y="-202.8" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="160,-195 160,-218 298,-218 298,-195 160,-195"/>
|
||||
<text text-anchor="start" x="225" y="-202.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-172 0,-195 160,-195 160,-172 0,-172"/>
|
||||
<text text-anchor="start" x="67.5" y="-179.8" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="160,-172 160,-195 298,-195 298,-172 160,-172"/>
|
||||
<text text-anchor="start" x="225" y="-179.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-149 0,-172 160,-172 160,-149 0,-149"/>
|
||||
<text text-anchor="start" x="66" y="-156.8" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="160,-149 160,-172 298,-172 298,-149 160,-149"/>
|
||||
<text text-anchor="start" x="225" y="-156.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-126 0,-149 160,-149 160,-126 0,-126"/>
|
||||
<text text-anchor="start" x="65.5" y="-133.8" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="160,-126 160,-149 298,-149 298,-126 160,-126"/>
|
||||
<text text-anchor="start" x="225" y="-133.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0,-103 0,-126 160,-126 160,-103 0,-103"/>
|
||||
<text text-anchor="start" x="67.5" y="-110.8" font-family="arial" font-size="14.00">DC-</text>
|
||||
<polygon fill="none" stroke="black" points="160,-103 160,-126 298,-126 298,-103 160,-103"/>
|
||||
<text text-anchor="start" x="225" y="-110.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-80 0,-103 160,-103 160,-80 0,-80"/>
|
||||
<text text-anchor="start" x="67.5" y="-87.8" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="160,-80 160,-103 298,-103 298,-80 160,-80"/>
|
||||
<text text-anchor="start" x="225" y="-87.8" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0,-57 0,-80 160,-80 160,-57 0,-57"/>
|
||||
<text text-anchor="start" x="65.5" y="-64.8" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="160,-57 160,-80 298,-80 298,-57 160,-57"/>
|
||||
<text text-anchor="start" x="225" y="-64.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0,-34 0,-57 160,-57 160,-34 0,-34"/>
|
||||
<text text-anchor="start" x="67.5" y="-41.8" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="160,-34 160,-57 298,-57 298,-34 160,-34"/>
|
||||
<text text-anchor="start" x="225" y="-41.8" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="301.5,-275 0,-275 0,-34 301.5,-34 301.5,-275"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-34 0,-275 301.5,-275 301.5,-34 0,-34"/>
|
||||
<polygon fill="none" stroke="black" points="0,-250.5 0,-275 301.5,-275 301.5,-250.5 0,-250.5"/>
|
||||
<text text-anchor="start" x="141.75" y="-257.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-226 0,-250.5 223.25,-250.5 223.25,-226 0,-226"/>
|
||||
<text text-anchor="start" x="4" y="-233.2" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="223.25,-226 223.25,-250.5 262,-250.5 262,-226 223.25,-226"/>
|
||||
<text text-anchor="start" x="227.25" y="-233.2" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="262,-226 262,-250.5 301.5,-250.5 301.5,-226 262,-226"/>
|
||||
<text text-anchor="start" x="266" y="-233.2" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-202 0,-226 161.25,-226 161.25,-202 0,-202"/>
|
||||
<text text-anchor="start" x="66.38" y="-208.7" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-202 161.25,-226 301.5,-226 301.5,-202 161.25,-202"/>
|
||||
<text text-anchor="start" x="227.25" y="-208.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-178 0,-202 161.25,-202 161.25,-178 0,-178"/>
|
||||
<text text-anchor="start" x="68.25" y="-184.7" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-178 161.25,-202 301.5,-202 301.5,-178 161.25,-178"/>
|
||||
<text text-anchor="start" x="227.25" y="-184.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-154 0,-178 161.25,-178 161.25,-154 0,-154"/>
|
||||
<text text-anchor="start" x="66.38" y="-160.7" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-154 161.25,-178 301.5,-178 301.5,-154 161.25,-154"/>
|
||||
<text text-anchor="start" x="227.25" y="-160.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-130 0,-154 161.25,-154 161.25,-130 0,-130"/>
|
||||
<text text-anchor="start" x="66" y="-136.7" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-130 161.25,-154 301.5,-154 301.5,-130 161.25,-130"/>
|
||||
<text text-anchor="start" x="227.25" y="-136.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0,-106 0,-130 161.25,-130 161.25,-106 0,-106"/>
|
||||
<text text-anchor="start" x="67.88" y="-112.7" font-family="arial" font-size="14.00">DC-</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-106 161.25,-130 301.5,-130 301.5,-106 161.25,-106"/>
|
||||
<text text-anchor="start" x="227.25" y="-112.7" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-82 0,-106 161.25,-106 161.25,-82 0,-82"/>
|
||||
<text text-anchor="start" x="68.25" y="-88.7" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-82 161.25,-106 301.5,-106 301.5,-82 161.25,-82"/>
|
||||
<text text-anchor="start" x="227.25" y="-88.7" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0,-58 0,-82 161.25,-82 161.25,-58 0,-58"/>
|
||||
<text text-anchor="start" x="66" y="-64.7" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-58 161.25,-82 301.5,-82 301.5,-58 161.25,-58"/>
|
||||
<text text-anchor="start" x="227.25" y="-64.7" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0,-34 0,-58 161.25,-58 161.25,-34 0,-34"/>
|
||||
<text text-anchor="start" x="67.88" y="-40.7" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-34 161.25,-58 301.5,-58 301.5,-34 161.25,-34"/>
|
||||
<text text-anchor="start" x="227.25" y="-40.7" font-family="arial" font-size="14.00">8</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="670,-316 442,-316 442,0 670,0 670,-316"/>
|
||||
<polygon fill="none" stroke="black" points="442,-293 442,-316 670,-316 670,-293 442,-293"/>
|
||||
<text text-anchor="start" x="545.5" y="-300.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="442,-270 442,-293 509,-293 509,-270 442,-270"/>
|
||||
<text text-anchor="start" x="454" y="-277.8" font-family="arial" font-size="14.00">CAT5e</text>
|
||||
<polygon fill="none" stroke="black" points="509,-270 509,-293 548,-293 548,-270 509,-270"/>
|
||||
<text text-anchor="start" x="521" y="-277.8" font-family="arial" font-size="14.00">8x</text>
|
||||
<polygon fill="none" stroke="black" points="548,-270 548,-293 623,-293 623,-270 548,-270"/>
|
||||
<text text-anchor="start" x="559.5" y="-277.8" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="623,-270 623,-293 670,-293 670,-270 623,-270"/>
|
||||
<text text-anchor="start" x="634.5" y="-277.8" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="473" y="-256.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="444.5" y="-237.8" font-family="arial" font-size="14.00">X1:1:DA+</text>
|
||||
<text text-anchor="start" x="510" y="-237.8" font-family="arial" font-size="14.00">     1:WHGN    </text>
|
||||
<text text-anchor="start" x="606.5" y="-237.8" font-family="arial" font-size="14.00">X2:3:DA+</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-230 442,-232 670,-232 670,-230 442,-230"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="442,-228 442,-230 670,-230 670,-228 442,-228"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="442,-226 442,-228 670,-228 670,-226 442,-226"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="442,-224 442,-226 670,-226 670,-224 442,-224"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-222 442,-224 670,-224 670,-222 442,-222"/>
|
||||
<text text-anchor="start" x="446.5" y="-208.8" font-family="arial" font-size="14.00">X1:2:DA-</text>
|
||||
<text text-anchor="start" x="522" y="-208.8" font-family="arial" font-size="14.00">     2:GN    </text>
|
||||
<text text-anchor="start" x="608.5" y="-208.8" font-family="arial" font-size="14.00">X2:6:DA-</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-201 442,-203 670,-203 670,-201 442,-201"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="442,-199 442,-201 670,-201 670,-199 442,-199"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="442,-197 442,-199 670,-199 670,-197 442,-197"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="442,-195 442,-197 670,-197 670,-195 442,-195"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-193 442,-195 670,-195 670,-193 442,-193"/>
|
||||
<text text-anchor="start" x="444.5" y="-179.8" font-family="arial" font-size="14.00">X1:3:DB+</text>
|
||||
<text text-anchor="start" x="510" y="-179.8" font-family="arial" font-size="14.00">     3:WHOG    </text>
|
||||
<text text-anchor="start" x="606.5" y="-179.8" font-family="arial" font-size="14.00">X2:1:DB+</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-172 442,-174 670,-174 670,-172 442,-172"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="442,-170 442,-172 670,-172 670,-170 442,-170"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="442,-168 442,-170 670,-170 670,-168 442,-168"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="442,-166 442,-168 670,-168 670,-166 442,-166"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-164 442,-166 670,-166 670,-164 442,-164"/>
|
||||
<text text-anchor="start" x="444" y="-150.8" font-family="arial" font-size="14.00">X1:4:DC+</text>
|
||||
<text text-anchor="start" x="522.5" y="-150.8" font-family="arial" font-size="14.00">     4:BU    </text>
|
||||
<text text-anchor="start" x="606" y="-150.8" font-family="arial" font-size="14.00">X2:7:DC+</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-143 442,-145 670,-145 670,-143 442,-143"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="442,-141 442,-143 670,-143 670,-141 442,-141"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="442,-139 442,-141 670,-141 670,-139 442,-139"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="442,-137 442,-139 670,-139 670,-137 442,-137"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-135 442,-137 670,-137 670,-135 442,-135"/>
|
||||
<text text-anchor="start" x="446" y="-121.8" font-family="arial" font-size="14.00">X1:5:DC-</text>
|
||||
<text text-anchor="start" x="511" y="-121.8" font-family="arial" font-size="14.00">     5:WHBU    </text>
|
||||
<text text-anchor="start" x="608" y="-121.8" font-family="arial" font-size="14.00">X2:8:DC-</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-114 442,-116 670,-116 670,-114 442,-114"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="442,-112 442,-114 670,-114 670,-112 442,-112"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="442,-110 442,-112 670,-112 670,-110 442,-110"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="442,-108 442,-110 670,-110 670,-108 442,-108"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-106 442,-108 670,-108 670,-106 442,-106"/>
|
||||
<text text-anchor="start" x="446.5" y="-92.8" font-family="arial" font-size="14.00">X1:6:DB-</text>
|
||||
<text text-anchor="start" x="521.5" y="-92.8" font-family="arial" font-size="14.00">     6:OG    </text>
|
||||
<text text-anchor="start" x="608.5" y="-92.8" font-family="arial" font-size="14.00">X2:2:DB-</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-85 442,-87 670,-87 670,-85 442,-85"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="442,-83 442,-85 670,-85 670,-83 442,-83"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="442,-81 442,-83 670,-83 670,-81 442,-81"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="442,-79 442,-81 670,-81 670,-79 442,-79"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-77 442,-79 670,-79 670,-77 442,-77"/>
|
||||
<text text-anchor="start" x="444" y="-63.8" font-family="arial" font-size="14.00">X1:7:DD+</text>
|
||||
<text text-anchor="start" x="511" y="-63.8" font-family="arial" font-size="14.00">     7:WHBN    </text>
|
||||
<text text-anchor="start" x="606" y="-63.8" font-family="arial" font-size="14.00">X2:4:DD+</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-56 442,-58 670,-58 670,-56 442,-56"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="442,-54 442,-56 670,-56 670,-54 442,-54"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="442,-52 442,-54 670,-54 670,-52 442,-52"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="442,-50 442,-52 670,-52 670,-50 442,-50"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-48 442,-50 670,-50 670,-48 442,-48"/>
|
||||
<text text-anchor="start" x="446" y="-34.8" font-family="arial" font-size="14.00">X1:8:DD-</text>
|
||||
<text text-anchor="start" x="522.5" y="-34.8" font-family="arial" font-size="14.00">     8:BN    </text>
|
||||
<text text-anchor="start" x="608" y="-34.8" font-family="arial" font-size="14.00">X2:5:DD-</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-27 442,-29 670,-29 670,-27 442,-27"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="442,-25 442,-27 670,-27 670,-25 442,-25"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="442,-23 442,-25 670,-25 670,-23 442,-23"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="442,-21 442,-23 670,-23 670,-21 442,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-19 442,-21 670,-21 670,-19 442,-19"/>
|
||||
<text text-anchor="start" x="473" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="661.5,-329 445.5,-329 445.5,0 661.5,0 661.5,-329"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,0 445.5,-329 661.5,-329 661.5,0 445.5,0"/>
|
||||
<polygon fill="none" stroke="black" points="445.5,-304.5 445.5,-329 661.5,-329 661.5,-304.5 445.5,-304.5"/>
|
||||
<text text-anchor="start" x="542.25" y="-311.7" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="445.5,-280 445.5,-304.5 510.19,-304.5 510.19,-280 445.5,-280"/>
|
||||
<text text-anchor="start" x="454.97" y="-287.2" font-family="arial" font-size="14.00">CAT5e</text>
|
||||
<polygon fill="none" stroke="black" points="510.19,-280 510.19,-304.5 544.12,-304.5 544.12,-280 510.19,-280"/>
|
||||
<text text-anchor="start" x="519.66" y="-287.2" font-family="arial" font-size="14.00">8x</text>
|
||||
<polygon fill="none" stroke="black" points="544.12,-280 544.12,-304.5 618.56,-304.5 618.56,-280 544.12,-280"/>
|
||||
<text text-anchor="start" x="553.59" y="-287.2" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="618.56,-280 618.56,-304.5 661.5,-304.5 661.5,-280 618.56,-280"/>
|
||||
<text text-anchor="start" x="628.03" y="-287.2" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="478.62" y="-264.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="447.5" y="-244.7" font-family="arial" font-size="14.00"> X1:1:DA+</text>
|
||||
<text text-anchor="start" x="517.12" y="-244.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="525" y="-244.7" font-family="arial" font-size="14.00">1:WHGN</text>
|
||||
<text text-anchor="start" x="586.12" y="-244.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="593.5" y="-244.7" font-family="arial" font-size="14.00">X2:3:DA+ </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-238 445.5,-240 661.5,-240 661.5,-238 445.5,-238"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-236 445.5,-238 661.5,-238 661.5,-236 445.5,-236"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-234 445.5,-236 661.5,-236 661.5,-234 445.5,-234"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-232 445.5,-234 661.5,-234 661.5,-232 445.5,-232"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-230 445.5,-232 661.5,-232 661.5,-230 445.5,-230"/>
|
||||
<text text-anchor="start" x="447.5" y="-214.7" font-family="arial" font-size="14.00"> X1:2:DA-</text>
|
||||
<text text-anchor="start" x="517.12" y="-214.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="537" y="-214.7" font-family="arial" font-size="14.00">2:GN</text>
|
||||
<text text-anchor="start" x="586.12" y="-214.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="597.25" y="-214.7" font-family="arial" font-size="14.00">X2:6:DA- </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-208 445.5,-210 661.5,-210 661.5,-208 445.5,-208"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-206 445.5,-208 661.5,-208 661.5,-206 445.5,-206"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-204 445.5,-206 661.5,-206 661.5,-204 445.5,-204"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-202 445.5,-204 661.5,-204 661.5,-202 445.5,-202"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-200 445.5,-202 661.5,-202 661.5,-200 445.5,-200"/>
|
||||
<text text-anchor="start" x="447.5" y="-184.7" font-family="arial" font-size="14.00"> X1:3:DB+</text>
|
||||
<text text-anchor="start" x="517.12" y="-184.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="524.25" y="-184.7" font-family="arial" font-size="14.00">3:WHOG</text>
|
||||
<text text-anchor="start" x="586.12" y="-184.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="593.5" y="-184.7" font-family="arial" font-size="14.00">X2:1:DB+ </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-178 445.5,-180 661.5,-180 661.5,-178 445.5,-178"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-176 445.5,-178 661.5,-178 661.5,-176 445.5,-176"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-174 445.5,-176 661.5,-176 661.5,-174 445.5,-174"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-172 445.5,-174 661.5,-174 661.5,-172 445.5,-172"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-170 445.5,-172 661.5,-172 661.5,-170 445.5,-170"/>
|
||||
<text text-anchor="start" x="447.12" y="-154.7" font-family="arial" font-size="14.00"> X1:4:DC+</text>
|
||||
<text text-anchor="start" x="517.12" y="-154.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="537.75" y="-154.7" font-family="arial" font-size="14.00">4:BU</text>
|
||||
<text text-anchor="start" x="586.12" y="-154.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="593.12" y="-154.7" font-family="arial" font-size="14.00">X2:7:DC+ </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-148 445.5,-150 661.5,-150 661.5,-148 445.5,-148"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-146 445.5,-148 661.5,-148 661.5,-146 445.5,-146"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-144 445.5,-146 661.5,-146 661.5,-144 445.5,-144"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-142 445.5,-144 661.5,-144 661.5,-142 445.5,-142"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-140 445.5,-142 661.5,-142 661.5,-140 445.5,-140"/>
|
||||
<text text-anchor="start" x="447.5" y="-124.7" font-family="arial" font-size="14.00"> X1:5:DC-</text>
|
||||
<text text-anchor="start" x="517.12" y="-124.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="525.75" y="-124.7" font-family="arial" font-size="14.00">5:WHBU</text>
|
||||
<text text-anchor="start" x="586.12" y="-124.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="596.5" y="-124.7" font-family="arial" font-size="14.00">X2:8:DC- </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-118 445.5,-120 661.5,-120 661.5,-118 445.5,-118"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-116 445.5,-118 661.5,-118 661.5,-116 445.5,-116"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-114 445.5,-116 661.5,-116 661.5,-114 445.5,-114"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-112 445.5,-114 661.5,-114 661.5,-112 445.5,-112"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-110 445.5,-112 661.5,-112 661.5,-110 445.5,-110"/>
|
||||
<text text-anchor="start" x="447.5" y="-94.7" font-family="arial" font-size="14.00"> X1:6:DB-</text>
|
||||
<text text-anchor="start" x="517.12" y="-94.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="536.25" y="-94.7" font-family="arial" font-size="14.00">6:OG</text>
|
||||
<text text-anchor="start" x="586.12" y="-94.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="597.25" y="-94.7" font-family="arial" font-size="14.00">X2:2:DB- </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-88 445.5,-90 661.5,-90 661.5,-88 445.5,-88"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-86 445.5,-88 661.5,-88 661.5,-86 445.5,-86"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-84 445.5,-86 661.5,-86 661.5,-84 445.5,-84"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-82 445.5,-84 661.5,-84 661.5,-82 445.5,-82"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-80 445.5,-82 661.5,-82 661.5,-80 445.5,-80"/>
|
||||
<text text-anchor="start" x="447.12" y="-64.7" font-family="arial" font-size="14.00"> X1:7:DD+</text>
|
||||
<text text-anchor="start" x="517.12" y="-64.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="525.75" y="-64.7" font-family="arial" font-size="14.00">7:WHBN</text>
|
||||
<text text-anchor="start" x="586.12" y="-64.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="593.12" y="-64.7" font-family="arial" font-size="14.00">X2:4:DD+ </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-58 445.5,-60 661.5,-60 661.5,-58 445.5,-58"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-56 445.5,-58 661.5,-58 661.5,-56 445.5,-56"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-54 445.5,-56 661.5,-56 661.5,-54 445.5,-54"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-52 445.5,-54 661.5,-54 661.5,-52 445.5,-52"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-50 445.5,-52 661.5,-52 661.5,-50 445.5,-50"/>
|
||||
<text text-anchor="start" x="447.5" y="-34.7" font-family="arial" font-size="14.00"> X1:8:DD-</text>
|
||||
<text text-anchor="start" x="517.12" y="-34.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="537.75" y="-34.7" font-family="arial" font-size="14.00">8:BN</text>
|
||||
<text text-anchor="start" x="586.12" y="-34.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="596.5" y="-34.7" font-family="arial" font-size="14.00">X2:5:DD- </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-28 445.5,-30 661.5,-30 661.5,-28 445.5,-28"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-26 445.5,-28 661.5,-28 661.5,-26 445.5,-26"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-24 445.5,-26 661.5,-26 661.5,-24 445.5,-24"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-22 445.5,-24 661.5,-24 661.5,-22 445.5,-22"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-20 445.5,-22 661.5,-22 661.5,-20 445.5,-20"/>
|
||||
<text text-anchor="start" x="478.62" y="-4.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-203C365.83,-204.62 380.6,-224.62 442,-223"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M298,-205C364.22,-205.81 378.99,-225.81 442,-225"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M298,-207C362.61,-207 377.39,-227 442,-227"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M298,-209C361.01,-208.19 375.78,-228.19 442,-229"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-211C359.4,-209.38 374.17,-229.38 442,-231"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-210C369.46,-211.71 384.1,-232.71 445.5,-231"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-212C367.82,-212.86 382.46,-233.86 445.5,-233"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M301.5,-214C366.18,-214 380.82,-235 445.5,-235"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-216C364.54,-215.14 379.18,-236.14 445.5,-237"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-218C362.9,-216.29 377.54,-237.29 445.5,-239"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-186C368.65,-187.14 383.95,-202.14 445.5,-201"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M301.5,-188C367.25,-188.57 382.55,-203.57 445.5,-203"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M301.5,-190C365.85,-190 381.15,-205 445.5,-205"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M301.5,-192C364.45,-191.43 379.75,-206.43 445.5,-207"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-194C363.05,-192.86 378.35,-207.86 445.5,-209"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-180C364.99,-181.04 380.39,-195.04 442,-194"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M298,-182C363.65,-182.52 379.04,-196.52 442,-196"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M298,-184C362.3,-184 377.7,-198 442,-198"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M298,-186C360.96,-185.48 376.35,-199.48 442,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-188C359.61,-186.96 375.01,-200.96 442,-202"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-162C367.6,-162.53 383.36,-171.53 445.5,-171"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-164C366.61,-164.26 382.37,-173.26 445.5,-173"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M301.5,-166C365.62,-166 381.38,-175 445.5,-175"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-168C364.63,-167.74 380.39,-176.74 445.5,-177"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-170C363.64,-169.47 379.4,-178.47 445.5,-179"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-138C366.25,-138.07 382.23,-141.07 445.5,-141"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M301.5,-140C365.88,-140.03 381.86,-143.03 445.5,-143"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M301.5,-142C365.51,-142 381.49,-145 445.5,-145"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M301.5,-144C365.14,-143.97 381.12,-146.97 445.5,-147"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-146C364.77,-145.93 380.75,-148.93 445.5,-149"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-157C363.91,-157.43 379.71,-165.43 442,-165"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M298,-159C363,-159.22 378.8,-167.22 442,-167"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M298,-161C362.1,-161 377.9,-169 442,-169"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M298,-163C361.2,-162.78 377,-170.78 442,-171"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-165C360.29,-164.57 376.09,-172.57 442,-173"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-114C364.77,-114.07 380.75,-111.07 445.5,-111"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-116C365.14,-116.03 381.12,-113.03 445.5,-113"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M301.5,-118C365.51,-118 381.49,-115 445.5,-115"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-120C365.88,-119.97 381.86,-116.97 445.5,-117"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-122C366.25,-121.93 382.23,-118.93 445.5,-119"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-90C363.64,-90.53 379.4,-81.53 445.5,-81"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M301.5,-92C364.63,-92.26 380.39,-83.26 445.5,-83"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M301.5,-94C365.62,-94 381.38,-85 445.5,-85"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M301.5,-96C366.61,-95.74 382.37,-86.74 445.5,-87"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-98C367.6,-97.47 383.36,-88.47 445.5,-89"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-133C362.75,-133.07 378.72,-136.07 442,-136"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M298,-135C362.38,-135.03 378.36,-138.03 442,-138"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M298,-137C362.01,-137 377.99,-140 442,-140"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M298,-139C361.64,-138.97 377.62,-141.97 442,-142"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-141C361.28,-140.93 377.25,-143.93 442,-144"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-66C363.05,-67.14 378.35,-52.14 445.5,-51"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-68C364.45,-68.57 379.75,-53.57 445.5,-53"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M301.5,-70C365.85,-70 381.15,-55 445.5,-55"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-72C367.25,-71.43 382.55,-56.43 445.5,-57"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-74C368.65,-72.86 383.95,-57.86 445.5,-59"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-42C362.9,-43.71 377.54,-22.71 445.5,-21"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M301.5,-44C364.54,-44.86 379.18,-23.86 445.5,-23"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M301.5,-46C366.18,-46 380.82,-25 445.5,-25"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M301.5,-48C367.82,-47.14 382.46,-26.14 445.5,-27"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-50C369.46,-48.29 384.1,-27.29 445.5,-29"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-110C361.28,-110.07 377.25,-107.07 442,-107"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M298,-112C361.64,-112.03 377.62,-109.03 442,-109"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M298,-114C362.01,-114 377.99,-111 442,-111"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M298,-116C362.38,-115.97 378.36,-112.97 442,-113"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-118C362.75,-117.93 378.72,-114.93 442,-115"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-239C589.5,-239 517.5,-239 445.5,-239"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-237C589.5,-237 517.5,-237 445.5,-237"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-235C589.5,-235 517.5,-235 445.5,-235"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-233C589.5,-233 517.5,-233 445.5,-233"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-231C589.5,-231 517.5,-231 445.5,-231"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-209C589.5,-209 517.5,-209 445.5,-209"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-207C589.5,-207 517.5,-207 445.5,-207"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-205C589.5,-205 517.5,-205 445.5,-205"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-203C589.5,-203 517.5,-203 445.5,-203"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-201C589.5,-201 517.5,-201 445.5,-201"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-87C360.14,-87.53 375.89,-78.53 442,-78"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M298,-89C361.13,-89.26 376.88,-80.26 442,-80"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M298,-91C362.12,-91 377.88,-82 442,-82"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M298,-93C363.12,-92.74 378.87,-83.74 442,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-95C364.11,-94.47 379.86,-85.47 442,-86"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-179C589.5,-179 517.5,-179 445.5,-179"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-177C589.5,-177 517.5,-177 445.5,-177"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-175C589.5,-175 517.5,-175 445.5,-175"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-173C589.5,-173 517.5,-173 445.5,-173"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-171C589.5,-171 517.5,-171 445.5,-171"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-149C589.5,-149 517.5,-149 445.5,-149"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-147C589.5,-147 517.5,-147 445.5,-147"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-145C589.5,-145 517.5,-145 445.5,-145"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-143C589.5,-143 517.5,-143 445.5,-143"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-141C589.5,-141 517.5,-141 445.5,-141"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-64C359.55,-65.14 374.85,-50.14 442,-49"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M298,-66C360.95,-66.57 376.25,-51.57 442,-51"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M298,-68C362.35,-68 377.65,-53 442,-53"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M298,-70C363.75,-69.43 379.05,-54.43 442,-55"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-72C365.15,-70.86 380.45,-55.86 442,-57"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-119C589.5,-119 517.5,-119 445.5,-119"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-117C589.5,-117 517.5,-117 445.5,-117"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-115C589.5,-115 517.5,-115 445.5,-115"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-113C589.5,-113 517.5,-113 445.5,-113"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-111C589.5,-111 517.5,-111 445.5,-111"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-89C589.5,-89 517.5,-89 445.5,-89"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-87C589.5,-87 517.5,-87 445.5,-87"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-85C589.5,-85 517.5,-85 445.5,-85"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-83C589.5,-83 517.5,-83 445.5,-83"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-81C589.5,-81 517.5,-81 445.5,-81"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-41C359.4,-42.71 374.04,-21.71 442,-20"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M298,-43C361.04,-43.86 375.68,-22.86 442,-22"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M298,-45C362.68,-45 377.32,-24 442,-24"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M298,-47C364.32,-46.14 378.96,-25.14 442,-26"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-49C365.96,-47.29 380.6,-26.29 442,-28"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-59C589.5,-59 517.5,-59 445.5,-59"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-57C589.5,-57 517.5,-57 445.5,-57"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-55C589.5,-55 517.5,-55 445.5,-55"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-53C589.5,-53 517.5,-53 445.5,-53"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-51C589.5,-51 517.5,-51 445.5,-51"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-29C589.5,-29 517.5,-29 445.5,-29"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-27C589.5,-27 517.5,-27 445.5,-27"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-25C589.5,-25 517.5,-25 445.5,-25"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-23C589.5,-23 517.5,-23 445.5,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-21C589.5,-21 517.5,-21 445.5,-21"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="1112,-278 814,-278 814,-48 1112,-48 1112,-278"/>
|
||||
<polygon fill="none" stroke="black" points="814,-255 814,-278 1112,-278 1112,-255 814,-255"/>
|
||||
<text text-anchor="start" x="954" y="-262.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="814,-232 814,-255 1033,-255 1033,-232 814,-232"/>
|
||||
<text text-anchor="start" x="818" y="-239.8" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="1033,-232 1033,-255 1072,-255 1072,-232 1033,-232"/>
|
||||
<text text-anchor="start" x="1037" y="-239.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="1072,-232 1072,-255 1112,-255 1112,-232 1072,-232"/>
|
||||
<text text-anchor="start" x="1076" y="-239.8" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="814,-209 814,-232 953,-232 953,-209 814,-209"/>
|
||||
<text text-anchor="start" x="879.5" y="-216.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="953,-209 953,-232 1112,-232 1112,-209 953,-209"/>
|
||||
<text text-anchor="start" x="1018.5" y="-216.8" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="814,-186 814,-209 953,-209 953,-186 814,-186"/>
|
||||
<text text-anchor="start" x="879.5" y="-193.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="953,-186 953,-209 1112,-209 1112,-186 953,-186"/>
|
||||
<text text-anchor="start" x="1020" y="-193.8" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="814,-163 814,-186 953,-186 953,-163 814,-163"/>
|
||||
<text text-anchor="start" x="879.5" y="-170.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="953,-163 953,-186 1112,-186 1112,-163 953,-163"/>
|
||||
<text text-anchor="start" x="1018.5" y="-170.8" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="814,-140 814,-163 953,-163 953,-140 814,-140"/>
|
||||
<text text-anchor="start" x="879.5" y="-147.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="953,-140 953,-163 1112,-163 1112,-140 953,-140"/>
|
||||
<text text-anchor="start" x="1018" y="-147.8" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="814,-117 814,-140 953,-140 953,-117 814,-117"/>
|
||||
<text text-anchor="start" x="879.5" y="-124.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="953,-117 953,-140 1112,-140 1112,-117 953,-117"/>
|
||||
<text text-anchor="start" x="1020" y="-124.8" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="814,-94 814,-117 953,-117 953,-94 814,-94"/>
|
||||
<text text-anchor="start" x="879.5" y="-101.8" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="953,-94 953,-117 1112,-117 1112,-94 953,-94"/>
|
||||
<text text-anchor="start" x="1020" y="-101.8" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="814,-71 814,-94 953,-94 953,-71 814,-71"/>
|
||||
<text text-anchor="start" x="879.5" y="-78.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="953,-71 953,-94 1112,-94 1112,-71 953,-71"/>
|
||||
<text text-anchor="start" x="1018" y="-78.8" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="814,-48 814,-71 953,-71 953,-48 814,-48"/>
|
||||
<text text-anchor="start" x="879.5" y="-55.8" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="953,-48 953,-71 1112,-71 1112,-48 953,-48"/>
|
||||
<text text-anchor="start" x="1020" y="-55.8" font-family="arial" font-size="14.00">DC-</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="1107,-290 805.5,-290 805.5,-49 1107,-49 1107,-290"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="805.5,-49 805.5,-290 1107,-290 1107,-49 805.5,-49"/>
|
||||
<polygon fill="none" stroke="black" points="805.5,-265.5 805.5,-290 1107,-290 1107,-265.5 805.5,-265.5"/>
|
||||
<text text-anchor="start" x="947.25" y="-272.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-241 805.5,-265.5 1028.75,-265.5 1028.75,-241 805.5,-241"/>
|
||||
<text text-anchor="start" x="809.5" y="-248.2" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="1028.75,-241 1028.75,-265.5 1067.5,-265.5 1067.5,-241 1028.75,-241"/>
|
||||
<text text-anchor="start" x="1032.75" y="-248.2" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="1067.5,-241 1067.5,-265.5 1107,-265.5 1107,-241 1067.5,-241"/>
|
||||
<text text-anchor="start" x="1071.5" y="-248.2" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-217 805.5,-241 945.75,-241 945.75,-217 805.5,-217"/>
|
||||
<text text-anchor="start" x="871.5" y="-223.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-217 945.75,-241 1107,-241 1107,-217 945.75,-217"/>
|
||||
<text text-anchor="start" x="1012.12" y="-223.7" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-193 805.5,-217 945.75,-217 945.75,-193 805.5,-193"/>
|
||||
<text text-anchor="start" x="871.5" y="-199.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-193 945.75,-217 1107,-217 1107,-193 945.75,-193"/>
|
||||
<text text-anchor="start" x="1014" y="-199.7" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-169 805.5,-193 945.75,-193 945.75,-169 805.5,-169"/>
|
||||
<text text-anchor="start" x="871.5" y="-175.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-169 945.75,-193 1107,-193 1107,-169 945.75,-169"/>
|
||||
<text text-anchor="start" x="1012.12" y="-175.7" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-145 805.5,-169 945.75,-169 945.75,-145 805.5,-145"/>
|
||||
<text text-anchor="start" x="871.5" y="-151.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-145 945.75,-169 1107,-169 1107,-145 945.75,-145"/>
|
||||
<text text-anchor="start" x="1011.75" y="-151.7" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-121 805.5,-145 945.75,-145 945.75,-121 805.5,-121"/>
|
||||
<text text-anchor="start" x="871.5" y="-127.7" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-121 945.75,-145 1107,-145 1107,-121 945.75,-121"/>
|
||||
<text text-anchor="start" x="1013.62" y="-127.7" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-97 805.5,-121 945.75,-121 945.75,-97 805.5,-97"/>
|
||||
<text text-anchor="start" x="871.5" y="-103.7" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-97 945.75,-121 1107,-121 1107,-97 945.75,-97"/>
|
||||
<text text-anchor="start" x="1014" y="-103.7" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-73 805.5,-97 945.75,-97 945.75,-73 805.5,-73"/>
|
||||
<text text-anchor="start" x="871.5" y="-79.7" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-73 945.75,-97 1107,-97 1107,-73 945.75,-73"/>
|
||||
<text text-anchor="start" x="1011.75" y="-79.7" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-49 805.5,-73 945.75,-73 945.75,-49 805.5,-49"/>
|
||||
<text text-anchor="start" x="871.5" y="-55.7" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-49 945.75,-73 1107,-73 1107,-49 945.75,-49"/>
|
||||
<text text-anchor="start" x="1013.62" y="-55.7" font-family="arial" font-size="14.00">DC-</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<g id="edge17" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-223C734.09,-226.4 742,-174.4 814,-171"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M670,-225C736.07,-226.7 743.98,-174.7 814,-173"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M670,-227C738.05,-227 745.95,-175 814,-175"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M670,-229C740.02,-227.3 747.93,-175.3 814,-177"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-231C742,-227.6 749.91,-175.6 814,-179"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-231C725.89,-234.46 733.19,-180.46 805.5,-177"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-233C727.87,-234.73 735.17,-180.73 805.5,-179"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-235C729.85,-235 737.15,-181 805.5,-181"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-237C731.83,-235.27 739.13,-181.27 805.5,-183"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-239C733.81,-235.54 741.11,-181.54 805.5,-185"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<g id="edge18" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-194C742.2,-198.36 733.83,-105.36 814,-101"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M670,-196C744.19,-198.18 735.82,-105.18 814,-103"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M670,-198C746.19,-198 737.81,-105 814,-105"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M670,-200C748.18,-197.82 739.81,-104.82 814,-107"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-202C750.17,-197.64 741.8,-104.64 814,-109"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-201C734.44,-205.41 724.6,-109.41 805.5,-105"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-203C736.43,-205.2 726.59,-109.2 805.5,-107"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-205C738.42,-205 728.58,-109 805.5,-109"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-207C740.41,-204.8 730.57,-108.8 805.5,-111"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-209C742.4,-204.59 732.56,-108.59 805.5,-113"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<g id="edge19" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-165C742,-168.4 749.91,-220.4 814,-217"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M670,-167C740.02,-168.7 747.93,-220.7 814,-219"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M670,-169C738.05,-169 745.95,-221 814,-221"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M670,-171C736.07,-169.3 743.98,-221.3 814,-223"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-173C734.09,-169.6 742,-221.6 814,-225"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-171C733.81,-174.46 741.11,-228.46 805.5,-225"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-173C731.83,-174.73 739.13,-228.73 805.5,-227"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-175C729.85,-175 737.15,-229 805.5,-229"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-177C727.87,-175.27 735.17,-229.27 805.5,-231"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-179C725.89,-175.54 733.19,-229.54 805.5,-233"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<g id="edge20" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-136C735.02,-139.59 741.02,-81.59 814,-78"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M670,-138C737.01,-139.79 743.01,-81.79 814,-80"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M670,-140C739,-140 745,-82 814,-82"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M670,-142C740.99,-140.21 746.99,-82.21 814,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-144C742.98,-140.41 748.98,-82.41 814,-86"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-141C726.85,-144.65 732.19,-84.65 805.5,-81"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-143C728.84,-144.82 734.18,-84.82 805.5,-83"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-145C730.83,-145 736.17,-85 805.5,-85"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-147C732.82,-145.18 738.16,-85.18 805.5,-87"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-149C734.81,-145.35 740.15,-85.35 805.5,-89"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge10" class="edge">
|
||||
<g id="edge21" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-107C734.09,-110.4 742,-58.4 814,-55"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M670,-109C736.07,-110.7 743.98,-58.7 814,-57"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M670,-111C738.05,-111 745.95,-59 814,-59"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M670,-113C740.02,-111.3 747.93,-59.3 814,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-115C742,-111.6 749.91,-59.6 814,-63"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-111C725.89,-114.46 733.19,-60.46 805.5,-57"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-113C727.87,-114.73 735.17,-60.73 805.5,-59"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-115C729.85,-115 737.15,-61 805.5,-61"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-117C731.83,-115.27 739.13,-61.27 805.5,-63"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-119C733.81,-115.54 741.11,-61.54 805.5,-65"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge12" class="edge">
|
||||
<g id="edge22" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-78C756.12,-82.69 735.76,-198.69 814,-194"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M670,-80C754.15,-82.35 733.79,-198.35 814,-196"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M670,-82C752.18,-82 731.82,-198 814,-198"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M670,-84C750.21,-81.65 729.85,-197.65 814,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-86C748.24,-81.31 727.88,-197.31 814,-202"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-81C748.74,-85.74 726.12,-205.74 805.5,-201"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-83C746.78,-85.37 724.16,-205.37 805.5,-203"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-85C744.81,-85 722.19,-205 805.5,-205"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-87C742.84,-84.63 720.22,-204.63 805.5,-207"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-89C740.88,-84.26 718.26,-204.26 805.5,-209"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge14" class="edge">
|
||||
<g id="edge23" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-49C751.39,-53.44 740.56,-151.44 814,-147"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M670,-51C749.4,-53.22 738.57,-151.22 814,-149"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M670,-53C747.42,-53 736.58,-151 814,-151"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M670,-55C745.43,-52.78 734.6,-150.78 814,-153"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-57C743.44,-52.56 732.61,-150.56 814,-155"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-51C743.9,-55.5 731.04,-157.5 805.5,-153"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-53C741.91,-55.25 729.05,-157.25 805.5,-155"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-55C739.93,-55 727.07,-157 805.5,-157"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-57C737.95,-54.75 725.09,-156.75 805.5,-159"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-59C735.96,-54.5 723.1,-156.5 805.5,-161"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge16" class="edge">
|
||||
<g id="edge24" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-20C752.91,-24.53 739.02,-128.53 814,-124"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M670,-22C750.93,-24.26 737.04,-128.26 814,-126"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M670,-24C748.95,-24 735.05,-128 814,-128"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M670,-26C746.96,-23.74 733.07,-127.74 814,-130"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-28C744.98,-23.47 731.09,-127.47 814,-132"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-21C745.46,-25.59 729.46,-133.59 805.5,-129"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-23C743.48,-25.29 727.48,-133.29 805.5,-131"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-25C741.5,-25 725.5,-133 805.5,-133"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-27C739.52,-24.71 723.52,-132.71 805.5,-135"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-29C737.54,-24.41 721.54,-132.41 805.5,-137"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
@ -366,26 +457,26 @@
|
||||
<div id="bom">
|
||||
<table class="bom">
|
||||
<tr>
|
||||
<th class="bom_col_id">Id</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_#">#</th>
|
||||
<th class="bom_col_qty">Qty</th>
|
||||
<th class="bom_col_unit">Unit</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_designators">Designators</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">1</td>
|
||||
<td class="bom_col_description">Cable, CAT5e, 8 x 24 AWG</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">2</td>
|
||||
<td class="bom_col_description">Connector, Stewart Connector SS-37000-002, male, 8 pins</td>
|
||||
<td class="bom_col_#">1</td>
|
||||
<td class="bom_col_qty">2</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, Stewart Connector SS-37000-002, male, 8 pins</td>
|
||||
<td class="bom_col_designators">X1, X2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_#">2</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Cable, CAT5e, 8 x 24 AWG</td>
|
||||
<td class="bom_col_designators">W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
BIN
examples/ex10.png
generated
|
Before Width: | Height: | Size: 129 KiB After Width: | Height: | Size: 124 KiB |
613
examples/ex10.svg
generated
@ -1,327 +1,418 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1120pt" height="324pt"
|
||||
viewBox="0.00 0.00 1120.00 324.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 320)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-320 1116,-320 1116,4 -4,4"/>
|
||||
<svg width="1115pt" height="337pt"
|
||||
viewBox="0.00 0.00 1115.00 337.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 333)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-333 1111,-333 1111,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="298,-264 0,-264 0,-34 298,-34 298,-264"/>
|
||||
<polygon fill="none" stroke="black" points="0,-241 0,-264 298,-264 298,-241 0,-241"/>
|
||||
<text text-anchor="start" x="140" y="-248.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-218 0,-241 219,-241 219,-218 0,-218"/>
|
||||
<text text-anchor="start" x="4" y="-225.8" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="219,-218 219,-241 258,-241 258,-218 219,-218"/>
|
||||
<text text-anchor="start" x="223" y="-225.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="258,-218 258,-241 298,-241 298,-218 258,-218"/>
|
||||
<text text-anchor="start" x="262" y="-225.8" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-195 0,-218 160,-218 160,-195 0,-195"/>
|
||||
<text text-anchor="start" x="66" y="-202.8" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="160,-195 160,-218 298,-218 298,-195 160,-195"/>
|
||||
<text text-anchor="start" x="225" y="-202.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-172 0,-195 160,-195 160,-172 0,-172"/>
|
||||
<text text-anchor="start" x="67.5" y="-179.8" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="160,-172 160,-195 298,-195 298,-172 160,-172"/>
|
||||
<text text-anchor="start" x="225" y="-179.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-149 0,-172 160,-172 160,-149 0,-149"/>
|
||||
<text text-anchor="start" x="66" y="-156.8" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="160,-149 160,-172 298,-172 298,-149 160,-149"/>
|
||||
<text text-anchor="start" x="225" y="-156.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-126 0,-149 160,-149 160,-126 0,-126"/>
|
||||
<text text-anchor="start" x="65.5" y="-133.8" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="160,-126 160,-149 298,-149 298,-126 160,-126"/>
|
||||
<text text-anchor="start" x="225" y="-133.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0,-103 0,-126 160,-126 160,-103 0,-103"/>
|
||||
<text text-anchor="start" x="67.5" y="-110.8" font-family="arial" font-size="14.00">DC-</text>
|
||||
<polygon fill="none" stroke="black" points="160,-103 160,-126 298,-126 298,-103 160,-103"/>
|
||||
<text text-anchor="start" x="225" y="-110.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-80 0,-103 160,-103 160,-80 0,-80"/>
|
||||
<text text-anchor="start" x="67.5" y="-87.8" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="160,-80 160,-103 298,-103 298,-80 160,-80"/>
|
||||
<text text-anchor="start" x="225" y="-87.8" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0,-57 0,-80 160,-80 160,-57 0,-57"/>
|
||||
<text text-anchor="start" x="65.5" y="-64.8" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="160,-57 160,-80 298,-80 298,-57 160,-57"/>
|
||||
<text text-anchor="start" x="225" y="-64.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0,-34 0,-57 160,-57 160,-34 0,-34"/>
|
||||
<text text-anchor="start" x="67.5" y="-41.8" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="160,-34 160,-57 298,-57 298,-34 160,-34"/>
|
||||
<text text-anchor="start" x="225" y="-41.8" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="301.5,-275 0,-275 0,-34 301.5,-34 301.5,-275"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-34 0,-275 301.5,-275 301.5,-34 0,-34"/>
|
||||
<polygon fill="none" stroke="black" points="0,-250.5 0,-275 301.5,-275 301.5,-250.5 0,-250.5"/>
|
||||
<text text-anchor="start" x="141.75" y="-257.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-226 0,-250.5 223.25,-250.5 223.25,-226 0,-226"/>
|
||||
<text text-anchor="start" x="4" y="-233.2" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="223.25,-226 223.25,-250.5 262,-250.5 262,-226 223.25,-226"/>
|
||||
<text text-anchor="start" x="227.25" y="-233.2" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="262,-226 262,-250.5 301.5,-250.5 301.5,-226 262,-226"/>
|
||||
<text text-anchor="start" x="266" y="-233.2" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-202 0,-226 161.25,-226 161.25,-202 0,-202"/>
|
||||
<text text-anchor="start" x="66.38" y="-208.7" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-202 161.25,-226 301.5,-226 301.5,-202 161.25,-202"/>
|
||||
<text text-anchor="start" x="227.25" y="-208.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-178 0,-202 161.25,-202 161.25,-178 0,-178"/>
|
||||
<text text-anchor="start" x="68.25" y="-184.7" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-178 161.25,-202 301.5,-202 301.5,-178 161.25,-178"/>
|
||||
<text text-anchor="start" x="227.25" y="-184.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-154 0,-178 161.25,-178 161.25,-154 0,-154"/>
|
||||
<text text-anchor="start" x="66.38" y="-160.7" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-154 161.25,-178 301.5,-178 301.5,-154 161.25,-154"/>
|
||||
<text text-anchor="start" x="227.25" y="-160.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-130 0,-154 161.25,-154 161.25,-130 0,-130"/>
|
||||
<text text-anchor="start" x="66" y="-136.7" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-130 161.25,-154 301.5,-154 301.5,-130 161.25,-130"/>
|
||||
<text text-anchor="start" x="227.25" y="-136.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0,-106 0,-130 161.25,-130 161.25,-106 0,-106"/>
|
||||
<text text-anchor="start" x="67.88" y="-112.7" font-family="arial" font-size="14.00">DC-</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-106 161.25,-130 301.5,-130 301.5,-106 161.25,-106"/>
|
||||
<text text-anchor="start" x="227.25" y="-112.7" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-82 0,-106 161.25,-106 161.25,-82 0,-82"/>
|
||||
<text text-anchor="start" x="68.25" y="-88.7" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-82 161.25,-106 301.5,-106 301.5,-82 161.25,-82"/>
|
||||
<text text-anchor="start" x="227.25" y="-88.7" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0,-58 0,-82 161.25,-82 161.25,-58 0,-58"/>
|
||||
<text text-anchor="start" x="66" y="-64.7" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-58 161.25,-82 301.5,-82 301.5,-58 161.25,-58"/>
|
||||
<text text-anchor="start" x="227.25" y="-64.7" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0,-34 0,-58 161.25,-58 161.25,-34 0,-34"/>
|
||||
<text text-anchor="start" x="67.88" y="-40.7" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-34 161.25,-58 301.5,-58 301.5,-34 161.25,-34"/>
|
||||
<text text-anchor="start" x="227.25" y="-40.7" font-family="arial" font-size="14.00">8</text>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="670,-316 442,-316 442,0 670,0 670,-316"/>
|
||||
<polygon fill="none" stroke="black" points="442,-293 442,-316 670,-316 670,-293 442,-293"/>
|
||||
<text text-anchor="start" x="545.5" y="-300.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="442,-270 442,-293 509,-293 509,-270 442,-270"/>
|
||||
<text text-anchor="start" x="454" y="-277.8" font-family="arial" font-size="14.00">CAT5e</text>
|
||||
<polygon fill="none" stroke="black" points="509,-270 509,-293 548,-293 548,-270 509,-270"/>
|
||||
<text text-anchor="start" x="521" y="-277.8" font-family="arial" font-size="14.00">8x</text>
|
||||
<polygon fill="none" stroke="black" points="548,-270 548,-293 623,-293 623,-270 548,-270"/>
|
||||
<text text-anchor="start" x="559.5" y="-277.8" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="623,-270 623,-293 670,-293 670,-270 623,-270"/>
|
||||
<text text-anchor="start" x="634.5" y="-277.8" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="473" y="-256.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="444.5" y="-237.8" font-family="arial" font-size="14.00">X1:1:DA+</text>
|
||||
<text text-anchor="start" x="510" y="-237.8" font-family="arial" font-size="14.00">     1:WHGN    </text>
|
||||
<text text-anchor="start" x="606.5" y="-237.8" font-family="arial" font-size="14.00">X2:3:DA+</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-230 442,-232 670,-232 670,-230 442,-230"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="442,-228 442,-230 670,-230 670,-228 442,-228"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="442,-226 442,-228 670,-228 670,-226 442,-226"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="442,-224 442,-226 670,-226 670,-224 442,-224"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-222 442,-224 670,-224 670,-222 442,-222"/>
|
||||
<text text-anchor="start" x="446.5" y="-208.8" font-family="arial" font-size="14.00">X1:2:DA-</text>
|
||||
<text text-anchor="start" x="522" y="-208.8" font-family="arial" font-size="14.00">     2:GN    </text>
|
||||
<text text-anchor="start" x="608.5" y="-208.8" font-family="arial" font-size="14.00">X2:6:DA-</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-201 442,-203 670,-203 670,-201 442,-201"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="442,-199 442,-201 670,-201 670,-199 442,-199"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="442,-197 442,-199 670,-199 670,-197 442,-197"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="442,-195 442,-197 670,-197 670,-195 442,-195"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-193 442,-195 670,-195 670,-193 442,-193"/>
|
||||
<text text-anchor="start" x="444.5" y="-179.8" font-family="arial" font-size="14.00">X1:3:DB+</text>
|
||||
<text text-anchor="start" x="510" y="-179.8" font-family="arial" font-size="14.00">     3:WHOG    </text>
|
||||
<text text-anchor="start" x="606.5" y="-179.8" font-family="arial" font-size="14.00">X2:1:DB+</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-172 442,-174 670,-174 670,-172 442,-172"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="442,-170 442,-172 670,-172 670,-170 442,-170"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="442,-168 442,-170 670,-170 670,-168 442,-168"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="442,-166 442,-168 670,-168 670,-166 442,-166"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-164 442,-166 670,-166 670,-164 442,-164"/>
|
||||
<text text-anchor="start" x="444" y="-150.8" font-family="arial" font-size="14.00">X1:4:DC+</text>
|
||||
<text text-anchor="start" x="522.5" y="-150.8" font-family="arial" font-size="14.00">     4:BU    </text>
|
||||
<text text-anchor="start" x="606" y="-150.8" font-family="arial" font-size="14.00">X2:7:DC+</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-143 442,-145 670,-145 670,-143 442,-143"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="442,-141 442,-143 670,-143 670,-141 442,-141"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="442,-139 442,-141 670,-141 670,-139 442,-139"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="442,-137 442,-139 670,-139 670,-137 442,-137"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-135 442,-137 670,-137 670,-135 442,-135"/>
|
||||
<text text-anchor="start" x="446" y="-121.8" font-family="arial" font-size="14.00">X1:5:DC-</text>
|
||||
<text text-anchor="start" x="511" y="-121.8" font-family="arial" font-size="14.00">     5:WHBU    </text>
|
||||
<text text-anchor="start" x="608" y="-121.8" font-family="arial" font-size="14.00">X2:8:DC-</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-114 442,-116 670,-116 670,-114 442,-114"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="442,-112 442,-114 670,-114 670,-112 442,-112"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="442,-110 442,-112 670,-112 670,-110 442,-110"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="442,-108 442,-110 670,-110 670,-108 442,-108"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-106 442,-108 670,-108 670,-106 442,-106"/>
|
||||
<text text-anchor="start" x="446.5" y="-92.8" font-family="arial" font-size="14.00">X1:6:DB-</text>
|
||||
<text text-anchor="start" x="521.5" y="-92.8" font-family="arial" font-size="14.00">     6:OG    </text>
|
||||
<text text-anchor="start" x="608.5" y="-92.8" font-family="arial" font-size="14.00">X2:2:DB-</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-85 442,-87 670,-87 670,-85 442,-85"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="442,-83 442,-85 670,-85 670,-83 442,-83"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="442,-81 442,-83 670,-83 670,-81 442,-81"/>
|
||||
<polygon fill="#ff8000" stroke="transparent" points="442,-79 442,-81 670,-81 670,-79 442,-79"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-77 442,-79 670,-79 670,-77 442,-77"/>
|
||||
<text text-anchor="start" x="444" y="-63.8" font-family="arial" font-size="14.00">X1:7:DD+</text>
|
||||
<text text-anchor="start" x="511" y="-63.8" font-family="arial" font-size="14.00">     7:WHBN    </text>
|
||||
<text text-anchor="start" x="606" y="-63.8" font-family="arial" font-size="14.00">X2:4:DD+</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-56 442,-58 670,-58 670,-56 442,-56"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="442,-54 442,-56 670,-56 670,-54 442,-54"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="442,-52 442,-54 670,-54 670,-52 442,-52"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="442,-50 442,-52 670,-52 670,-50 442,-50"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-48 442,-50 670,-50 670,-48 442,-48"/>
|
||||
<text text-anchor="start" x="446" y="-34.8" font-family="arial" font-size="14.00">X1:8:DD-</text>
|
||||
<text text-anchor="start" x="522.5" y="-34.8" font-family="arial" font-size="14.00">     8:BN    </text>
|
||||
<text text-anchor="start" x="608" y="-34.8" font-family="arial" font-size="14.00">X2:5:DD-</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-27 442,-29 670,-29 670,-27 442,-27"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="442,-25 442,-27 670,-27 670,-25 442,-25"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="442,-23 442,-25 670,-25 670,-23 442,-23"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="442,-21 442,-23 670,-23 670,-21 442,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="442,-19 442,-21 670,-21 670,-19 442,-19"/>
|
||||
<text text-anchor="start" x="473" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="661.5,-329 445.5,-329 445.5,0 661.5,0 661.5,-329"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,0 445.5,-329 661.5,-329 661.5,0 445.5,0"/>
|
||||
<polygon fill="none" stroke="black" points="445.5,-304.5 445.5,-329 661.5,-329 661.5,-304.5 445.5,-304.5"/>
|
||||
<text text-anchor="start" x="542.25" y="-311.7" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="445.5,-280 445.5,-304.5 510.19,-304.5 510.19,-280 445.5,-280"/>
|
||||
<text text-anchor="start" x="454.97" y="-287.2" font-family="arial" font-size="14.00">CAT5e</text>
|
||||
<polygon fill="none" stroke="black" points="510.19,-280 510.19,-304.5 544.12,-304.5 544.12,-280 510.19,-280"/>
|
||||
<text text-anchor="start" x="519.66" y="-287.2" font-family="arial" font-size="14.00">8x</text>
|
||||
<polygon fill="none" stroke="black" points="544.12,-280 544.12,-304.5 618.56,-304.5 618.56,-280 544.12,-280"/>
|
||||
<text text-anchor="start" x="553.59" y="-287.2" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="618.56,-280 618.56,-304.5 661.5,-304.5 661.5,-280 618.56,-280"/>
|
||||
<text text-anchor="start" x="628.03" y="-287.2" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="478.62" y="-264.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="447.5" y="-244.7" font-family="arial" font-size="14.00"> X1:1:DA+</text>
|
||||
<text text-anchor="start" x="517.12" y="-244.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="525" y="-244.7" font-family="arial" font-size="14.00">1:WHGN</text>
|
||||
<text text-anchor="start" x="586.12" y="-244.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="593.5" y="-244.7" font-family="arial" font-size="14.00">X2:3:DA+ </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-238 445.5,-240 661.5,-240 661.5,-238 445.5,-238"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-236 445.5,-238 661.5,-238 661.5,-236 445.5,-236"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-234 445.5,-236 661.5,-236 661.5,-234 445.5,-234"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-232 445.5,-234 661.5,-234 661.5,-232 445.5,-232"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-230 445.5,-232 661.5,-232 661.5,-230 445.5,-230"/>
|
||||
<text text-anchor="start" x="447.5" y="-214.7" font-family="arial" font-size="14.00"> X1:2:DA-</text>
|
||||
<text text-anchor="start" x="517.12" y="-214.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="537" y="-214.7" font-family="arial" font-size="14.00">2:GN</text>
|
||||
<text text-anchor="start" x="586.12" y="-214.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="597.25" y="-214.7" font-family="arial" font-size="14.00">X2:6:DA- </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-208 445.5,-210 661.5,-210 661.5,-208 445.5,-208"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-206 445.5,-208 661.5,-208 661.5,-206 445.5,-206"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-204 445.5,-206 661.5,-206 661.5,-204 445.5,-204"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-202 445.5,-204 661.5,-204 661.5,-202 445.5,-202"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-200 445.5,-202 661.5,-202 661.5,-200 445.5,-200"/>
|
||||
<text text-anchor="start" x="447.5" y="-184.7" font-family="arial" font-size="14.00"> X1:3:DB+</text>
|
||||
<text text-anchor="start" x="517.12" y="-184.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="524.25" y="-184.7" font-family="arial" font-size="14.00">3:WHOG</text>
|
||||
<text text-anchor="start" x="586.12" y="-184.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="593.5" y="-184.7" font-family="arial" font-size="14.00">X2:1:DB+ </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-178 445.5,-180 661.5,-180 661.5,-178 445.5,-178"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-176 445.5,-178 661.5,-178 661.5,-176 445.5,-176"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-174 445.5,-176 661.5,-176 661.5,-174 445.5,-174"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-172 445.5,-174 661.5,-174 661.5,-172 445.5,-172"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-170 445.5,-172 661.5,-172 661.5,-170 445.5,-170"/>
|
||||
<text text-anchor="start" x="447.12" y="-154.7" font-family="arial" font-size="14.00"> X1:4:DC+</text>
|
||||
<text text-anchor="start" x="517.12" y="-154.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="537.75" y="-154.7" font-family="arial" font-size="14.00">4:BU</text>
|
||||
<text text-anchor="start" x="586.12" y="-154.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="593.12" y="-154.7" font-family="arial" font-size="14.00">X2:7:DC+ </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-148 445.5,-150 661.5,-150 661.5,-148 445.5,-148"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-146 445.5,-148 661.5,-148 661.5,-146 445.5,-146"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-144 445.5,-146 661.5,-146 661.5,-144 445.5,-144"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-142 445.5,-144 661.5,-144 661.5,-142 445.5,-142"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-140 445.5,-142 661.5,-142 661.5,-140 445.5,-140"/>
|
||||
<text text-anchor="start" x="447.5" y="-124.7" font-family="arial" font-size="14.00"> X1:5:DC-</text>
|
||||
<text text-anchor="start" x="517.12" y="-124.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="525.75" y="-124.7" font-family="arial" font-size="14.00">5:WHBU</text>
|
||||
<text text-anchor="start" x="586.12" y="-124.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="596.5" y="-124.7" font-family="arial" font-size="14.00">X2:8:DC- </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-118 445.5,-120 661.5,-120 661.5,-118 445.5,-118"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-116 445.5,-118 661.5,-118 661.5,-116 445.5,-116"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-114 445.5,-116 661.5,-116 661.5,-114 445.5,-114"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-112 445.5,-114 661.5,-114 661.5,-112 445.5,-112"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-110 445.5,-112 661.5,-112 661.5,-110 445.5,-110"/>
|
||||
<text text-anchor="start" x="447.5" y="-94.7" font-family="arial" font-size="14.00"> X1:6:DB-</text>
|
||||
<text text-anchor="start" x="517.12" y="-94.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="536.25" y="-94.7" font-family="arial" font-size="14.00">6:OG</text>
|
||||
<text text-anchor="start" x="586.12" y="-94.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="597.25" y="-94.7" font-family="arial" font-size="14.00">X2:2:DB- </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-88 445.5,-90 661.5,-90 661.5,-88 445.5,-88"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-86 445.5,-88 661.5,-88 661.5,-86 445.5,-86"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-84 445.5,-86 661.5,-86 661.5,-84 445.5,-84"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-82 445.5,-84 661.5,-84 661.5,-82 445.5,-82"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-80 445.5,-82 661.5,-82 661.5,-80 445.5,-80"/>
|
||||
<text text-anchor="start" x="447.12" y="-64.7" font-family="arial" font-size="14.00"> X1:7:DD+</text>
|
||||
<text text-anchor="start" x="517.12" y="-64.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="525.75" y="-64.7" font-family="arial" font-size="14.00">7:WHBN</text>
|
||||
<text text-anchor="start" x="586.12" y="-64.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="593.12" y="-64.7" font-family="arial" font-size="14.00">X2:4:DD+ </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-58 445.5,-60 661.5,-60 661.5,-58 445.5,-58"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-56 445.5,-58 661.5,-58 661.5,-56 445.5,-56"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-54 445.5,-56 661.5,-56 661.5,-54 445.5,-54"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-52 445.5,-54 661.5,-54 661.5,-52 445.5,-52"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-50 445.5,-52 661.5,-52 661.5,-50 445.5,-50"/>
|
||||
<text text-anchor="start" x="447.5" y="-34.7" font-family="arial" font-size="14.00"> X1:8:DD-</text>
|
||||
<text text-anchor="start" x="517.12" y="-34.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="537.75" y="-34.7" font-family="arial" font-size="14.00">8:BN</text>
|
||||
<text text-anchor="start" x="586.12" y="-34.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="596.5" y="-34.7" font-family="arial" font-size="14.00">X2:5:DD- </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-28 445.5,-30 661.5,-30 661.5,-28 445.5,-28"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-26 445.5,-28 661.5,-28 661.5,-26 445.5,-26"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-24 445.5,-26 661.5,-26 661.5,-24 445.5,-24"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-22 445.5,-24 661.5,-24 661.5,-22 445.5,-22"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,-20 445.5,-22 661.5,-22 661.5,-20 445.5,-20"/>
|
||||
<text text-anchor="start" x="478.62" y="-4.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-203C365.83,-204.62 380.6,-224.62 442,-223"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M298,-205C364.22,-205.81 378.99,-225.81 442,-225"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M298,-207C362.61,-207 377.39,-227 442,-227"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M298,-209C361.01,-208.19 375.78,-228.19 442,-229"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-211C359.4,-209.38 374.17,-229.38 442,-231"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-210C369.46,-211.71 384.1,-232.71 445.5,-231"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-212C367.82,-212.86 382.46,-233.86 445.5,-233"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M301.5,-214C366.18,-214 380.82,-235 445.5,-235"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-216C364.54,-215.14 379.18,-236.14 445.5,-237"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-218C362.9,-216.29 377.54,-237.29 445.5,-239"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-186C368.65,-187.14 383.95,-202.14 445.5,-201"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M301.5,-188C367.25,-188.57 382.55,-203.57 445.5,-203"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M301.5,-190C365.85,-190 381.15,-205 445.5,-205"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M301.5,-192C364.45,-191.43 379.75,-206.43 445.5,-207"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-194C363.05,-192.86 378.35,-207.86 445.5,-209"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-180C364.99,-181.04 380.39,-195.04 442,-194"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M298,-182C363.65,-182.52 379.04,-196.52 442,-196"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M298,-184C362.3,-184 377.7,-198 442,-198"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M298,-186C360.96,-185.48 376.35,-199.48 442,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-188C359.61,-186.96 375.01,-200.96 442,-202"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-162C367.6,-162.53 383.36,-171.53 445.5,-171"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-164C366.61,-164.26 382.37,-173.26 445.5,-173"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M301.5,-166C365.62,-166 381.38,-175 445.5,-175"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-168C364.63,-167.74 380.39,-176.74 445.5,-177"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-170C363.64,-169.47 379.4,-178.47 445.5,-179"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-138C366.25,-138.07 382.23,-141.07 445.5,-141"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M301.5,-140C365.88,-140.03 381.86,-143.03 445.5,-143"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M301.5,-142C365.51,-142 381.49,-145 445.5,-145"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M301.5,-144C365.14,-143.97 381.12,-146.97 445.5,-147"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-146C364.77,-145.93 380.75,-148.93 445.5,-149"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-157C363.91,-157.43 379.71,-165.43 442,-165"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M298,-159C363,-159.22 378.8,-167.22 442,-167"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M298,-161C362.1,-161 377.9,-169 442,-169"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M298,-163C361.2,-162.78 377,-170.78 442,-171"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-165C360.29,-164.57 376.09,-172.57 442,-173"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-114C364.77,-114.07 380.75,-111.07 445.5,-111"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-116C365.14,-116.03 381.12,-113.03 445.5,-113"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M301.5,-118C365.51,-118 381.49,-115 445.5,-115"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-120C365.88,-119.97 381.86,-116.97 445.5,-117"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-122C366.25,-121.93 382.23,-118.93 445.5,-119"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-90C363.64,-90.53 379.4,-81.53 445.5,-81"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M301.5,-92C364.63,-92.26 380.39,-83.26 445.5,-83"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M301.5,-94C365.62,-94 381.38,-85 445.5,-85"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M301.5,-96C366.61,-95.74 382.37,-86.74 445.5,-87"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-98C367.6,-97.47 383.36,-88.47 445.5,-89"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-133C362.75,-133.07 378.72,-136.07 442,-136"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M298,-135C362.38,-135.03 378.36,-138.03 442,-138"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M298,-137C362.01,-137 377.99,-140 442,-140"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M298,-139C361.64,-138.97 377.62,-141.97 442,-142"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-141C361.28,-140.93 377.25,-143.93 442,-144"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-66C363.05,-67.14 378.35,-52.14 445.5,-51"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-68C364.45,-68.57 379.75,-53.57 445.5,-53"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M301.5,-70C365.85,-70 381.15,-55 445.5,-55"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-72C367.25,-71.43 382.55,-56.43 445.5,-57"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-74C368.65,-72.86 383.95,-57.86 445.5,-59"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-42C362.9,-43.71 377.54,-22.71 445.5,-21"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M301.5,-44C364.54,-44.86 379.18,-23.86 445.5,-23"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M301.5,-46C366.18,-46 380.82,-25 445.5,-25"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M301.5,-48C367.82,-47.14 382.46,-26.14 445.5,-27"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-50C369.46,-48.29 384.1,-27.29 445.5,-29"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-110C361.28,-110.07 377.25,-107.07 442,-107"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M298,-112C361.64,-112.03 377.62,-109.03 442,-109"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M298,-114C362.01,-114 377.99,-111 442,-111"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M298,-116C362.38,-115.97 378.36,-112.97 442,-113"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-118C362.75,-117.93 378.72,-114.93 442,-115"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-239C589.5,-239 517.5,-239 445.5,-239"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-237C589.5,-237 517.5,-237 445.5,-237"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-235C589.5,-235 517.5,-235 445.5,-235"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-233C589.5,-233 517.5,-233 445.5,-233"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-231C589.5,-231 517.5,-231 445.5,-231"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-209C589.5,-209 517.5,-209 445.5,-209"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-207C589.5,-207 517.5,-207 445.5,-207"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-205C589.5,-205 517.5,-205 445.5,-205"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-203C589.5,-203 517.5,-203 445.5,-203"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-201C589.5,-201 517.5,-201 445.5,-201"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-87C360.14,-87.53 375.89,-78.53 442,-78"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M298,-89C361.13,-89.26 376.88,-80.26 442,-80"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M298,-91C362.12,-91 377.88,-82 442,-82"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M298,-93C363.12,-92.74 378.87,-83.74 442,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-95C364.11,-94.47 379.86,-85.47 442,-86"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-179C589.5,-179 517.5,-179 445.5,-179"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-177C589.5,-177 517.5,-177 445.5,-177"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-175C589.5,-175 517.5,-175 445.5,-175"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-173C589.5,-173 517.5,-173 445.5,-173"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-171C589.5,-171 517.5,-171 445.5,-171"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-149C589.5,-149 517.5,-149 445.5,-149"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-147C589.5,-147 517.5,-147 445.5,-147"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-145C589.5,-145 517.5,-145 445.5,-145"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-143C589.5,-143 517.5,-143 445.5,-143"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-141C589.5,-141 517.5,-141 445.5,-141"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-64C359.55,-65.14 374.85,-50.14 442,-49"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M298,-66C360.95,-66.57 376.25,-51.57 442,-51"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M298,-68C362.35,-68 377.65,-53 442,-53"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M298,-70C363.75,-69.43 379.05,-54.43 442,-55"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-72C365.15,-70.86 380.45,-55.86 442,-57"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-119C589.5,-119 517.5,-119 445.5,-119"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-117C589.5,-117 517.5,-117 445.5,-117"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-115C589.5,-115 517.5,-115 445.5,-115"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-113C589.5,-113 517.5,-113 445.5,-113"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-111C589.5,-111 517.5,-111 445.5,-111"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-89C589.5,-89 517.5,-89 445.5,-89"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-87C589.5,-87 517.5,-87 445.5,-87"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-85C589.5,-85 517.5,-85 445.5,-85"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-83C589.5,-83 517.5,-83 445.5,-83"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-81C589.5,-81 517.5,-81 445.5,-81"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-41C359.4,-42.71 374.04,-21.71 442,-20"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M298,-43C361.04,-43.86 375.68,-22.86 442,-22"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M298,-45C362.68,-45 377.32,-24 442,-24"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M298,-47C364.32,-46.14 378.96,-25.14 442,-26"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M298,-49C365.96,-47.29 380.6,-26.29 442,-28"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-59C589.5,-59 517.5,-59 445.5,-59"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-57C589.5,-57 517.5,-57 445.5,-57"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-55C589.5,-55 517.5,-55 445.5,-55"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-53C589.5,-53 517.5,-53 445.5,-53"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-51C589.5,-51 517.5,-51 445.5,-51"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-29C589.5,-29 517.5,-29 445.5,-29"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-27C589.5,-27 517.5,-27 445.5,-27"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-25C589.5,-25 517.5,-25 445.5,-25"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-23C589.5,-23 517.5,-23 445.5,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-21C589.5,-21 517.5,-21 445.5,-21"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="1112,-278 814,-278 814,-48 1112,-48 1112,-278"/>
|
||||
<polygon fill="none" stroke="black" points="814,-255 814,-278 1112,-278 1112,-255 814,-255"/>
|
||||
<text text-anchor="start" x="954" y="-262.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="814,-232 814,-255 1033,-255 1033,-232 814,-232"/>
|
||||
<text text-anchor="start" x="818" y="-239.8" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="1033,-232 1033,-255 1072,-255 1072,-232 1033,-232"/>
|
||||
<text text-anchor="start" x="1037" y="-239.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="1072,-232 1072,-255 1112,-255 1112,-232 1072,-232"/>
|
||||
<text text-anchor="start" x="1076" y="-239.8" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="814,-209 814,-232 953,-232 953,-209 814,-209"/>
|
||||
<text text-anchor="start" x="879.5" y="-216.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="953,-209 953,-232 1112,-232 1112,-209 953,-209"/>
|
||||
<text text-anchor="start" x="1018.5" y="-216.8" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="814,-186 814,-209 953,-209 953,-186 814,-186"/>
|
||||
<text text-anchor="start" x="879.5" y="-193.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="953,-186 953,-209 1112,-209 1112,-186 953,-186"/>
|
||||
<text text-anchor="start" x="1020" y="-193.8" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="814,-163 814,-186 953,-186 953,-163 814,-163"/>
|
||||
<text text-anchor="start" x="879.5" y="-170.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="953,-163 953,-186 1112,-186 1112,-163 953,-163"/>
|
||||
<text text-anchor="start" x="1018.5" y="-170.8" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="814,-140 814,-163 953,-163 953,-140 814,-140"/>
|
||||
<text text-anchor="start" x="879.5" y="-147.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="953,-140 953,-163 1112,-163 1112,-140 953,-140"/>
|
||||
<text text-anchor="start" x="1018" y="-147.8" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="814,-117 814,-140 953,-140 953,-117 814,-117"/>
|
||||
<text text-anchor="start" x="879.5" y="-124.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="953,-117 953,-140 1112,-140 1112,-117 953,-117"/>
|
||||
<text text-anchor="start" x="1020" y="-124.8" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="814,-94 814,-117 953,-117 953,-94 814,-94"/>
|
||||
<text text-anchor="start" x="879.5" y="-101.8" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="953,-94 953,-117 1112,-117 1112,-94 953,-94"/>
|
||||
<text text-anchor="start" x="1020" y="-101.8" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="814,-71 814,-94 953,-94 953,-71 814,-71"/>
|
||||
<text text-anchor="start" x="879.5" y="-78.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="953,-71 953,-94 1112,-94 1112,-71 953,-71"/>
|
||||
<text text-anchor="start" x="1018" y="-78.8" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="814,-48 814,-71 953,-71 953,-48 814,-48"/>
|
||||
<text text-anchor="start" x="879.5" y="-55.8" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="953,-48 953,-71 1112,-71 1112,-48 953,-48"/>
|
||||
<text text-anchor="start" x="1020" y="-55.8" font-family="arial" font-size="14.00">DC-</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="1107,-290 805.5,-290 805.5,-49 1107,-49 1107,-290"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="805.5,-49 805.5,-290 1107,-290 1107,-49 805.5,-49"/>
|
||||
<polygon fill="none" stroke="black" points="805.5,-265.5 805.5,-290 1107,-290 1107,-265.5 805.5,-265.5"/>
|
||||
<text text-anchor="start" x="947.25" y="-272.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-241 805.5,-265.5 1028.75,-265.5 1028.75,-241 805.5,-241"/>
|
||||
<text text-anchor="start" x="809.5" y="-248.2" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="1028.75,-241 1028.75,-265.5 1067.5,-265.5 1067.5,-241 1028.75,-241"/>
|
||||
<text text-anchor="start" x="1032.75" y="-248.2" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="1067.5,-241 1067.5,-265.5 1107,-265.5 1107,-241 1067.5,-241"/>
|
||||
<text text-anchor="start" x="1071.5" y="-248.2" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-217 805.5,-241 945.75,-241 945.75,-217 805.5,-217"/>
|
||||
<text text-anchor="start" x="871.5" y="-223.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-217 945.75,-241 1107,-241 1107,-217 945.75,-217"/>
|
||||
<text text-anchor="start" x="1012.12" y="-223.7" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-193 805.5,-217 945.75,-217 945.75,-193 805.5,-193"/>
|
||||
<text text-anchor="start" x="871.5" y="-199.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-193 945.75,-217 1107,-217 1107,-193 945.75,-193"/>
|
||||
<text text-anchor="start" x="1014" y="-199.7" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-169 805.5,-193 945.75,-193 945.75,-169 805.5,-169"/>
|
||||
<text text-anchor="start" x="871.5" y="-175.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-169 945.75,-193 1107,-193 1107,-169 945.75,-169"/>
|
||||
<text text-anchor="start" x="1012.12" y="-175.7" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-145 805.5,-169 945.75,-169 945.75,-145 805.5,-145"/>
|
||||
<text text-anchor="start" x="871.5" y="-151.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-145 945.75,-169 1107,-169 1107,-145 945.75,-145"/>
|
||||
<text text-anchor="start" x="1011.75" y="-151.7" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-121 805.5,-145 945.75,-145 945.75,-121 805.5,-121"/>
|
||||
<text text-anchor="start" x="871.5" y="-127.7" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-121 945.75,-145 1107,-145 1107,-121 945.75,-121"/>
|
||||
<text text-anchor="start" x="1013.62" y="-127.7" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-97 805.5,-121 945.75,-121 945.75,-97 805.5,-97"/>
|
||||
<text text-anchor="start" x="871.5" y="-103.7" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-97 945.75,-121 1107,-121 1107,-97 945.75,-97"/>
|
||||
<text text-anchor="start" x="1014" y="-103.7" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-73 805.5,-97 945.75,-97 945.75,-73 805.5,-73"/>
|
||||
<text text-anchor="start" x="871.5" y="-79.7" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-73 945.75,-97 1107,-97 1107,-73 945.75,-73"/>
|
||||
<text text-anchor="start" x="1011.75" y="-79.7" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-49 805.5,-73 945.75,-73 945.75,-49 805.5,-49"/>
|
||||
<text text-anchor="start" x="871.5" y="-55.7" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-49 945.75,-73 1107,-73 1107,-49 945.75,-49"/>
|
||||
<text text-anchor="start" x="1013.62" y="-55.7" font-family="arial" font-size="14.00">DC-</text>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<g id="edge17" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-223C734.09,-226.4 742,-174.4 814,-171"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M670,-225C736.07,-226.7 743.98,-174.7 814,-173"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M670,-227C738.05,-227 745.95,-175 814,-175"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M670,-229C740.02,-227.3 747.93,-175.3 814,-177"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-231C742,-227.6 749.91,-175.6 814,-179"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-231C725.89,-234.46 733.19,-180.46 805.5,-177"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-233C727.87,-234.73 735.17,-180.73 805.5,-179"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-235C729.85,-235 737.15,-181 805.5,-181"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-237C731.83,-235.27 739.13,-181.27 805.5,-183"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-239C733.81,-235.54 741.11,-181.54 805.5,-185"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<g id="edge18" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-194C742.2,-198.36 733.83,-105.36 814,-101"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M670,-196C744.19,-198.18 735.82,-105.18 814,-103"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M670,-198C746.19,-198 737.81,-105 814,-105"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M670,-200C748.18,-197.82 739.81,-104.82 814,-107"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-202C750.17,-197.64 741.8,-104.64 814,-109"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-201C734.44,-205.41 724.6,-109.41 805.5,-105"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-203C736.43,-205.2 726.59,-109.2 805.5,-107"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-205C738.42,-205 728.58,-109 805.5,-109"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-207C740.41,-204.8 730.57,-108.8 805.5,-111"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-209C742.4,-204.59 732.56,-108.59 805.5,-113"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<g id="edge19" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-165C742,-168.4 749.91,-220.4 814,-217"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M670,-167C740.02,-168.7 747.93,-220.7 814,-219"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M670,-169C738.05,-169 745.95,-221 814,-221"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M670,-171C736.07,-169.3 743.98,-221.3 814,-223"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-173C734.09,-169.6 742,-221.6 814,-225"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-171C733.81,-174.46 741.11,-228.46 805.5,-225"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-173C731.83,-174.73 739.13,-228.73 805.5,-227"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-175C729.85,-175 737.15,-229 805.5,-229"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-177C727.87,-175.27 735.17,-229.27 805.5,-231"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-179C725.89,-175.54 733.19,-229.54 805.5,-233"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<g id="edge20" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-136C735.02,-139.59 741.02,-81.59 814,-78"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M670,-138C737.01,-139.79 743.01,-81.79 814,-80"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M670,-140C739,-140 745,-82 814,-82"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M670,-142C740.99,-140.21 746.99,-82.21 814,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-144C742.98,-140.41 748.98,-82.41 814,-86"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-141C726.85,-144.65 732.19,-84.65 805.5,-81"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-143C728.84,-144.82 734.18,-84.82 805.5,-83"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-145C730.83,-145 736.17,-85 805.5,-85"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-147C732.82,-145.18 738.16,-85.18 805.5,-87"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-149C734.81,-145.35 740.15,-85.35 805.5,-89"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge10" class="edge">
|
||||
<g id="edge21" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-107C734.09,-110.4 742,-58.4 814,-55"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M670,-109C736.07,-110.7 743.98,-58.7 814,-57"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M670,-111C738.05,-111 745.95,-59 814,-59"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M670,-113C740.02,-111.3 747.93,-59.3 814,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-115C742,-111.6 749.91,-59.6 814,-63"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-111C725.89,-114.46 733.19,-60.46 805.5,-57"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-113C727.87,-114.73 735.17,-60.73 805.5,-59"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-115C729.85,-115 737.15,-61 805.5,-61"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-117C731.83,-115.27 739.13,-61.27 805.5,-63"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-119C733.81,-115.54 741.11,-61.54 805.5,-65"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge12" class="edge">
|
||||
<g id="edge22" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-78C756.12,-82.69 735.76,-198.69 814,-194"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M670,-80C754.15,-82.35 733.79,-198.35 814,-196"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M670,-82C752.18,-82 731.82,-198 814,-198"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M670,-84C750.21,-81.65 729.85,-197.65 814,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-86C748.24,-81.31 727.88,-197.31 814,-202"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-81C748.74,-85.74 726.12,-205.74 805.5,-201"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-83C746.78,-85.37 724.16,-205.37 805.5,-203"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-85C744.81,-85 722.19,-205 805.5,-205"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-87C742.84,-84.63 720.22,-204.63 805.5,-207"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-89C740.88,-84.26 718.26,-204.26 805.5,-209"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge14" class="edge">
|
||||
<g id="edge23" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-49C751.39,-53.44 740.56,-151.44 814,-147"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M670,-51C749.4,-53.22 738.57,-151.22 814,-149"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M670,-53C747.42,-53 736.58,-151 814,-151"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M670,-55C745.43,-52.78 734.6,-150.78 814,-153"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-57C743.44,-52.56 732.61,-150.56 814,-155"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-51C743.9,-55.5 731.04,-157.5 805.5,-153"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-53C741.91,-55.25 729.05,-157.25 805.5,-155"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-55C739.93,-55 727.07,-157 805.5,-157"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-57C737.95,-54.75 725.09,-156.75 805.5,-159"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-59C735.96,-54.5 723.1,-156.5 805.5,-161"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge16" class="edge">
|
||||
<g id="edge24" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-20C752.91,-24.53 739.02,-128.53 814,-124"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M670,-22C750.93,-24.26 737.04,-128.26 814,-126"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M670,-24C748.95,-24 735.05,-128 814,-128"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M670,-26C746.96,-23.74 733.07,-127.74 814,-130"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M670,-28C744.98,-23.47 731.09,-127.47 814,-132"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-21C745.46,-25.59 729.46,-133.59 805.5,-129"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-23C743.48,-25.29 727.48,-133.29 805.5,-131"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-25C741.5,-25 725.5,-133 805.5,-133"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-27C739.52,-24.71 723.52,-132.71 805.5,-135"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-29C737.54,-24.41 721.54,-132.41 805.5,-137"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 33 KiB |
3
examples/ex10.tsv
generated
Normal file
@ -0,0 +1,3 @@
|
||||
# Qty Unit Description Designators
|
||||
1 2 Connector, Stewart Connector SS-37000-002, male, 8 pins X1, X2
|
||||
2 1 m Cable, CAT5e, 8 x 24 AWG W1
|
||||
|
64
examples/ex10_wv_gvpr.gvpr
Normal file
@ -0,0 +1,64 @@
|
||||
/*******************************************************************
|
||||
|
||||
see https://forum.graphviz.org/t/straitening-one-line-throu-a-table/2196 and https://forum.graphviz.org/t/way-of-drawing-a-black-circle-inside-a-table-field/2273/12
|
||||
input must include pos values (must be output from one of the engines w/ -Tdot)#
|
||||
Thanks to steveroush and FeRDNYC
|
||||
|
||||
*******************************************************************/
|
||||
BEG_G{
|
||||
double x1,y1,x2,y2,x3,y3,x4,y4;
|
||||
string ptSize, tok[int], pt[];
|
||||
int cnt, circ, i;
|
||||
node_t aNode;
|
||||
|
||||
circ=0;
|
||||
|
||||
/***************************************
|
||||
$G.bb="";
|
||||
$G.nodesep="";
|
||||
$G.ranksep="";
|
||||
$G.splines="true";
|
||||
****************************************/
|
||||
}
|
||||
|
||||
// This removes the label text but keeps the position
|
||||
E[noLabel] {
|
||||
$.label=""; // remove pesky label
|
||||
// $.lp=""; // remove peskier label pos
|
||||
}
|
||||
|
||||
E[straight] {
|
||||
cnt=tokens($.pos,tok," ");
|
||||
$.oldpos=$.pos;
|
||||
x1 = xOf(tok[0]);
|
||||
y1 = yOf(tok[0]);
|
||||
x4 = xOf(tok[cnt-1]);
|
||||
y4 = yOf(tok[cnt-1]);
|
||||
x2 = x1 + (x4-x1)/3.;
|
||||
y2 = y1 + (y4-y1)/3.;
|
||||
x3 = x1 + 2.*(x4-x1)/3.;
|
||||
y3 = y1 + 2.*(y4-y1)/3.;
|
||||
pos=sprintf("%.3f,%.3f %.3f,%.3f %.3f,%.3f %.3f,%.3f", x1,y1, x2,y2, x3,y3, x4,y4);
|
||||
$.label=""; // remove pesky label
|
||||
$.lp=""; // remove peskier label pos
|
||||
|
||||
if (hasAttr($, "addPTS") && $.addPTS!="" && $.colorPTS!=""){
|
||||
// now we place point nodes at the edge ends
|
||||
pt[1] = tok[0];
|
||||
pt[2] = tok[cnt-1];
|
||||
ptSize=$.addPTS;
|
||||
for (pt[i]) {
|
||||
if (i==2 && pt[1]==pt[2])
|
||||
continue;
|
||||
aNode=node($G, "__CIRCLE__" + (string)++circ);
|
||||
aNode.pos=pt[i];
|
||||
aNode.shape="point";
|
||||
aNode.width=ptSize;
|
||||
aNode.height=ptSize;
|
||||
aNode.style="filled";
|
||||
aNode.fillcolor=$.colorPTS;
|
||||
aNode.color=$.colorPTS;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
402
examples/ex11.gv
generated
@ -1,191 +1,263 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4-dev
|
||||
// Graph generated by WireViz 0.4-dev251
|
||||
// https://github.com/formatc1702/WireViz
|
||||
graph [bgcolor="#FFFFFF" fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor="#FFFFFF" fontname=arial height=0 margin=0 shape=none style=filled width=0]
|
||||
edge [fontname=arial style=bold]
|
||||
AUTOGENERATED_F_1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Ferrule</td>
|
||||
<td balign="left">GY</td>
|
||||
<td balign="left" bgcolor="#999999" width="4"></td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" port="p1r" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td port="p1l">
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Ferrule</td>
|
||||
<td>GY</td>
|
||||
<td bgcolor="#999999" sides="TBLR"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Ferrule</td>
|
||||
<td balign="left">GY</td>
|
||||
<td balign="left" bgcolor="#999999" width="4"></td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" port="p1r" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td port="p1l">
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Ferrule</td>
|
||||
<td>GY</td>
|
||||
<td bgcolor="#999999" sides="TBLR"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_3 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Ferrule</td>
|
||||
<td balign="left">GY</td>
|
||||
<td balign="left" bgcolor="#999999" width="4"></td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" port="p1r" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td port="p1l">
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Ferrule</td>
|
||||
<td>GY</td>
|
||||
<td bgcolor="#999999" sides="TBLR"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_4 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Ferrule</td>
|
||||
<td balign="left">GY</td>
|
||||
<td balign="left" bgcolor="#999999" width="4"></td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" port="p1r" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td port="p1l">
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Ferrule</td>
|
||||
<td>GY</td>
|
||||
<td bgcolor="#999999" sides="TBLR"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
X1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Screw connector</td>
|
||||
<td balign="left">male</td>
|
||||
<td balign="left">4-pin</td>
|
||||
<td balign="left">GN</td>
|
||||
<td balign="left" bgcolor="#00FF00" width="4"></td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>A</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>B</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p3l">3</td>
|
||||
<td>C</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p4l">4</td>
|
||||
<td>D</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Screw connector</td>
|
||||
<td>male</td>
|
||||
<td>4-pin</td>
|
||||
<td>GN</td>
|
||||
<td bgcolor="#00AA00" sides="TBLR"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>A</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>B</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p3l">3</td>
|
||||
<td>C</td>
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p4l">4</td>
|
||||
<td>D</td>
|
||||
[]
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>4x</td>
|
||||
<td>BK</td>
|
||||
<td bgcolor="#000000" sides="TBLR"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> </td>
|
||||
<td> </td>
|
||||
<td>1:BK</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w1">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> </td>
|
||||
<td> </td>
|
||||
<td>2:WH</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w2">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> </td>
|
||||
<td> </td>
|
||||
<td>3:BU</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w3">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> </td>
|
||||
<td> </td>
|
||||
<td>4:BN</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w4">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> shape=box style=filled]
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
W1:w1:e -- AUTOGENERATED_F_1:w
|
||||
edge [color="#000000:#ffffff:#000000"]
|
||||
edge [color="#000000:#FFFFFF:#000000"]
|
||||
W1:w2:e -- AUTOGENERATED_F_2:w
|
||||
edge [color="#000000:#0066ff:#000000"]
|
||||
edge [color="#000000:#0066FF:#000000"]
|
||||
W1:w3:e -- AUTOGENERATED_F_3:w
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
W1:w4:e -- AUTOGENERATED_F_4:w
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">W1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">4x</td>
|
||||
<td balign="left">BK</td>
|
||||
<td balign="left" bgcolor="#000000" width="4"></td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td><!-- 1_in --></td>
|
||||
<td>
|
||||
1:BK
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><!-- 2_in --></td>
|
||||
<td>
|
||||
2:WH
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ffffff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><!-- 3_in --></td>
|
||||
<td>
|
||||
3:BU
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w3" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#0066ff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><!-- 4_in --></td>
|
||||
<td>
|
||||
4:BN
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w4" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#895956" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
W1:w1:e -- W1:w1:w [color="#000000:#000000:#000000" straight=straight]
|
||||
W1:w2:e -- W1:w2:w [color="#000000:#FFFFFF:#000000" straight=straight]
|
||||
W1:w3:e -- W1:w3:w [color="#000000:#0066FF:#000000" straight=straight]
|
||||
W1:w4:e -- W1:w4:w [color="#000000:#895956:#000000" straight=straight]
|
||||
edge [color="#000000" dir=forward style=dashed]
|
||||
AUTOGENERATED_F_1:e -- X1:p1l:w
|
||||
AUTOGENERATED_F_1:p1r:e -- X1:p1l:w
|
||||
edge [color="#000000" dir=forward style=dashed]
|
||||
AUTOGENERATED_F_2:e -- X1:p2l:w
|
||||
AUTOGENERATED_F_2:p1r:e -- X1:p2l:w
|
||||
edge [color="#000000" dir=forward style=dashed]
|
||||
AUTOGENERATED_F_3:e -- X1:p3l:w
|
||||
AUTOGENERATED_F_3:p1r:e -- X1:p3l:w
|
||||
edge [color="#000000" dir=forward style=dashed]
|
||||
AUTOGENERATED_F_4:e -- X1:p4l:w
|
||||
AUTOGENERATED_F_4:p1r:e -- X1:p4l:w
|
||||
}
|
||||
|
||||
324
examples/ex11.html
generated
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="generator" content="WireViz 0.4-dev - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.4-dev251 - https://github.com/formatc1702/WireViz">
|
||||
<title>ex11</title>
|
||||
<style>
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
}
|
||||
|
||||
</style>
|
||||
</head><body style="font-family:arial;background-color:#ffffff">
|
||||
</head><body style="font-family:arial;background-color:#FFFFFF">
|
||||
<h1>ex11</h1>
|
||||
<h2>Diagram</h2>
|
||||
|
||||
@ -30,172 +30,222 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="703pt" height="215pt"
|
||||
viewBox="0.00 0.00 703.00 214.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 210.5)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-210.5 699,-210.5 699,4 -4,4"/>
|
||||
<svg width="683pt" height="224pt"
|
||||
viewBox="0.00 0.00 683.00 223.75" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 219.75)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-219.75 679,-219.75 679,4 -4,4"/>
|
||||
<!-- AUTOGENERATED_F_1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>AUTOGENERATED_F_1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="321,-164 231,-164 231,-141 321,-141 321,-164"/>
|
||||
<polygon fill="none" stroke="black" points="231,-140.5 231,-163.5 284,-163.5 284,-140.5 231,-140.5"/>
|
||||
<text text-anchor="start" x="235" y="-148.3" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="284,-140.5 284,-163.5 313,-163.5 313,-140.5 284,-140.5"/>
|
||||
<text text-anchor="start" x="288" y="-148.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="transparent" points="313,-140.5 313,-163.5 321,-163.5 321,-140.5 313,-140.5"/>
|
||||
<polygon fill="none" stroke="black" points="313,-140.5 313,-163.5 321,-163.5 321,-140.5 313,-140.5"/>
|
||||
<polygon fill="#ffffff" stroke="black" points="301.25,-171.5 212,-171.5 212,-147 301.25,-147 301.25,-171.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="212,-147 212,-171.5 301.25,-171.5 301.25,-147 212,-147"/>
|
||||
<polygon fill="none" stroke="black" points="212,-147 212,-171.5 265,-171.5 265,-147 212,-147"/>
|
||||
<text text-anchor="start" x="216" y="-154.2" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="265,-147 265,-171.5 293.25,-171.5 293.25,-147 265,-147"/>
|
||||
<text text-anchor="start" x="269" y="-154.2" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="none" points="293.25,-147 293.25,-171.5 301.25,-171.5 301.25,-147 293.25,-147"/>
|
||||
<polygon fill="none" stroke="black" points="293.25,-147 293.25,-171.5 301.25,-171.5 301.25,-147 293.25,-147"/>
|
||||
</g>
|
||||
<!-- X1 -->
|
||||
<g id="node5" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="695,-174.5 465,-174.5 465,-36.5 695,-36.5 695,-174.5"/>
|
||||
<polygon fill="none" stroke="black" points="465,-151.5 465,-174.5 695,-174.5 695,-151.5 465,-151.5"/>
|
||||
<text text-anchor="start" x="571" y="-159.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="465,-128.5 465,-151.5 578,-151.5 578,-128.5 465,-128.5"/>
|
||||
<text text-anchor="start" x="469" y="-136.3" font-family="arial" font-size="14.00">Screw connector</text>
|
||||
<polygon fill="none" stroke="black" points="578,-128.5 578,-151.5 617,-151.5 617,-128.5 578,-128.5"/>
|
||||
<text text-anchor="start" x="582" y="-136.3" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="617,-128.5 617,-151.5 657,-151.5 657,-128.5 617,-128.5"/>
|
||||
<text text-anchor="start" x="621" y="-136.3" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="657,-128.5 657,-151.5 687,-151.5 687,-128.5 657,-128.5"/>
|
||||
<text text-anchor="start" x="661" y="-136.3" font-family="arial" font-size="14.00">GN</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="687,-128.5 687,-151.5 695,-151.5 695,-128.5 687,-128.5"/>
|
||||
<polygon fill="none" stroke="black" points="687,-128.5 687,-151.5 695,-151.5 695,-128.5 687,-128.5"/>
|
||||
<polygon fill="none" stroke="black" points="465,-105.5 465,-128.5 579,-128.5 579,-105.5 465,-105.5"/>
|
||||
<text text-anchor="start" x="518" y="-113.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="579,-105.5 579,-128.5 695,-128.5 695,-105.5 579,-105.5"/>
|
||||
<text text-anchor="start" x="632" y="-113.3" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="465,-82.5 465,-105.5 579,-105.5 579,-82.5 465,-82.5"/>
|
||||
<text text-anchor="start" x="518" y="-90.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="579,-82.5 579,-105.5 695,-105.5 695,-82.5 579,-82.5"/>
|
||||
<text text-anchor="start" x="632" y="-90.3" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="465,-59.5 465,-82.5 579,-82.5 579,-59.5 465,-59.5"/>
|
||||
<text text-anchor="start" x="518" y="-67.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="579,-59.5 579,-82.5 695,-82.5 695,-59.5 579,-59.5"/>
|
||||
<text text-anchor="start" x="631.5" y="-67.3" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="465,-36.5 465,-59.5 579,-59.5 579,-36.5 465,-36.5"/>
|
||||
<text text-anchor="start" x="518" y="-44.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="579,-36.5 579,-59.5 695,-59.5 695,-36.5 579,-36.5"/>
|
||||
<text text-anchor="start" x="631.5" y="-44.3" font-family="arial" font-size="14.00">D</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="675,-181.75 445.25,-181.75 445.25,-36.75 675,-36.75 675,-181.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.25,-36.75 445.25,-181.75 675,-181.75 675,-36.75 445.25,-36.75"/>
|
||||
<polygon fill="none" stroke="black" points="445.25,-157.25 445.25,-181.75 675,-181.75 675,-157.25 445.25,-157.25"/>
|
||||
<text text-anchor="start" x="551.12" y="-164.45" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="445.25,-132.75 445.25,-157.25 559.75,-157.25 559.75,-132.75 445.25,-132.75"/>
|
||||
<text text-anchor="start" x="449.25" y="-139.95" font-family="arial" font-size="14.00">Screw connector</text>
|
||||
<polygon fill="none" stroke="black" points="559.75,-132.75 559.75,-157.25 598.5,-157.25 598.5,-132.75 559.75,-132.75"/>
|
||||
<text text-anchor="start" x="563.75" y="-139.95" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="598.5,-132.75 598.5,-157.25 638,-157.25 638,-132.75 598.5,-132.75"/>
|
||||
<text text-anchor="start" x="602.5" y="-139.95" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="638,-132.75 638,-157.25 667,-157.25 667,-132.75 638,-132.75"/>
|
||||
<text text-anchor="start" x="642" y="-139.95" font-family="arial" font-size="14.00">GN</text>
|
||||
<polygon fill="#00aa00" stroke="none" points="667,-132.75 667,-157.25 675,-157.25 675,-132.75 667,-132.75"/>
|
||||
<polygon fill="none" stroke="black" points="667,-132.75 667,-157.25 675,-157.25 675,-132.75 667,-132.75"/>
|
||||
<polygon fill="none" stroke="black" points="445.25,-108.75 445.25,-132.75 559.12,-132.75 559.12,-108.75 445.25,-108.75"/>
|
||||
<text text-anchor="start" x="498.06" y="-115.45" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="559.12,-108.75 559.12,-132.75 675,-132.75 675,-108.75 559.12,-108.75"/>
|
||||
<text text-anchor="start" x="612.19" y="-115.45" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="445.25,-84.75 445.25,-108.75 559.12,-108.75 559.12,-84.75 445.25,-84.75"/>
|
||||
<text text-anchor="start" x="498.06" y="-91.45" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="559.12,-84.75 559.12,-108.75 675,-108.75 675,-84.75 559.12,-84.75"/>
|
||||
<text text-anchor="start" x="612.19" y="-91.45" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="445.25,-60.75 445.25,-84.75 559.12,-84.75 559.12,-60.75 445.25,-60.75"/>
|
||||
<text text-anchor="start" x="498.06" y="-67.45" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="559.12,-60.75 559.12,-84.75 675,-84.75 675,-60.75 559.12,-60.75"/>
|
||||
<text text-anchor="start" x="611.81" y="-67.45" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="445.25,-36.75 445.25,-60.75 559.12,-60.75 559.12,-36.75 445.25,-36.75"/>
|
||||
<text text-anchor="start" x="498.06" y="-43.45" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="559.12,-36.75 559.12,-60.75 675,-60.75 675,-36.75 559.12,-36.75"/>
|
||||
<text text-anchor="start" x="611.81" y="-43.45" font-family="arial" font-size="14.00">D</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_1--X1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<g id="edge1" class="edge">
|
||||
<title>AUTOGENERATED_F_1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M321,-152.5C383.26,-152.5 397.63,-121.22 454.66,-117.8"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="455.11,-121.29 465,-117.5 454.9,-114.29 455.11,-121.29"/>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M301.25,-159.25C363.49,-159.25 377.4,-125.27 433.8,-121.16"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="433.86,-124.66 443.73,-120.8 433.61,-117.66 433.86,-124.66"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>AUTOGENERATED_F_2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="321,-117 231,-117 231,-94 321,-94 321,-117"/>
|
||||
<polygon fill="none" stroke="black" points="231,-93.5 231,-116.5 284,-116.5 284,-93.5 231,-93.5"/>
|
||||
<text text-anchor="start" x="235" y="-101.3" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="284,-93.5 284,-116.5 313,-116.5 313,-93.5 284,-93.5"/>
|
||||
<text text-anchor="start" x="288" y="-101.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="transparent" points="313,-93.5 313,-116.5 321,-116.5 321,-93.5 313,-93.5"/>
|
||||
<polygon fill="none" stroke="black" points="313,-93.5 313,-116.5 321,-116.5 321,-93.5 313,-93.5"/>
|
||||
<polygon fill="#ffffff" stroke="black" points="301.25,-122.5 212,-122.5 212,-98 301.25,-98 301.25,-122.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="212,-98 212,-122.5 301.25,-122.5 301.25,-98 212,-98"/>
|
||||
<polygon fill="none" stroke="black" points="212,-98 212,-122.5 265,-122.5 265,-98 212,-98"/>
|
||||
<text text-anchor="start" x="216" y="-105.2" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="265,-98 265,-122.5 293.25,-122.5 293.25,-98 265,-98"/>
|
||||
<text text-anchor="start" x="269" y="-105.2" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="none" points="293.25,-98 293.25,-122.5 301.25,-122.5 301.25,-98 293.25,-98"/>
|
||||
<polygon fill="none" stroke="black" points="293.25,-98 293.25,-122.5 301.25,-122.5 301.25,-98 293.25,-98"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_2--X1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<g id="edge2" class="edge">
|
||||
<title>AUTOGENERATED_F_2:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M321,-105.5C381.71,-105.5 398.93,-94.78 454.88,-93.6"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="455.04,-97.1 465,-93.5 454.96,-90.1 455.04,-97.1"/>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M301.25,-110.25C361.51,-110.25 378.84,-98.39 433.75,-96.9"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="433.78,-100.4 443.73,-96.77 433.69,-93.4 433.78,-100.4"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_3 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node4" class="node">
|
||||
<title>AUTOGENERATED_F_3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="321,-70 231,-70 231,-47 321,-47 321,-70"/>
|
||||
<polygon fill="none" stroke="black" points="231,-46.5 231,-69.5 284,-69.5 284,-46.5 231,-46.5"/>
|
||||
<text text-anchor="start" x="235" y="-54.3" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="284,-46.5 284,-69.5 313,-69.5 313,-46.5 284,-46.5"/>
|
||||
<text text-anchor="start" x="288" y="-54.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="transparent" points="313,-46.5 313,-69.5 321,-69.5 321,-46.5 313,-46.5"/>
|
||||
<polygon fill="none" stroke="black" points="313,-46.5 313,-69.5 321,-69.5 321,-46.5 313,-46.5"/>
|
||||
<polygon fill="#ffffff" stroke="black" points="301.25,-73.5 212,-73.5 212,-49 301.25,-49 301.25,-73.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="212,-49 212,-73.5 301.25,-73.5 301.25,-49 212,-49"/>
|
||||
<polygon fill="none" stroke="black" points="212,-49 212,-73.5 265,-73.5 265,-49 212,-49"/>
|
||||
<text text-anchor="start" x="216" y="-56.2" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="265,-49 265,-73.5 293.25,-73.5 293.25,-49 265,-49"/>
|
||||
<text text-anchor="start" x="269" y="-56.2" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="none" points="293.25,-49 293.25,-73.5 301.25,-73.5 301.25,-49 293.25,-49"/>
|
||||
<polygon fill="none" stroke="black" points="293.25,-49 293.25,-73.5 301.25,-73.5 301.25,-49 293.25,-49"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_3--X1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<g id="edge3" class="edge">
|
||||
<title>AUTOGENERATED_F_3:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M321,-58.5C381.71,-58.5 398.93,-69.22 454.88,-70.4"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="454.96,-73.9 465,-70.5 455.04,-66.9 454.96,-73.9"/>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M301.25,-61.25C361.44,-61.25 378.9,-71.36 433.75,-72.62"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="433.69,-76.12 443.73,-72.73 433.77,-69.12 433.69,-76.12"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_4 -->
|
||||
<g id="node4" class="node">
|
||||
<g id="node5" class="node">
|
||||
<title>AUTOGENERATED_F_4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="321,-23 231,-23 231,0 321,0 321,-23"/>
|
||||
<polygon fill="none" stroke="black" points="231,0.5 231,-22.5 284,-22.5 284,0.5 231,0.5"/>
|
||||
<text text-anchor="start" x="235" y="-7.3" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="284,0.5 284,-22.5 313,-22.5 313,0.5 284,0.5"/>
|
||||
<text text-anchor="start" x="288" y="-7.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="transparent" points="313,0.5 313,-22.5 321,-22.5 321,0.5 313,0.5"/>
|
||||
<polygon fill="none" stroke="black" points="313,0.5 313,-22.5 321,-22.5 321,0.5 313,0.5"/>
|
||||
<polygon fill="#ffffff" stroke="black" points="301.25,-24.5 212,-24.5 212,0 301.25,0 301.25,-24.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="212,0 212,-24.5 301.25,-24.5 301.25,0 212,0"/>
|
||||
<polygon fill="none" stroke="black" points="212,0 212,-24.5 265,-24.5 265,0 212,0"/>
|
||||
<text text-anchor="start" x="216" y="-7.2" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="265,0 265,-24.5 293.25,-24.5 293.25,0 265,0"/>
|
||||
<text text-anchor="start" x="269" y="-7.2" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="none" points="293.25,0 293.25,-24.5 301.25,-24.5 301.25,0 293.25,0"/>
|
||||
<polygon fill="none" stroke="black" points="293.25,0 293.25,-24.5 301.25,-24.5 301.25,0 293.25,0"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_4--X1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<g id="edge4" class="edge">
|
||||
<title>AUTOGENERATED_F_4:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M321,-11.5C383.49,-11.5 397.61,-43.8 455,-47.21"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="454.9,-50.71 465,-47.5 455.11,-43.71 454.9,-50.71"/>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M301.25,-12.25C363.27,-12.25 377.58,-44.46 433.82,-48.37"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="433.62,-51.86 443.73,-48.7 433.86,-44.86 433.62,-51.86"/>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node6" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="87,-206.5 0,-206.5 0,-22.5 87,-22.5 87,-206.5"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-183.5 0.5,-206.5 87.5,-206.5 87.5,-183.5 0.5,-183.5"/>
|
||||
<text text-anchor="start" x="33.5" y="-191.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-160.5 0.5,-183.5 33.5,-183.5 33.5,-160.5 0.5,-160.5"/>
|
||||
<text text-anchor="start" x="9.5" y="-168.3" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="33.5,-160.5 33.5,-183.5 70.5,-183.5 70.5,-160.5 33.5,-160.5"/>
|
||||
<text text-anchor="start" x="42.5" y="-168.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="70.5,-160.5 70.5,-183.5 87.5,-183.5 87.5,-160.5 70.5,-160.5"/>
|
||||
<polygon fill="none" stroke="black" points="70.5,-160.5 70.5,-183.5 87.5,-183.5 87.5,-160.5 70.5,-160.5"/>
|
||||
<text text-anchor="start" x="2.5" y="-147.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="13" y="-128.3" font-family="arial" font-size="14.00">     1:BK    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-120.5 0.5,-122.5 87.5,-122.5 87.5,-120.5 0.5,-120.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-118.5 0.5,-120.5 87.5,-120.5 87.5,-118.5 0.5,-118.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-116.5 0.5,-118.5 87.5,-118.5 87.5,-116.5 0.5,-116.5"/>
|
||||
<text text-anchor="start" x="10.5" y="-103.3" font-family="arial" font-size="14.00">     2:WH    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-95.5 0.5,-97.5 87.5,-97.5 87.5,-95.5 0.5,-95.5"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="0.5,-93.5 0.5,-95.5 87.5,-95.5 87.5,-93.5 0.5,-93.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-91.5 0.5,-93.5 87.5,-93.5 87.5,-91.5 0.5,-91.5"/>
|
||||
<text text-anchor="start" x="12.5" y="-78.3" font-family="arial" font-size="14.00">     3:BU    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-70.5 0.5,-72.5 87.5,-72.5 87.5,-70.5 0.5,-70.5"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="0.5,-68.5 0.5,-70.5 87.5,-70.5 87.5,-68.5 0.5,-68.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-66.5 0.5,-68.5 87.5,-68.5 87.5,-66.5 0.5,-66.5"/>
|
||||
<text text-anchor="start" x="12.5" y="-53.3" font-family="arial" font-size="14.00">     4:BN    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-45.5 0.5,-47.5 87.5,-47.5 87.5,-45.5 0.5,-45.5"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="0.5,-43.5 0.5,-45.5 87.5,-45.5 87.5,-43.5 0.5,-43.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-41.5 0.5,-43.5 87.5,-43.5 87.5,-41.5 0.5,-41.5"/>
|
||||
<text text-anchor="start" x="2.5" y="-28.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="68,-215.75 0,-215.75 0,-22.75 68,-22.75 68,-215.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-22.75 0,-215.75 68,-215.75 68,-22.75 0,-22.75"/>
|
||||
<polygon fill="none" stroke="black" points="0,-191.25 0,-215.75 68,-215.75 68,-191.25 0,-191.25"/>
|
||||
<text text-anchor="start" x="22.75" y="-198.45" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-166.75 0,-191.25 26.17,-191.25 26.17,-166.75 0,-166.75"/>
|
||||
<text text-anchor="start" x="5.58" y="-173.95" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="26.17,-166.75 26.17,-191.25 56.83,-191.25 56.83,-166.75 26.17,-166.75"/>
|
||||
<text text-anchor="start" x="31.75" y="-173.95" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="none" points="56.83,-166.75 56.83,-191.25 68,-191.25 68,-166.75 56.83,-166.75"/>
|
||||
<polygon fill="none" stroke="black" points="56.83,-166.75 56.83,-191.25 68,-191.25 68,-166.75 56.83,-166.75"/>
|
||||
<text text-anchor="start" x="1.63" y="-151.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1.63" y="-131.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="8.63" y="-131.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="18.25" y="-131.45" font-family="arial" font-size="14.00">1:BK</text>
|
||||
<text text-anchor="start" x="55.63" y="-131.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="62.62" y="-131.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-124.75 0,-126.75 68,-126.75 68,-124.75 0,-124.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-122.75 0,-124.75 68,-124.75 68,-122.75 0,-122.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-120.75 0,-122.75 68,-122.75 68,-120.75 0,-120.75"/>
|
||||
<text text-anchor="start" x="1.63" y="-105.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="8.63" y="-105.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="16" y="-105.45" font-family="arial" font-size="14.00">2:WH</text>
|
||||
<text text-anchor="start" x="55.63" y="-105.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="62.62" y="-105.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-98.75 0,-100.75 68,-100.75 68,-98.75 0,-98.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-96.75 0,-98.75 68,-98.75 68,-96.75 0,-96.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-94.75 0,-96.75 68,-96.75 68,-94.75 0,-94.75"/>
|
||||
<text text-anchor="start" x="1.63" y="-79.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="8.63" y="-79.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="18.25" y="-79.45" font-family="arial" font-size="14.00">3:BU</text>
|
||||
<text text-anchor="start" x="55.63" y="-79.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="62.62" y="-79.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-72.75 0,-74.75 68,-74.75 68,-72.75 0,-72.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-70.75 0,-72.75 68,-72.75 68,-70.75 0,-70.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-68.75 0,-70.75 68,-70.75 68,-68.75 0,-68.75"/>
|
||||
<text text-anchor="start" x="1.63" y="-53.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="8.63" y="-53.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="18.25" y="-53.45" font-family="arial" font-size="14.00">4:BN</text>
|
||||
<text text-anchor="start" x="55.63" y="-53.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="62.62" y="-53.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-46.75 0,-48.75 68,-48.75 68,-46.75 0,-46.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-44.75 0,-46.75 68,-46.75 68,-44.75 0,-44.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-42.75 0,-44.75 68,-44.75 68,-42.75 0,-42.75"/>
|
||||
<text text-anchor="start" x="1.63" y="-27.45" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<g id="edge5" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-117.5C154.53,-118.78 167.21,-151.78 231,-150.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-119.5C152.66,-119.5 165.34,-152.5 231,-152.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-121.5C150.79,-120.22 163.47,-153.22 231,-154.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-121.75C135.81,-123.1 147.98,-158.6 212,-157.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-123.75C133.92,-123.75 146.09,-159.25 212,-159.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-125.75C132.02,-124.4 144.19,-159.9 212,-161.25"/>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-92.5C152.34,-92.86 167.96,-103.86 231,-103.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M87,-94.5C151.19,-94.5 166.81,-105.5 231,-105.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-96.5C150.04,-96.14 165.66,-107.14 231,-107.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-95.75C133.5,-96.19 149.01,-108.69 212,-108.25"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M68,-97.75C132.25,-97.75 147.76,-110.25 212,-110.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-99.75C130.99,-99.31 146.5,-111.81 212,-112.25"/>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_3 -->
|
||||
<g id="edge3" class="edge">
|
||||
<g id="edge7" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-67.5C150.04,-67.86 165.66,-56.86 231,-56.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M87,-69.5C151.19,-69.5 166.81,-58.5 231,-58.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-71.5C152.34,-71.14 167.96,-60.14 231,-60.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-69.75C131.05,-70.09 146.71,-59.59 212,-59.25"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M68,-71.75C132.17,-71.75 147.83,-61.25 212,-61.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-73.75C133.28,-73.41 148.94,-62.91 212,-63.25"/>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_4 -->
|
||||
<g id="edge4" class="edge">
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-42.5C150.79,-43.78 163.47,-10.78 231,-9.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M87,-44.5C152.66,-44.5 165.34,-11.5 231,-11.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-46.5C154.53,-45.22 167.21,-12.22 231,-13.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-43.75C131.83,-45.05 144.42,-11.55 212,-10.25"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M68,-45.75C133.7,-45.75 146.29,-12.25 212,-12.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-47.75C135.58,-46.45 148.17,-12.95 212,-14.25"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-125.75C45.33,-125.75 22.66,-125.75 0,-125.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-123.75C45.33,-123.75 22.66,-123.75 0,-123.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-121.75C45.33,-121.75 22.66,-121.75 0,-121.75"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-99.75C45.33,-99.75 22.66,-99.75 0,-99.75"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M68,-97.75C45.33,-97.75 22.66,-97.75 0,-97.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-95.75C45.33,-95.75 22.66,-95.75 0,-95.75"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-73.75C45.33,-73.75 22.66,-73.75 0,-73.75"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M68,-71.75C45.33,-71.75 22.66,-71.75 0,-71.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-69.75C45.33,-69.75 22.66,-69.75 0,-69.75"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-47.75C45.33,-47.75 22.66,-47.75 0,-47.75"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M68,-45.75C45.33,-45.75 22.66,-45.75 0,-45.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-43.75C45.33,-43.75 22.66,-43.75 0,-43.75"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
@ -211,33 +261,29 @@
|
||||
<div id="bom">
|
||||
<table class="bom">
|
||||
<tr>
|
||||
<th class="bom_col_id">Id</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_#">#</th>
|
||||
<th class="bom_col_qty">Qty</th>
|
||||
<th class="bom_col_unit">Unit</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_designators">Designators</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">1</td>
|
||||
<td class="bom_col_description">Cable, 4 wires, BK</td>
|
||||
<td class="bom_col_qty">0</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">2</td>
|
||||
<td class="bom_col_description">Connector, Ferrule, GY</td>
|
||||
<td class="bom_col_#">1</td>
|
||||
<td class="bom_col_qty">4</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, Ferrule, GY</td>
|
||||
<td class="bom_col_designators"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">3</td>
|
||||
<td class="bom_col_description">Connector, Screw connector, male, 4 pins, GN</td>
|
||||
<td class="bom_col_#">2</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, Screw connector, male, 4 pins, GN</td>
|
||||
<td class="bom_col_designators">X1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_#">3</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_description">Cable, 4 wires, BK</td>
|
||||
<td class="bom_col_designators">W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
BIN
examples/ex11.png
generated
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 34 KiB |
292
examples/ex11.svg
generated
@ -1,172 +1,222 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="703pt" height="215pt"
|
||||
viewBox="0.00 0.00 703.00 214.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 210.5)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-210.5 699,-210.5 699,4 -4,4"/>
|
||||
<svg width="683pt" height="224pt"
|
||||
viewBox="0.00 0.00 683.00 223.75" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 219.75)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-219.75 679,-219.75 679,4 -4,4"/>
|
||||
<!-- AUTOGENERATED_F_1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>AUTOGENERATED_F_1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="321,-164 231,-164 231,-141 321,-141 321,-164"/>
|
||||
<polygon fill="none" stroke="black" points="231,-140.5 231,-163.5 284,-163.5 284,-140.5 231,-140.5"/>
|
||||
<text text-anchor="start" x="235" y="-148.3" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="284,-140.5 284,-163.5 313,-163.5 313,-140.5 284,-140.5"/>
|
||||
<text text-anchor="start" x="288" y="-148.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="transparent" points="313,-140.5 313,-163.5 321,-163.5 321,-140.5 313,-140.5"/>
|
||||
<polygon fill="none" stroke="black" points="313,-140.5 313,-163.5 321,-163.5 321,-140.5 313,-140.5"/>
|
||||
<polygon fill="#ffffff" stroke="black" points="301.25,-171.5 212,-171.5 212,-147 301.25,-147 301.25,-171.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="212,-147 212,-171.5 301.25,-171.5 301.25,-147 212,-147"/>
|
||||
<polygon fill="none" stroke="black" points="212,-147 212,-171.5 265,-171.5 265,-147 212,-147"/>
|
||||
<text text-anchor="start" x="216" y="-154.2" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="265,-147 265,-171.5 293.25,-171.5 293.25,-147 265,-147"/>
|
||||
<text text-anchor="start" x="269" y="-154.2" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="none" points="293.25,-147 293.25,-171.5 301.25,-171.5 301.25,-147 293.25,-147"/>
|
||||
<polygon fill="none" stroke="black" points="293.25,-147 293.25,-171.5 301.25,-171.5 301.25,-147 293.25,-147"/>
|
||||
</g>
|
||||
<!-- X1 -->
|
||||
<g id="node5" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="695,-174.5 465,-174.5 465,-36.5 695,-36.5 695,-174.5"/>
|
||||
<polygon fill="none" stroke="black" points="465,-151.5 465,-174.5 695,-174.5 695,-151.5 465,-151.5"/>
|
||||
<text text-anchor="start" x="571" y="-159.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="465,-128.5 465,-151.5 578,-151.5 578,-128.5 465,-128.5"/>
|
||||
<text text-anchor="start" x="469" y="-136.3" font-family="arial" font-size="14.00">Screw connector</text>
|
||||
<polygon fill="none" stroke="black" points="578,-128.5 578,-151.5 617,-151.5 617,-128.5 578,-128.5"/>
|
||||
<text text-anchor="start" x="582" y="-136.3" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="617,-128.5 617,-151.5 657,-151.5 657,-128.5 617,-128.5"/>
|
||||
<text text-anchor="start" x="621" y="-136.3" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="657,-128.5 657,-151.5 687,-151.5 687,-128.5 657,-128.5"/>
|
||||
<text text-anchor="start" x="661" y="-136.3" font-family="arial" font-size="14.00">GN</text>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="687,-128.5 687,-151.5 695,-151.5 695,-128.5 687,-128.5"/>
|
||||
<polygon fill="none" stroke="black" points="687,-128.5 687,-151.5 695,-151.5 695,-128.5 687,-128.5"/>
|
||||
<polygon fill="none" stroke="black" points="465,-105.5 465,-128.5 579,-128.5 579,-105.5 465,-105.5"/>
|
||||
<text text-anchor="start" x="518" y="-113.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="579,-105.5 579,-128.5 695,-128.5 695,-105.5 579,-105.5"/>
|
||||
<text text-anchor="start" x="632" y="-113.3" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="465,-82.5 465,-105.5 579,-105.5 579,-82.5 465,-82.5"/>
|
||||
<text text-anchor="start" x="518" y="-90.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="579,-82.5 579,-105.5 695,-105.5 695,-82.5 579,-82.5"/>
|
||||
<text text-anchor="start" x="632" y="-90.3" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="465,-59.5 465,-82.5 579,-82.5 579,-59.5 465,-59.5"/>
|
||||
<text text-anchor="start" x="518" y="-67.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="579,-59.5 579,-82.5 695,-82.5 695,-59.5 579,-59.5"/>
|
||||
<text text-anchor="start" x="631.5" y="-67.3" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="465,-36.5 465,-59.5 579,-59.5 579,-36.5 465,-36.5"/>
|
||||
<text text-anchor="start" x="518" y="-44.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="579,-36.5 579,-59.5 695,-59.5 695,-36.5 579,-36.5"/>
|
||||
<text text-anchor="start" x="631.5" y="-44.3" font-family="arial" font-size="14.00">D</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="675,-181.75 445.25,-181.75 445.25,-36.75 675,-36.75 675,-181.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.25,-36.75 445.25,-181.75 675,-181.75 675,-36.75 445.25,-36.75"/>
|
||||
<polygon fill="none" stroke="black" points="445.25,-157.25 445.25,-181.75 675,-181.75 675,-157.25 445.25,-157.25"/>
|
||||
<text text-anchor="start" x="551.12" y="-164.45" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="445.25,-132.75 445.25,-157.25 559.75,-157.25 559.75,-132.75 445.25,-132.75"/>
|
||||
<text text-anchor="start" x="449.25" y="-139.95" font-family="arial" font-size="14.00">Screw connector</text>
|
||||
<polygon fill="none" stroke="black" points="559.75,-132.75 559.75,-157.25 598.5,-157.25 598.5,-132.75 559.75,-132.75"/>
|
||||
<text text-anchor="start" x="563.75" y="-139.95" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="598.5,-132.75 598.5,-157.25 638,-157.25 638,-132.75 598.5,-132.75"/>
|
||||
<text text-anchor="start" x="602.5" y="-139.95" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="638,-132.75 638,-157.25 667,-157.25 667,-132.75 638,-132.75"/>
|
||||
<text text-anchor="start" x="642" y="-139.95" font-family="arial" font-size="14.00">GN</text>
|
||||
<polygon fill="#00aa00" stroke="none" points="667,-132.75 667,-157.25 675,-157.25 675,-132.75 667,-132.75"/>
|
||||
<polygon fill="none" stroke="black" points="667,-132.75 667,-157.25 675,-157.25 675,-132.75 667,-132.75"/>
|
||||
<polygon fill="none" stroke="black" points="445.25,-108.75 445.25,-132.75 559.12,-132.75 559.12,-108.75 445.25,-108.75"/>
|
||||
<text text-anchor="start" x="498.06" y="-115.45" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="559.12,-108.75 559.12,-132.75 675,-132.75 675,-108.75 559.12,-108.75"/>
|
||||
<text text-anchor="start" x="612.19" y="-115.45" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="445.25,-84.75 445.25,-108.75 559.12,-108.75 559.12,-84.75 445.25,-84.75"/>
|
||||
<text text-anchor="start" x="498.06" y="-91.45" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="559.12,-84.75 559.12,-108.75 675,-108.75 675,-84.75 559.12,-84.75"/>
|
||||
<text text-anchor="start" x="612.19" y="-91.45" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="445.25,-60.75 445.25,-84.75 559.12,-84.75 559.12,-60.75 445.25,-60.75"/>
|
||||
<text text-anchor="start" x="498.06" y="-67.45" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="559.12,-60.75 559.12,-84.75 675,-84.75 675,-60.75 559.12,-60.75"/>
|
||||
<text text-anchor="start" x="611.81" y="-67.45" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="445.25,-36.75 445.25,-60.75 559.12,-60.75 559.12,-36.75 445.25,-36.75"/>
|
||||
<text text-anchor="start" x="498.06" y="-43.45" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="559.12,-36.75 559.12,-60.75 675,-60.75 675,-36.75 559.12,-36.75"/>
|
||||
<text text-anchor="start" x="611.81" y="-43.45" font-family="arial" font-size="14.00">D</text>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_1--X1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<g id="edge1" class="edge">
|
||||
<title>AUTOGENERATED_F_1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M321,-152.5C383.26,-152.5 397.63,-121.22 454.66,-117.8"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="455.11,-121.29 465,-117.5 454.9,-114.29 455.11,-121.29"/>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M301.25,-159.25C363.49,-159.25 377.4,-125.27 433.8,-121.16"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="433.86,-124.66 443.73,-120.8 433.61,-117.66 433.86,-124.66"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>AUTOGENERATED_F_2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="321,-117 231,-117 231,-94 321,-94 321,-117"/>
|
||||
<polygon fill="none" stroke="black" points="231,-93.5 231,-116.5 284,-116.5 284,-93.5 231,-93.5"/>
|
||||
<text text-anchor="start" x="235" y="-101.3" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="284,-93.5 284,-116.5 313,-116.5 313,-93.5 284,-93.5"/>
|
||||
<text text-anchor="start" x="288" y="-101.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="transparent" points="313,-93.5 313,-116.5 321,-116.5 321,-93.5 313,-93.5"/>
|
||||
<polygon fill="none" stroke="black" points="313,-93.5 313,-116.5 321,-116.5 321,-93.5 313,-93.5"/>
|
||||
<polygon fill="#ffffff" stroke="black" points="301.25,-122.5 212,-122.5 212,-98 301.25,-98 301.25,-122.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="212,-98 212,-122.5 301.25,-122.5 301.25,-98 212,-98"/>
|
||||
<polygon fill="none" stroke="black" points="212,-98 212,-122.5 265,-122.5 265,-98 212,-98"/>
|
||||
<text text-anchor="start" x="216" y="-105.2" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="265,-98 265,-122.5 293.25,-122.5 293.25,-98 265,-98"/>
|
||||
<text text-anchor="start" x="269" y="-105.2" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="none" points="293.25,-98 293.25,-122.5 301.25,-122.5 301.25,-98 293.25,-98"/>
|
||||
<polygon fill="none" stroke="black" points="293.25,-98 293.25,-122.5 301.25,-122.5 301.25,-98 293.25,-98"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_2--X1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<g id="edge2" class="edge">
|
||||
<title>AUTOGENERATED_F_2:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M321,-105.5C381.71,-105.5 398.93,-94.78 454.88,-93.6"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="455.04,-97.1 465,-93.5 454.96,-90.1 455.04,-97.1"/>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M301.25,-110.25C361.51,-110.25 378.84,-98.39 433.75,-96.9"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="433.78,-100.4 443.73,-96.77 433.69,-93.4 433.78,-100.4"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_3 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node4" class="node">
|
||||
<title>AUTOGENERATED_F_3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="321,-70 231,-70 231,-47 321,-47 321,-70"/>
|
||||
<polygon fill="none" stroke="black" points="231,-46.5 231,-69.5 284,-69.5 284,-46.5 231,-46.5"/>
|
||||
<text text-anchor="start" x="235" y="-54.3" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="284,-46.5 284,-69.5 313,-69.5 313,-46.5 284,-46.5"/>
|
||||
<text text-anchor="start" x="288" y="-54.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="transparent" points="313,-46.5 313,-69.5 321,-69.5 321,-46.5 313,-46.5"/>
|
||||
<polygon fill="none" stroke="black" points="313,-46.5 313,-69.5 321,-69.5 321,-46.5 313,-46.5"/>
|
||||
<polygon fill="#ffffff" stroke="black" points="301.25,-73.5 212,-73.5 212,-49 301.25,-49 301.25,-73.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="212,-49 212,-73.5 301.25,-73.5 301.25,-49 212,-49"/>
|
||||
<polygon fill="none" stroke="black" points="212,-49 212,-73.5 265,-73.5 265,-49 212,-49"/>
|
||||
<text text-anchor="start" x="216" y="-56.2" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="265,-49 265,-73.5 293.25,-73.5 293.25,-49 265,-49"/>
|
||||
<text text-anchor="start" x="269" y="-56.2" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="none" points="293.25,-49 293.25,-73.5 301.25,-73.5 301.25,-49 293.25,-49"/>
|
||||
<polygon fill="none" stroke="black" points="293.25,-49 293.25,-73.5 301.25,-73.5 301.25,-49 293.25,-49"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_3--X1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<g id="edge3" class="edge">
|
||||
<title>AUTOGENERATED_F_3:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M321,-58.5C381.71,-58.5 398.93,-69.22 454.88,-70.4"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="454.96,-73.9 465,-70.5 455.04,-66.9 454.96,-73.9"/>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M301.25,-61.25C361.44,-61.25 378.9,-71.36 433.75,-72.62"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="433.69,-76.12 443.73,-72.73 433.77,-69.12 433.69,-76.12"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_4 -->
|
||||
<g id="node4" class="node">
|
||||
<g id="node5" class="node">
|
||||
<title>AUTOGENERATED_F_4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="321,-23 231,-23 231,0 321,0 321,-23"/>
|
||||
<polygon fill="none" stroke="black" points="231,0.5 231,-22.5 284,-22.5 284,0.5 231,0.5"/>
|
||||
<text text-anchor="start" x="235" y="-7.3" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="284,0.5 284,-22.5 313,-22.5 313,0.5 284,0.5"/>
|
||||
<text text-anchor="start" x="288" y="-7.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="transparent" points="313,0.5 313,-22.5 321,-22.5 321,0.5 313,0.5"/>
|
||||
<polygon fill="none" stroke="black" points="313,0.5 313,-22.5 321,-22.5 321,0.5 313,0.5"/>
|
||||
<polygon fill="#ffffff" stroke="black" points="301.25,-24.5 212,-24.5 212,0 301.25,0 301.25,-24.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="212,0 212,-24.5 301.25,-24.5 301.25,0 212,0"/>
|
||||
<polygon fill="none" stroke="black" points="212,0 212,-24.5 265,-24.5 265,0 212,0"/>
|
||||
<text text-anchor="start" x="216" y="-7.2" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="265,0 265,-24.5 293.25,-24.5 293.25,0 265,0"/>
|
||||
<text text-anchor="start" x="269" y="-7.2" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="none" points="293.25,0 293.25,-24.5 301.25,-24.5 301.25,0 293.25,0"/>
|
||||
<polygon fill="none" stroke="black" points="293.25,0 293.25,-24.5 301.25,-24.5 301.25,0 293.25,0"/>
|
||||
</g>
|
||||
<!-- AUTOGENERATED_F_4--X1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<g id="edge4" class="edge">
|
||||
<title>AUTOGENERATED_F_4:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M321,-11.5C383.49,-11.5 397.61,-43.8 455,-47.21"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="454.9,-50.71 465,-47.5 455.11,-43.71 454.9,-50.71"/>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M301.25,-12.25C363.27,-12.25 377.58,-44.46 433.82,-48.37"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="433.62,-51.86 443.73,-48.7 433.86,-44.86 433.62,-51.86"/>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node6" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="87,-206.5 0,-206.5 0,-22.5 87,-22.5 87,-206.5"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-183.5 0.5,-206.5 87.5,-206.5 87.5,-183.5 0.5,-183.5"/>
|
||||
<text text-anchor="start" x="33.5" y="-191.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-160.5 0.5,-183.5 33.5,-183.5 33.5,-160.5 0.5,-160.5"/>
|
||||
<text text-anchor="start" x="9.5" y="-168.3" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="33.5,-160.5 33.5,-183.5 70.5,-183.5 70.5,-160.5 33.5,-160.5"/>
|
||||
<text text-anchor="start" x="42.5" y="-168.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="70.5,-160.5 70.5,-183.5 87.5,-183.5 87.5,-160.5 70.5,-160.5"/>
|
||||
<polygon fill="none" stroke="black" points="70.5,-160.5 70.5,-183.5 87.5,-183.5 87.5,-160.5 70.5,-160.5"/>
|
||||
<text text-anchor="start" x="2.5" y="-147.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="13" y="-128.3" font-family="arial" font-size="14.00">     1:BK    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-120.5 0.5,-122.5 87.5,-122.5 87.5,-120.5 0.5,-120.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-118.5 0.5,-120.5 87.5,-120.5 87.5,-118.5 0.5,-118.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-116.5 0.5,-118.5 87.5,-118.5 87.5,-116.5 0.5,-116.5"/>
|
||||
<text text-anchor="start" x="10.5" y="-103.3" font-family="arial" font-size="14.00">     2:WH    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-95.5 0.5,-97.5 87.5,-97.5 87.5,-95.5 0.5,-95.5"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="0.5,-93.5 0.5,-95.5 87.5,-95.5 87.5,-93.5 0.5,-93.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-91.5 0.5,-93.5 87.5,-93.5 87.5,-91.5 0.5,-91.5"/>
|
||||
<text text-anchor="start" x="12.5" y="-78.3" font-family="arial" font-size="14.00">     3:BU    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-70.5 0.5,-72.5 87.5,-72.5 87.5,-70.5 0.5,-70.5"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="0.5,-68.5 0.5,-70.5 87.5,-70.5 87.5,-68.5 0.5,-68.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-66.5 0.5,-68.5 87.5,-68.5 87.5,-66.5 0.5,-66.5"/>
|
||||
<text text-anchor="start" x="12.5" y="-53.3" font-family="arial" font-size="14.00">     4:BN    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-45.5 0.5,-47.5 87.5,-47.5 87.5,-45.5 0.5,-45.5"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="0.5,-43.5 0.5,-45.5 87.5,-45.5 87.5,-43.5 0.5,-43.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0.5,-41.5 0.5,-43.5 87.5,-43.5 87.5,-41.5 0.5,-41.5"/>
|
||||
<text text-anchor="start" x="2.5" y="-28.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="68,-215.75 0,-215.75 0,-22.75 68,-22.75 68,-215.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-22.75 0,-215.75 68,-215.75 68,-22.75 0,-22.75"/>
|
||||
<polygon fill="none" stroke="black" points="0,-191.25 0,-215.75 68,-215.75 68,-191.25 0,-191.25"/>
|
||||
<text text-anchor="start" x="22.75" y="-198.45" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-166.75 0,-191.25 26.17,-191.25 26.17,-166.75 0,-166.75"/>
|
||||
<text text-anchor="start" x="5.58" y="-173.95" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="26.17,-166.75 26.17,-191.25 56.83,-191.25 56.83,-166.75 26.17,-166.75"/>
|
||||
<text text-anchor="start" x="31.75" y="-173.95" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="none" points="56.83,-166.75 56.83,-191.25 68,-191.25 68,-166.75 56.83,-166.75"/>
|
||||
<polygon fill="none" stroke="black" points="56.83,-166.75 56.83,-191.25 68,-191.25 68,-166.75 56.83,-166.75"/>
|
||||
<text text-anchor="start" x="1.63" y="-151.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1.63" y="-131.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="8.63" y="-131.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="18.25" y="-131.45" font-family="arial" font-size="14.00">1:BK</text>
|
||||
<text text-anchor="start" x="55.63" y="-131.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="62.62" y="-131.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-124.75 0,-126.75 68,-126.75 68,-124.75 0,-124.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-122.75 0,-124.75 68,-124.75 68,-122.75 0,-122.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-120.75 0,-122.75 68,-122.75 68,-120.75 0,-120.75"/>
|
||||
<text text-anchor="start" x="1.63" y="-105.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="8.63" y="-105.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="16" y="-105.45" font-family="arial" font-size="14.00">2:WH</text>
|
||||
<text text-anchor="start" x="55.63" y="-105.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="62.62" y="-105.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-98.75 0,-100.75 68,-100.75 68,-98.75 0,-98.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-96.75 0,-98.75 68,-98.75 68,-96.75 0,-96.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-94.75 0,-96.75 68,-96.75 68,-94.75 0,-94.75"/>
|
||||
<text text-anchor="start" x="1.63" y="-79.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="8.63" y="-79.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="18.25" y="-79.45" font-family="arial" font-size="14.00">3:BU</text>
|
||||
<text text-anchor="start" x="55.63" y="-79.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="62.62" y="-79.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-72.75 0,-74.75 68,-74.75 68,-72.75 0,-72.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-70.75 0,-72.75 68,-72.75 68,-70.75 0,-70.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-68.75 0,-70.75 68,-70.75 68,-68.75 0,-68.75"/>
|
||||
<text text-anchor="start" x="1.63" y="-53.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="8.63" y="-53.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="18.25" y="-53.45" font-family="arial" font-size="14.00">4:BN</text>
|
||||
<text text-anchor="start" x="55.63" y="-53.45" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="62.62" y="-53.45" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-46.75 0,-48.75 68,-48.75 68,-46.75 0,-46.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-44.75 0,-46.75 68,-46.75 68,-44.75 0,-44.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-42.75 0,-44.75 68,-44.75 68,-42.75 0,-42.75"/>
|
||||
<text text-anchor="start" x="1.63" y="-27.45" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<g id="edge5" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-117.5C154.53,-118.78 167.21,-151.78 231,-150.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-119.5C152.66,-119.5 165.34,-152.5 231,-152.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-121.5C150.79,-120.22 163.47,-153.22 231,-154.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-121.75C135.81,-123.1 147.98,-158.6 212,-157.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-123.75C133.92,-123.75 146.09,-159.25 212,-159.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-125.75C132.02,-124.4 144.19,-159.9 212,-161.25"/>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-92.5C152.34,-92.86 167.96,-103.86 231,-103.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M87,-94.5C151.19,-94.5 166.81,-105.5 231,-105.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-96.5C150.04,-96.14 165.66,-107.14 231,-107.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-95.75C133.5,-96.19 149.01,-108.69 212,-108.25"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M68,-97.75C132.25,-97.75 147.76,-110.25 212,-110.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-99.75C130.99,-99.31 146.5,-111.81 212,-112.25"/>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_3 -->
|
||||
<g id="edge3" class="edge">
|
||||
<g id="edge7" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-67.5C150.04,-67.86 165.66,-56.86 231,-56.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M87,-69.5C151.19,-69.5 166.81,-58.5 231,-58.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-71.5C152.34,-71.14 167.96,-60.14 231,-60.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-69.75C131.05,-70.09 146.71,-59.59 212,-59.25"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M68,-71.75C132.17,-71.75 147.83,-61.25 212,-61.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-73.75C133.28,-73.41 148.94,-62.91 212,-63.25"/>
|
||||
</g>
|
||||
<!-- W1--AUTOGENERATED_F_4 -->
|
||||
<g id="edge4" class="edge">
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-42.5C150.79,-43.78 163.47,-10.78 231,-9.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M87,-44.5C152.66,-44.5 165.34,-11.5 231,-11.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-46.5C154.53,-45.22 167.21,-12.22 231,-13.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-43.75C131.83,-45.05 144.42,-11.55 212,-10.25"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M68,-45.75C133.7,-45.75 146.29,-12.25 212,-12.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-47.75C135.58,-46.45 148.17,-12.95 212,-14.25"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-125.75C45.33,-125.75 22.66,-125.75 0,-125.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-123.75C45.33,-123.75 22.66,-123.75 0,-123.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-121.75C45.33,-121.75 22.66,-121.75 0,-121.75"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-99.75C45.33,-99.75 22.66,-99.75 0,-99.75"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M68,-97.75C45.33,-97.75 22.66,-97.75 0,-97.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-95.75C45.33,-95.75 22.66,-95.75 0,-95.75"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-73.75C45.33,-73.75 22.66,-73.75 0,-73.75"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M68,-71.75C45.33,-71.75 22.66,-71.75 0,-71.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-69.75C45.33,-69.75 22.66,-69.75 0,-69.75"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-47.75C45.33,-47.75 22.66,-47.75 0,-47.75"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M68,-45.75C45.33,-45.75 22.66,-45.75 0,-45.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M68,-43.75C45.33,-43.75 22.66,-43.75 0,-43.75"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 16 KiB |
4
examples/ex11.tsv
generated
Normal file
@ -0,0 +1,4 @@
|
||||
# Qty Description Designators
|
||||
1 4 Connector, Ferrule, GY
|
||||
2 1 Connector, Screw connector, male, 4 pins, GN X1
|
||||
3 1 Cable, 4 wires, BK W1
|
||||
|
64
examples/ex11_wv_gvpr.gvpr
Normal file
@ -0,0 +1,64 @@
|
||||
/*******************************************************************
|
||||
|
||||
see https://forum.graphviz.org/t/straitening-one-line-throu-a-table/2196 and https://forum.graphviz.org/t/way-of-drawing-a-black-circle-inside-a-table-field/2273/12
|
||||
input must include pos values (must be output from one of the engines w/ -Tdot)#
|
||||
Thanks to steveroush and FeRDNYC
|
||||
|
||||
*******************************************************************/
|
||||
BEG_G{
|
||||
double x1,y1,x2,y2,x3,y3,x4,y4;
|
||||
string ptSize, tok[int], pt[];
|
||||
int cnt, circ, i;
|
||||
node_t aNode;
|
||||
|
||||
circ=0;
|
||||
|
||||
/***************************************
|
||||
$G.bb="";
|
||||
$G.nodesep="";
|
||||
$G.ranksep="";
|
||||
$G.splines="true";
|
||||
****************************************/
|
||||
}
|
||||
|
||||
// This removes the label text but keeps the position
|
||||
E[noLabel] {
|
||||
$.label=""; // remove pesky label
|
||||
// $.lp=""; // remove peskier label pos
|
||||
}
|
||||
|
||||
E[straight] {
|
||||
cnt=tokens($.pos,tok," ");
|
||||
$.oldpos=$.pos;
|
||||
x1 = xOf(tok[0]);
|
||||
y1 = yOf(tok[0]);
|
||||
x4 = xOf(tok[cnt-1]);
|
||||
y4 = yOf(tok[cnt-1]);
|
||||
x2 = x1 + (x4-x1)/3.;
|
||||
y2 = y1 + (y4-y1)/3.;
|
||||
x3 = x1 + 2.*(x4-x1)/3.;
|
||||
y3 = y1 + 2.*(y4-y1)/3.;
|
||||
pos=sprintf("%.3f,%.3f %.3f,%.3f %.3f,%.3f %.3f,%.3f", x1,y1, x2,y2, x3,y3, x4,y4);
|
||||
$.label=""; // remove pesky label
|
||||
$.lp=""; // remove peskier label pos
|
||||
|
||||
if (hasAttr($, "addPTS") && $.addPTS!="" && $.colorPTS!=""){
|
||||
// now we place point nodes at the edge ends
|
||||
pt[1] = tok[0];
|
||||
pt[2] = tok[cnt-1];
|
||||
ptSize=$.addPTS;
|
||||
for (pt[i]) {
|
||||
if (i==2 && pt[1]==pt[2])
|
||||
continue;
|
||||
aNode=node($G, "__CIRCLE__" + (string)++circ);
|
||||
aNode.pos=pt[i];
|
||||
aNode.shape="point";
|
||||
aNode.width=ptSize;
|
||||
aNode.height=ptSize;
|
||||
aNode.style="filled";
|
||||
aNode.fillcolor=$.colorPTS;
|
||||
aNode.color=$.colorPTS;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
626
examples/ex12.gv
generated
@ -1,269 +1,401 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4-dev
|
||||
// Graph generated by WireViz 0.4-dev251
|
||||
// https://github.com/formatc1702/WireViz
|
||||
graph [bgcolor="#FFFFFF" fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor="#FFFFFF" fontname=arial height=0 margin=0 shape=none style=filled width=0]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Dupont 2.54mm</td>
|
||||
<td balign="left">male</td>
|
||||
<td balign="left">5-pin</td>
|
||||
<td balign="left">BK</td>
|
||||
<td balign="left" bgcolor="#000000" width="4"></td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p3l">3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p4l">4</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p5l">5</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Dupont 2.54mm</td>
|
||||
<td>male</td>
|
||||
<td>5-pin</td>
|
||||
<td>BK</td>
|
||||
<td bgcolor="#000000" sides="TBLR"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p3l">3</td>
|
||||
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p4l">4</td>
|
||||
|
||||
[]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p5l">5</td>
|
||||
|
||||
[]
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
X2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">X2</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">Dupont 2.54mm</td>
|
||||
<td balign="left">female</td>
|
||||
<td balign="left">5-pin</td>
|
||||
<td balign="left">BK</td>
|
||||
<td balign="left" bgcolor="#000000" width="4"></td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p3r">3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p4r">4</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p5r">5</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Dupont 2.54mm</td>
|
||||
<td>female</td>
|
||||
<td>5-pin</td>
|
||||
<td>BK</td>
|
||||
<td bgcolor="#000000" sides="TBLR"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
|
||||
[]
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
[]
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
[]
|
||||
<td port="p3r">3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
[]
|
||||
<td port="p4r">4</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
[]
|
||||
<td port="p5r">5</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
> shape=box style=filled]
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>4x</td>
|
||||
<td>0.2 m</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> </td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>RD</td>
|
||||
<td> </td>
|
||||
<td align="right">X1:1 </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w1">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> </td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>BK</td>
|
||||
<td> </td>
|
||||
<td align="right">X1:2 </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w2">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> </td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>BU</td>
|
||||
<td> </td>
|
||||
<td align="right">X1:3 </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w3">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> </td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>GN</td>
|
||||
<td> </td>
|
||||
<td align="right">X1:4 </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w4">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#FF0000:#000000"]
|
||||
W1:w1:e -- X1:p1l:w
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
W1:w2:e -- X1:p2l:w
|
||||
edge [color="#000000:#0066ff:#000000"]
|
||||
edge [color="#000000:#0066FF:#000000"]
|
||||
W1:w3:e -- X1:p3l:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
edge [color="#000000:#00AA00:#000000"]
|
||||
W1:w4:e -- X1:p4l:w
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">W1</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">4x</td>
|
||||
<td balign="left">0.2 m</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td><!-- 1_in --></td>
|
||||
<td>
|
||||
RD
|
||||
</td>
|
||||
<td>X1:1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff0000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><!-- 2_in --></td>
|
||||
<td>
|
||||
BK
|
||||
</td>
|
||||
<td>X1:2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><!-- 3_in --></td>
|
||||
<td>
|
||||
BU
|
||||
</td>
|
||||
<td>X1:3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w3" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#0066ff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><!-- 4_in --></td>
|
||||
<td>
|
||||
GN
|
||||
</td>
|
||||
<td>X1:4</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w4" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#00ff00" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
W1:w1:e -- W1:w1:w [color="#000000:#FF0000:#000000" straight=straight]
|
||||
W1:w2:e -- W1:w2:w [color="#000000:#000000:#000000" straight=straight]
|
||||
W1:w3:e -- W1:w3:w [color="#000000:#0066FF:#000000" straight=straight]
|
||||
W1:w4:e -- W1:w4:w [color="#000000:#00AA00:#000000" straight=straight]
|
||||
W2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>W2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>4x</td>
|
||||
<td>0.2 m</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X2:1</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>RD</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w1">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X2:2</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>BK</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w2">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X2:3</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>BU</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w3">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X2:4</td>
|
||||
<td> </td>
|
||||
<td></td>
|
||||
<td>GN</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="6" height="6" port="w4">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="6" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
> shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#FF0000:#000000"]
|
||||
X2:p1r:e -- W2:w1:w
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
X2:p2r:e -- W2:w2:w
|
||||
edge [color="#000000:#0066ff:#000000"]
|
||||
edge [color="#000000:#0066FF:#000000"]
|
||||
X2:p3r:e -- W2:w3:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
edge [color="#000000:#00AA00:#000000"]
|
||||
X2:p4r:e -- W2:w4:w
|
||||
W2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">W2</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">4x</td>
|
||||
<td balign="left">0.2 m</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td>X2:1</td>
|
||||
<td>
|
||||
RD
|
||||
</td>
|
||||
<td><!-- 1_out --></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w1" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#ff0000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X2:2</td>
|
||||
<td>
|
||||
BK
|
||||
</td>
|
||||
<td><!-- 2_out --></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w2" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X2:3</td>
|
||||
<td>
|
||||
BU
|
||||
</td>
|
||||
<td><!-- 3_out --></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w3" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#0066ff" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>X2:4</td>
|
||||
<td>
|
||||
GN
|
||||
</td>
|
||||
<td><!-- 4_out --></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" border="0" cellspacing="0" cellpadding="0" port="w4" height="6">
|
||||
<table cellspacing="0" cellborder="0" border="0">
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#00ff00" border="0"></td></tr>
|
||||
<tr><td colspan="3" cellpadding="0" height="2" bgcolor="#000000" border="0"></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
|
||||
edge [color="#000000:#000000" dir=forward style=dashed]
|
||||
W2:w1:e -- W2:w1:w [color="#000000:#FF0000:#000000" straight=straight]
|
||||
W2:w2:e -- W2:w2:w [color="#000000:#000000:#000000" straight=straight]
|
||||
W2:w3:e -- W2:w3:w [color="#000000:#0066FF:#000000" straight=straight]
|
||||
W2:w4:e -- W2:w4:w [color="#000000:#00AA00:#000000" straight=straight]
|
||||
edge [color="#000000" dir=forward style=dashed]
|
||||
X1:e -- X2:w
|
||||
}
|
||||
|
||||
421
examples/ex12.html
generated
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="generator" content="WireViz 0.4-dev - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.4-dev251 - https://github.com/formatc1702/WireViz">
|
||||
<title>ex12</title>
|
||||
<style>
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
}
|
||||
|
||||
</style>
|
||||
</head><body style="font-family:arial;background-color:#ffffff">
|
||||
</head><body style="font-family:arial;background-color:#FFFFFF">
|
||||
<h1>ex12</h1>
|
||||
<h2>Diagram</h2>
|
||||
|
||||
@ -30,195 +30,278 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1096pt" height="201pt"
|
||||
viewBox="0.00 0.00 1096.00 200.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 196.5)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-196.5 1092,-196.5 1092,4 -4,4"/>
|
||||
<svg width="1074pt" height="212pt"
|
||||
viewBox="0.00 0.00 1074.24 212.25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 208.25)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-208.25 1070.24,-208.25 1070.24,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="468,-161 246,-161 246,0 468,0 468,-161"/>
|
||||
<polygon fill="none" stroke="black" points="246,-137.5 246,-160.5 468,-160.5 468,-137.5 246,-137.5"/>
|
||||
<text text-anchor="start" x="348" y="-145.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="246,-114.5 246,-137.5 354,-137.5 354,-114.5 246,-114.5"/>
|
||||
<text text-anchor="start" x="250" y="-122.3" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
|
||||
<polygon fill="none" stroke="black" points="354,-114.5 354,-137.5 393,-137.5 393,-114.5 354,-114.5"/>
|
||||
<text text-anchor="start" x="358" y="-122.3" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="393,-114.5 393,-137.5 433,-137.5 433,-114.5 393,-114.5"/>
|
||||
<text text-anchor="start" x="397" y="-122.3" font-family="arial" font-size="14.00">5-pin</text>
|
||||
<polygon fill="none" stroke="black" points="433,-114.5 433,-137.5 460,-137.5 460,-114.5 433,-114.5"/>
|
||||
<text text-anchor="start" x="437" y="-122.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="460,-114.5 460,-137.5 468,-137.5 468,-114.5 460,-114.5"/>
|
||||
<polygon fill="none" stroke="black" points="460,-114.5 460,-137.5 468,-137.5 468,-114.5 460,-114.5"/>
|
||||
<polygon fill="none" stroke="black" points="246,-91.5 246,-114.5 468,-114.5 468,-91.5 246,-91.5"/>
|
||||
<text text-anchor="start" x="353" y="-99.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="246,-68.5 246,-91.5 468,-91.5 468,-68.5 246,-68.5"/>
|
||||
<text text-anchor="start" x="353" y="-76.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="246,-45.5 246,-68.5 468,-68.5 468,-45.5 246,-45.5"/>
|
||||
<text text-anchor="start" x="353" y="-53.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="246,-22.5 246,-45.5 468,-45.5 468,-22.5 246,-22.5"/>
|
||||
<text text-anchor="start" x="353" y="-30.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="246,0.5 246,-22.5 468,-22.5 468,0.5 246,0.5"/>
|
||||
<text text-anchor="start" x="353" y="-7.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="454.75,-171.5 231,-171.5 231,0 454.75,0 454.75,-171.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="231,0 231,-171.5 454.75,-171.5 454.75,0 231,0"/>
|
||||
<polygon fill="none" stroke="black" points="231,-147 231,-171.5 454.75,-171.5 454.75,-147 231,-147"/>
|
||||
<text text-anchor="start" x="333.88" y="-154.2" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="231,-122.5 231,-147 341,-147 341,-122.5 231,-122.5"/>
|
||||
<text text-anchor="start" x="235" y="-129.7" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
|
||||
<polygon fill="none" stroke="black" points="341,-122.5 341,-147 379.75,-147 379.75,-122.5 341,-122.5"/>
|
||||
<text text-anchor="start" x="345" y="-129.7" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="379.75,-122.5 379.75,-147 419.25,-147 419.25,-122.5 379.75,-122.5"/>
|
||||
<text text-anchor="start" x="383.75" y="-129.7" font-family="arial" font-size="14.00">5-pin</text>
|
||||
<polygon fill="none" stroke="black" points="419.25,-122.5 419.25,-147 446.75,-147 446.75,-122.5 419.25,-122.5"/>
|
||||
<text text-anchor="start" x="423.25" y="-129.7" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="none" points="446.75,-122.5 446.75,-147 454.75,-147 454.75,-122.5 446.75,-122.5"/>
|
||||
<polygon fill="none" stroke="black" points="446.75,-122.5 446.75,-147 454.75,-147 454.75,-122.5 446.75,-122.5"/>
|
||||
<polygon fill="none" stroke="black" points="231,-98 231,-122.5 454.75,-122.5 454.75,-98 231,-98"/>
|
||||
<text text-anchor="start" x="338.75" y="-105.2" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="231,-73.5 231,-98 454.75,-98 454.75,-73.5 231,-73.5"/>
|
||||
<text text-anchor="start" x="338.75" y="-80.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="231,-49 231,-73.5 454.75,-73.5 454.75,-49 231,-49"/>
|
||||
<text text-anchor="start" x="338.75" y="-56.2" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="231,-24.5 231,-49 454.75,-49 454.75,-24.5 231,-24.5"/>
|
||||
<text text-anchor="start" x="338.75" y="-31.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="231,0 231,-24.5 454.75,-24.5 454.75,0 231,0"/>
|
||||
<text text-anchor="start" x="338.75" y="-7.2" font-family="arial" font-size="14.00">5</text>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="846,-161 612,-161 612,0 846,0 846,-161"/>
|
||||
<polygon fill="none" stroke="black" points="612,-137.5 612,-160.5 846,-160.5 846,-137.5 612,-137.5"/>
|
||||
<text text-anchor="start" x="720" y="-145.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="612,-114.5 612,-137.5 720,-137.5 720,-114.5 612,-114.5"/>
|
||||
<text text-anchor="start" x="616" y="-122.3" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
|
||||
<polygon fill="none" stroke="black" points="720,-114.5 720,-137.5 771,-137.5 771,-114.5 720,-114.5"/>
|
||||
<text text-anchor="start" x="724" y="-122.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="771,-114.5 771,-137.5 811,-137.5 811,-114.5 771,-114.5"/>
|
||||
<text text-anchor="start" x="775" y="-122.3" font-family="arial" font-size="14.00">5-pin</text>
|
||||
<polygon fill="none" stroke="black" points="811,-114.5 811,-137.5 838,-137.5 838,-114.5 811,-114.5"/>
|
||||
<text text-anchor="start" x="815" y="-122.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="838,-114.5 838,-137.5 846,-137.5 846,-114.5 838,-114.5"/>
|
||||
<polygon fill="none" stroke="black" points="838,-114.5 838,-137.5 846,-137.5 846,-114.5 838,-114.5"/>
|
||||
<polygon fill="none" stroke="black" points="612,-91.5 612,-114.5 846,-114.5 846,-91.5 612,-91.5"/>
|
||||
<text text-anchor="start" x="725" y="-99.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="612,-68.5 612,-91.5 846,-91.5 846,-68.5 612,-68.5"/>
|
||||
<text text-anchor="start" x="725" y="-76.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="612,-45.5 612,-68.5 846,-68.5 846,-45.5 612,-45.5"/>
|
||||
<text text-anchor="start" x="725" y="-53.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="612,-22.5 612,-45.5 846,-45.5 846,-22.5 612,-22.5"/>
|
||||
<text text-anchor="start" x="725" y="-30.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="612,0.5 612,-22.5 846,-22.5 846,0.5 612,0.5"/>
|
||||
<text text-anchor="start" x="725" y="-7.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="835.24,-171.5 598.74,-171.5 598.74,0 835.24,0 835.24,-171.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="598.74,0 598.74,-171.5 835.24,-171.5 835.24,0 598.74,0"/>
|
||||
<polygon fill="none" stroke="black" points="598.74,-147 598.74,-171.5 835.24,-171.5 835.24,-147 598.74,-147"/>
|
||||
<text text-anchor="start" x="707.99" y="-154.2" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="598.74,-122.5 598.74,-147 708.74,-147 708.74,-122.5 598.74,-122.5"/>
|
||||
<text text-anchor="start" x="602.74" y="-129.7" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
|
||||
<polygon fill="none" stroke="black" points="708.74,-122.5 708.74,-147 760.24,-147 760.24,-122.5 708.74,-122.5"/>
|
||||
<text text-anchor="start" x="712.74" y="-129.7" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="760.24,-122.5 760.24,-147 799.74,-147 799.74,-122.5 760.24,-122.5"/>
|
||||
<text text-anchor="start" x="764.24" y="-129.7" font-family="arial" font-size="14.00">5-pin</text>
|
||||
<polygon fill="none" stroke="black" points="799.74,-122.5 799.74,-147 827.24,-147 827.24,-122.5 799.74,-122.5"/>
|
||||
<text text-anchor="start" x="803.74" y="-129.7" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="none" points="827.24,-122.5 827.24,-147 835.24,-147 835.24,-122.5 827.24,-122.5"/>
|
||||
<polygon fill="none" stroke="black" points="827.24,-122.5 827.24,-147 835.24,-147 835.24,-122.5 827.24,-122.5"/>
|
||||
<polygon fill="none" stroke="black" points="598.74,-98 598.74,-122.5 835.24,-122.5 835.24,-98 598.74,-98"/>
|
||||
<text text-anchor="start" x="712.87" y="-105.2" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="598.74,-73.5 598.74,-98 835.24,-98 835.24,-73.5 598.74,-73.5"/>
|
||||
<text text-anchor="start" x="712.87" y="-80.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="598.74,-49 598.74,-73.5 835.24,-73.5 835.24,-49 598.74,-49"/>
|
||||
<text text-anchor="start" x="712.87" y="-56.2" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="598.74,-24.5 598.74,-49 835.24,-49 835.24,-24.5 598.74,-24.5"/>
|
||||
<text text-anchor="start" x="712.87" y="-31.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="598.74,0 598.74,-24.5 835.24,-24.5 835.24,0 598.74,0"/>
|
||||
<text text-anchor="start" x="712.87" y="-7.2" font-family="arial" font-size="14.00">5</text>
|
||||
</g>
|
||||
<!-- X1--X2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M468,-79.5C528.5,-79.5 546.11,-79.5 601.91,-79.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M468,-81.5C528.5,-81.5 546.11,-81.5 601.91,-81.5"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="602,-84 612,-80.5 602,-77 602,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M454.75,-85.75C514.75,-85.75 532.57,-85.75 587.29,-85.75"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="587.23,-89.25 597.23,-85.75 587.23,-82.25 587.23,-89.25"/>
|
||||
</g>
|
||||
<!-- W2 -->
|
||||
<g id="node4" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>W2</title>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1088,-192.5 990,-192.5 990,-8.5 1088,-8.5 1088,-192.5"/>
|
||||
<polygon fill="none" stroke="black" points="990,-169.5 990,-192.5 1088,-192.5 1088,-169.5 990,-169.5"/>
|
||||
<text text-anchor="start" x="1028.5" y="-177.3" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="990,-146.5 990,-169.5 1029,-169.5 1029,-146.5 990,-146.5"/>
|
||||
<text text-anchor="start" x="1002" y="-154.3" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1029,-146.5 1029,-169.5 1088,-169.5 1088,-146.5 1029,-146.5"/>
|
||||
<text text-anchor="start" x="1040.5" y="-154.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="1004.5" y="-133.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="992" y="-114.3" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<text text-anchor="start" x="1025.5" y="-114.3" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-106.5 990,-108.5 1088,-108.5 1088,-106.5 990,-106.5"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="990,-104.5 990,-106.5 1088,-106.5 1088,-104.5 990,-104.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-102.5 990,-104.5 1088,-104.5 1088,-102.5 990,-102.5"/>
|
||||
<text text-anchor="start" x="992" y="-89.3" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<text text-anchor="start" x="1026.5" y="-89.3" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-81.5 990,-83.5 1088,-83.5 1088,-81.5 990,-81.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-79.5 990,-81.5 1088,-81.5 1088,-79.5 990,-79.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-77.5 990,-79.5 1088,-79.5 1088,-77.5 990,-77.5"/>
|
||||
<text text-anchor="start" x="992" y="-64.3" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<text text-anchor="start" x="1026" y="-64.3" font-family="arial" font-size="14.00">     BU    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-56.5 990,-58.5 1088,-58.5 1088,-56.5 990,-56.5"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="990,-54.5 990,-56.5 1088,-56.5 1088,-54.5 990,-54.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-52.5 990,-54.5 1088,-54.5 1088,-52.5 990,-52.5"/>
|
||||
<text text-anchor="start" x="992" y="-39.3" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<text text-anchor="start" x="1025" y="-39.3" font-family="arial" font-size="14.00">     GN    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-31.5 990,-33.5 1088,-33.5 1088,-31.5 990,-31.5"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="990,-29.5 990,-31.5 1088,-31.5 1088,-29.5 990,-29.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-27.5 990,-29.5 1088,-29.5 1088,-27.5 990,-27.5"/>
|
||||
<text text-anchor="start" x="1004.5" y="-14.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1066.24,-204.25 979.24,-204.25 979.24,-11.25 1066.24,-11.25 1066.24,-204.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-11.25 979.24,-204.25 1066.24,-204.25 1066.24,-11.25 979.24,-11.25"/>
|
||||
<polygon fill="none" stroke="black" points="979.24,-179.75 979.24,-204.25 1066.24,-204.25 1066.24,-179.75 979.24,-179.75"/>
|
||||
<text text-anchor="start" x="1011.49" y="-186.95" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="979.24,-155.25 979.24,-179.75 1012.24,-179.75 1012.24,-155.25 979.24,-155.25"/>
|
||||
<text text-anchor="start" x="988.24" y="-162.45" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1012.24,-155.25 1012.24,-179.75 1066.24,-179.75 1066.24,-155.25 1012.24,-155.25"/>
|
||||
<text text-anchor="start" x="1021.24" y="-162.45" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="995.87" y="-139.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="980.87" y="-119.95" font-family="arial" font-size="14.00"> X2:1</text>
|
||||
<text text-anchor="start" x="1017.87" y="-119.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1029.24" y="-119.95" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="1053.87" y="-119.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1060.87" y="-119.95" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-113.25 979.24,-115.25 1066.24,-115.25 1066.24,-113.25 979.24,-113.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-111.25 979.24,-113.25 1066.24,-113.25 1066.24,-111.25 979.24,-111.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-109.25 979.24,-111.25 1066.24,-111.25 1066.24,-109.25 979.24,-109.25"/>
|
||||
<text text-anchor="start" x="980.87" y="-93.95" font-family="arial" font-size="14.00"> X2:2</text>
|
||||
<text text-anchor="start" x="1017.87" y="-93.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1029.99" y="-93.95" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="1053.87" y="-93.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1060.87" y="-93.95" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-87.25 979.24,-89.25 1066.24,-89.25 1066.24,-87.25 979.24,-87.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-85.25 979.24,-87.25 1066.24,-87.25 1066.24,-85.25 979.24,-85.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-83.25 979.24,-85.25 1066.24,-85.25 1066.24,-83.25 979.24,-83.25"/>
|
||||
<text text-anchor="start" x="980.87" y="-67.95" font-family="arial" font-size="14.00"> X2:3</text>
|
||||
<text text-anchor="start" x="1017.87" y="-67.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1029.99" y="-67.95" font-family="arial" font-size="14.00">BU</text>
|
||||
<text text-anchor="start" x="1053.87" y="-67.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1060.87" y="-67.95" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-61.25 979.24,-63.25 1066.24,-63.25 1066.24,-61.25 979.24,-61.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-59.25 979.24,-61.25 1066.24,-61.25 1066.24,-59.25 979.24,-59.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-57.25 979.24,-59.25 1066.24,-59.25 1066.24,-57.25 979.24,-57.25"/>
|
||||
<text text-anchor="start" x="980.87" y="-41.95" font-family="arial" font-size="14.00"> X2:4</text>
|
||||
<text text-anchor="start" x="1017.87" y="-41.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1029.24" y="-41.95" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="1053.87" y="-41.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1060.87" y="-41.95" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-35.25 979.24,-37.25 1066.24,-37.25 1066.24,-35.25 979.24,-35.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-33.25 979.24,-35.25 1066.24,-35.25 1066.24,-33.25 979.24,-33.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-31.25 979.24,-33.25 1066.24,-33.25 1066.24,-31.25 979.24,-31.25"/>
|
||||
<text text-anchor="start" x="995.87" y="-15.95" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-108.25C899.5,-108.27 915.49,-110.27 979.25,-110.25"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M835.25,-110.25C899.25,-110.25 915.24,-112.25 979.25,-112.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-112.25C899.01,-112.23 915,-114.23 979.25,-114.25"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-83.75C899.32,-83.75 915.31,-84.25 979.25,-84.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-85.75C899.25,-85.75 915.25,-86.25 979.25,-86.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-87.75C899.19,-87.75 915.18,-88.25 979.25,-88.25"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-59.25C899.13,-59.25 915.12,-58.25 979.25,-58.25"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M835.25,-61.25C899.25,-61.25 915.24,-60.25 979.25,-60.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-63.25C899.38,-63.25 915.37,-62.25 979.25,-62.25"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-101.5C910.25,-101.52 926.24,-103.52 990,-103.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M846,-103.5C910.01,-103.5 925.99,-105.5 990,-105.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-105.5C909.76,-105.48 925.75,-107.48 990,-107.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-34.75C898.95,-34.77 914.94,-32.27 979.25,-32.25"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M835.25,-36.75C899.25,-36.75 915.24,-34.25 979.25,-34.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-38.75C899.56,-38.73 915.55,-36.23 979.25,-36.25"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-77.5C910.13,-77.5 926.12,-78.5 990,-78.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-79.5C910,-79.5 926,-80.5 990,-80.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-81.5C909.88,-81.5 925.87,-82.5 990,-82.5"/>
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-114.25C1037.24,-114.25 1008.25,-114.25 979.25,-114.25"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1066.24,-112.25C1037.24,-112.25 1008.25,-112.25 979.25,-112.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-110.25C1037.24,-110.25 1008.25,-110.25 979.25,-110.25"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-54.5C909.88,-54.5 925.87,-53.5 990,-53.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M846,-56.5C910,-56.5 926,-55.5 990,-55.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-58.5C910.13,-58.5 926.12,-57.5 990,-57.5"/>
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-88.25C1037.24,-88.25 1008.25,-88.25 979.25,-88.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-86.25C1037.24,-86.25 1008.25,-86.25 979.25,-86.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-84.25C1037.24,-84.25 1008.25,-84.25 979.25,-84.25"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-31.5C909.64,-31.53 925.62,-28.53 990,-28.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M846,-33.5C910.01,-33.5 925.99,-30.5 990,-30.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-35.5C910.38,-35.47 926.36,-32.47 990,-32.5"/>
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-62.25C1037.24,-62.25 1008.25,-62.25 979.25,-62.25"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M1066.24,-60.25C1037.24,-60.25 1008.25,-60.25 979.25,-60.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-58.25C1037.24,-58.25 1008.25,-58.25 979.25,-58.25"/>
|
||||
</g>
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-36.25C1037.24,-36.25 1008.25,-36.25 979.25,-36.25"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M1066.24,-34.25C1037.24,-34.25 1008.25,-34.25 979.25,-34.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-32.25C1037.24,-32.25 1008.25,-32.25 979.25,-32.25"/>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node4" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="102,-192.5 0,-192.5 0,-8.5 102,-8.5 102,-192.5"/>
|
||||
<polygon fill="none" stroke="black" points="0,-169.5 0,-192.5 102,-192.5 102,-169.5 0,-169.5"/>
|
||||
<text text-anchor="start" x="40.5" y="-177.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-146.5 0,-169.5 41,-169.5 41,-146.5 0,-146.5"/>
|
||||
<text text-anchor="start" x="13" y="-154.3" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="41,-146.5 41,-169.5 102,-169.5 102,-146.5 41,-146.5"/>
|
||||
<text text-anchor="start" x="53.5" y="-154.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="2" y="-133.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="10.5" y="-114.3" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<text text-anchor="start" x="71" y="-114.3" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-106.5 0,-108.5 102,-108.5 102,-106.5 0,-106.5"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="0,-104.5 0,-106.5 102,-106.5 102,-104.5 0,-104.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-102.5 0,-104.5 102,-104.5 102,-102.5 0,-102.5"/>
|
||||
<text text-anchor="start" x="11.5" y="-89.3" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<text text-anchor="start" x="71" y="-89.3" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-81.5 0,-83.5 102,-83.5 102,-81.5 0,-81.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-79.5 0,-81.5 102,-81.5 102,-79.5 0,-79.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-77.5 0,-79.5 102,-79.5 102,-77.5 0,-77.5"/>
|
||||
<text text-anchor="start" x="11" y="-64.3" font-family="arial" font-size="14.00">     BU    </text>
|
||||
<text text-anchor="start" x="71" y="-64.3" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-56.5 0,-58.5 102,-58.5 102,-56.5 0,-56.5"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="0,-54.5 0,-56.5 102,-56.5 102,-54.5 0,-54.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-52.5 0,-54.5 102,-54.5 102,-52.5 0,-52.5"/>
|
||||
<text text-anchor="start" x="10" y="-39.3" font-family="arial" font-size="14.00">     GN    </text>
|
||||
<text text-anchor="start" x="71" y="-39.3" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-31.5 0,-33.5 102,-33.5 102,-31.5 0,-31.5"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="0,-29.5 0,-31.5 102,-31.5 102,-29.5 0,-29.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-27.5 0,-29.5 102,-29.5 102,-27.5 0,-27.5"/>
|
||||
<text text-anchor="start" x="2" y="-14.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="87,-204.25 0,-204.25 0,-11.25 87,-11.25 87,-204.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-11.25 0,-204.25 87,-204.25 87,-11.25 0,-11.25"/>
|
||||
<polygon fill="none" stroke="black" points="0,-179.75 0,-204.25 87,-204.25 87,-179.75 0,-179.75"/>
|
||||
<text text-anchor="start" x="32.25" y="-186.95" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-155.25 0,-179.75 33,-179.75 33,-155.25 0,-155.25"/>
|
||||
<text text-anchor="start" x="9" y="-162.45" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="33,-155.25 33,-179.75 87,-179.75 87,-155.25 33,-155.25"/>
|
||||
<text text-anchor="start" x="42" y="-162.45" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="1.63" y="-139.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1.63" y="-119.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="8.63" y="-119.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="20" y="-119.95" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="44.63" y="-119.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="51.62" y="-119.95" font-family="arial" font-size="14.00">X1:1 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-113.25 0,-115.25 87,-115.25 87,-113.25 0,-113.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-111.25 0,-113.25 87,-113.25 87,-111.25 0,-111.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-109.25 0,-111.25 87,-111.25 87,-109.25 0,-109.25"/>
|
||||
<text text-anchor="start" x="1.63" y="-93.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="8.63" y="-93.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="20.75" y="-93.95" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="44.63" y="-93.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="51.62" y="-93.95" font-family="arial" font-size="14.00">X1:2 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-87.25 0,-89.25 87,-89.25 87,-87.25 0,-87.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-85.25 0,-87.25 87,-87.25 87,-85.25 0,-85.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-83.25 0,-85.25 87,-85.25 87,-83.25 0,-83.25"/>
|
||||
<text text-anchor="start" x="1.63" y="-67.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="8.63" y="-67.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="20.75" y="-67.95" font-family="arial" font-size="14.00">BU</text>
|
||||
<text text-anchor="start" x="44.63" y="-67.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="51.62" y="-67.95" font-family="arial" font-size="14.00">X1:3 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-61.25 0,-63.25 87,-63.25 87,-61.25 0,-61.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-59.25 0,-61.25 87,-61.25 87,-59.25 0,-59.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-57.25 0,-59.25 87,-59.25 87,-57.25 0,-57.25"/>
|
||||
<text text-anchor="start" x="1.63" y="-41.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="8.63" y="-41.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="20" y="-41.95" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="44.63" y="-41.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="51.62" y="-41.95" font-family="arial" font-size="14.00">X1:4 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-35.25 0,-37.25 87,-37.25 87,-35.25 0,-35.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-33.25 0,-35.25 87,-35.25 87,-33.25 0,-33.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-31.25 0,-33.25 87,-33.25 87,-31.25 0,-31.25"/>
|
||||
<text text-anchor="start" x="1.63" y="-15.95" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-103.5C165.76,-103.52 181.75,-101.52 246,-101.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M102,-105.5C166.01,-105.5 181.99,-103.5 246,-103.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-107.5C166.25,-107.48 182.24,-105.48 246,-105.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-110.25C150.76,-110.27 166.75,-108.27 231,-108.25"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M87,-112.25C151,-112.25 167,-110.25 231,-110.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-114.25C151.25,-114.23 167.24,-112.23 231,-112.25"/>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<g id="edge11" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-78.5C165.88,-78.5 181.87,-77.5 246,-77.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-80.5C166,-80.5 182,-79.5 246,-79.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-82.5C166.13,-82.5 182.12,-81.5 246,-81.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-84.25C150.94,-84.25 166.93,-83.75 231,-83.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-86.25C151,-86.25 167,-85.75 231,-85.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-88.25C151.07,-88.25 167.06,-87.75 231,-87.75"/>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-53.5C166.13,-53.5 182.12,-54.5 246,-54.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M102,-55.5C166,-55.5 182,-56.5 246,-56.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-57.5C165.88,-57.5 181.87,-58.5 246,-58.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-58.25C151.13,-58.25 167.12,-59.25 231,-59.25"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M87,-60.25C151,-60.25 167,-61.25 231,-61.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-62.25C150.88,-62.25 166.87,-63.25 231,-63.25"/>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<g id="edge13" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-28.5C166.38,-28.53 182.36,-31.53 246,-31.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M102,-30.5C166.01,-30.5 181.99,-33.5 246,-33.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-32.5C165.64,-32.47 181.62,-35.47 246,-35.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-32.25C151.31,-32.27 167.3,-34.77 231,-34.75"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M87,-34.25C151,-34.25 167,-36.75 231,-36.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-36.25C150.7,-36.23 166.69,-38.73 231,-38.75"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-114.25C58,-114.25 29,-114.25 0,-114.25"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M87,-112.25C58,-112.25 29,-112.25 0,-112.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-110.25C58,-110.25 29,-110.25 0,-110.25"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-88.25C58,-88.25 29,-88.25 0,-88.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-86.25C58,-86.25 29,-86.25 0,-86.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-84.25C58,-84.25 29,-84.25 0,-84.25"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-62.25C58,-62.25 29,-62.25 0,-62.25"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M87,-60.25C58,-60.25 29,-60.25 0,-60.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-58.25C58,-58.25 29,-58.25 0,-58.25"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge17" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-36.25C58,-36.25 29,-36.25 0,-36.25"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M87,-34.25C58,-34.25 29,-34.25 0,-34.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-32.25C58,-32.25 29,-32.25 0,-32.25"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
@ -234,52 +317,52 @@
|
||||
<div id="bom">
|
||||
<table class="bom">
|
||||
<tr>
|
||||
<th class="bom_col_id">Id</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_#">#</th>
|
||||
<th class="bom_col_qty">Qty</th>
|
||||
<th class="bom_col_unit">Unit</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_designators">Designators</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">1</td>
|
||||
<td class="bom_col_description">Connector, Dupont 2.54mm, female, 5 pins, BK</td>
|
||||
<td class="bom_col_#">1</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, Dupont 2.54mm, female, 5 pins, BK</td>
|
||||
<td class="bom_col_designators">X2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">2</td>
|
||||
<td class="bom_col_description">Connector, Dupont 2.54mm, male, 5 pins, BK</td>
|
||||
<td class="bom_col_#">2</td>
|
||||
<td class="bom_col_qty">1</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, Dupont 2.54mm, male, 5 pins, BK</td>
|
||||
<td class="bom_col_designators">X1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">3</td>
|
||||
<td class="bom_col_#">3</td>
|
||||
<td class="bom_col_qty">2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Wire, BK</td>
|
||||
<td class="bom_col_qty">0.4</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W1, W2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">4</td>
|
||||
<td class="bom_col_#">4</td>
|
||||
<td class="bom_col_qty">2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Wire, BU</td>
|
||||
<td class="bom_col_qty">0.4</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W1, W2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">5</td>
|
||||
<td class="bom_col_#">5</td>
|
||||
<td class="bom_col_qty">2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Wire, GN</td>
|
||||
<td class="bom_col_qty">0.4</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">W1, W2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">6</td>
|
||||
<td class="bom_col_description">Wire, RD</td>
|
||||
<td class="bom_col_qty">0.4</td>
|
||||
<td class="bom_col_#">6</td>
|
||||
<td class="bom_col_qty">2</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_description">Wire, RD</td>
|
||||
<td class="bom_col_designators">W1, W2</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
BIN
examples/ex12.png
generated
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 23 KiB |
381
examples/ex12.svg
generated
@ -1,195 +1,278 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1096pt" height="201pt"
|
||||
viewBox="0.00 0.00 1096.00 200.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 196.5)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-196.5 1092,-196.5 1092,4 -4,4"/>
|
||||
<svg width="1074pt" height="212pt"
|
||||
viewBox="0.00 0.00 1074.24 212.25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 208.25)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-208.25 1070.24,-208.25 1070.24,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="468,-161 246,-161 246,0 468,0 468,-161"/>
|
||||
<polygon fill="none" stroke="black" points="246,-137.5 246,-160.5 468,-160.5 468,-137.5 246,-137.5"/>
|
||||
<text text-anchor="start" x="348" y="-145.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="246,-114.5 246,-137.5 354,-137.5 354,-114.5 246,-114.5"/>
|
||||
<text text-anchor="start" x="250" y="-122.3" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
|
||||
<polygon fill="none" stroke="black" points="354,-114.5 354,-137.5 393,-137.5 393,-114.5 354,-114.5"/>
|
||||
<text text-anchor="start" x="358" y="-122.3" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="393,-114.5 393,-137.5 433,-137.5 433,-114.5 393,-114.5"/>
|
||||
<text text-anchor="start" x="397" y="-122.3" font-family="arial" font-size="14.00">5-pin</text>
|
||||
<polygon fill="none" stroke="black" points="433,-114.5 433,-137.5 460,-137.5 460,-114.5 433,-114.5"/>
|
||||
<text text-anchor="start" x="437" y="-122.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="460,-114.5 460,-137.5 468,-137.5 468,-114.5 460,-114.5"/>
|
||||
<polygon fill="none" stroke="black" points="460,-114.5 460,-137.5 468,-137.5 468,-114.5 460,-114.5"/>
|
||||
<polygon fill="none" stroke="black" points="246,-91.5 246,-114.5 468,-114.5 468,-91.5 246,-91.5"/>
|
||||
<text text-anchor="start" x="353" y="-99.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="246,-68.5 246,-91.5 468,-91.5 468,-68.5 246,-68.5"/>
|
||||
<text text-anchor="start" x="353" y="-76.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="246,-45.5 246,-68.5 468,-68.5 468,-45.5 246,-45.5"/>
|
||||
<text text-anchor="start" x="353" y="-53.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="246,-22.5 246,-45.5 468,-45.5 468,-22.5 246,-22.5"/>
|
||||
<text text-anchor="start" x="353" y="-30.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="246,0.5 246,-22.5 468,-22.5 468,0.5 246,0.5"/>
|
||||
<text text-anchor="start" x="353" y="-7.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="454.75,-171.5 231,-171.5 231,0 454.75,0 454.75,-171.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="231,0 231,-171.5 454.75,-171.5 454.75,0 231,0"/>
|
||||
<polygon fill="none" stroke="black" points="231,-147 231,-171.5 454.75,-171.5 454.75,-147 231,-147"/>
|
||||
<text text-anchor="start" x="333.88" y="-154.2" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="231,-122.5 231,-147 341,-147 341,-122.5 231,-122.5"/>
|
||||
<text text-anchor="start" x="235" y="-129.7" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
|
||||
<polygon fill="none" stroke="black" points="341,-122.5 341,-147 379.75,-147 379.75,-122.5 341,-122.5"/>
|
||||
<text text-anchor="start" x="345" y="-129.7" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="379.75,-122.5 379.75,-147 419.25,-147 419.25,-122.5 379.75,-122.5"/>
|
||||
<text text-anchor="start" x="383.75" y="-129.7" font-family="arial" font-size="14.00">5-pin</text>
|
||||
<polygon fill="none" stroke="black" points="419.25,-122.5 419.25,-147 446.75,-147 446.75,-122.5 419.25,-122.5"/>
|
||||
<text text-anchor="start" x="423.25" y="-129.7" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="none" points="446.75,-122.5 446.75,-147 454.75,-147 454.75,-122.5 446.75,-122.5"/>
|
||||
<polygon fill="none" stroke="black" points="446.75,-122.5 446.75,-147 454.75,-147 454.75,-122.5 446.75,-122.5"/>
|
||||
<polygon fill="none" stroke="black" points="231,-98 231,-122.5 454.75,-122.5 454.75,-98 231,-98"/>
|
||||
<text text-anchor="start" x="338.75" y="-105.2" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="231,-73.5 231,-98 454.75,-98 454.75,-73.5 231,-73.5"/>
|
||||
<text text-anchor="start" x="338.75" y="-80.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="231,-49 231,-73.5 454.75,-73.5 454.75,-49 231,-49"/>
|
||||
<text text-anchor="start" x="338.75" y="-56.2" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="231,-24.5 231,-49 454.75,-49 454.75,-24.5 231,-24.5"/>
|
||||
<text text-anchor="start" x="338.75" y="-31.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="231,0 231,-24.5 454.75,-24.5 454.75,0 231,0"/>
|
||||
<text text-anchor="start" x="338.75" y="-7.2" font-family="arial" font-size="14.00">5</text>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="846,-161 612,-161 612,0 846,0 846,-161"/>
|
||||
<polygon fill="none" stroke="black" points="612,-137.5 612,-160.5 846,-160.5 846,-137.5 612,-137.5"/>
|
||||
<text text-anchor="start" x="720" y="-145.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="612,-114.5 612,-137.5 720,-137.5 720,-114.5 612,-114.5"/>
|
||||
<text text-anchor="start" x="616" y="-122.3" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
|
||||
<polygon fill="none" stroke="black" points="720,-114.5 720,-137.5 771,-137.5 771,-114.5 720,-114.5"/>
|
||||
<text text-anchor="start" x="724" y="-122.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="771,-114.5 771,-137.5 811,-137.5 811,-114.5 771,-114.5"/>
|
||||
<text text-anchor="start" x="775" y="-122.3" font-family="arial" font-size="14.00">5-pin</text>
|
||||
<polygon fill="none" stroke="black" points="811,-114.5 811,-137.5 838,-137.5 838,-114.5 811,-114.5"/>
|
||||
<text text-anchor="start" x="815" y="-122.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="838,-114.5 838,-137.5 846,-137.5 846,-114.5 838,-114.5"/>
|
||||
<polygon fill="none" stroke="black" points="838,-114.5 838,-137.5 846,-137.5 846,-114.5 838,-114.5"/>
|
||||
<polygon fill="none" stroke="black" points="612,-91.5 612,-114.5 846,-114.5 846,-91.5 612,-91.5"/>
|
||||
<text text-anchor="start" x="725" y="-99.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="612,-68.5 612,-91.5 846,-91.5 846,-68.5 612,-68.5"/>
|
||||
<text text-anchor="start" x="725" y="-76.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="612,-45.5 612,-68.5 846,-68.5 846,-45.5 612,-45.5"/>
|
||||
<text text-anchor="start" x="725" y="-53.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="612,-22.5 612,-45.5 846,-45.5 846,-22.5 612,-22.5"/>
|
||||
<text text-anchor="start" x="725" y="-30.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="612,0.5 612,-22.5 846,-22.5 846,0.5 612,0.5"/>
|
||||
<text text-anchor="start" x="725" y="-7.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="835.24,-171.5 598.74,-171.5 598.74,0 835.24,0 835.24,-171.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="598.74,0 598.74,-171.5 835.24,-171.5 835.24,0 598.74,0"/>
|
||||
<polygon fill="none" stroke="black" points="598.74,-147 598.74,-171.5 835.24,-171.5 835.24,-147 598.74,-147"/>
|
||||
<text text-anchor="start" x="707.99" y="-154.2" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="598.74,-122.5 598.74,-147 708.74,-147 708.74,-122.5 598.74,-122.5"/>
|
||||
<text text-anchor="start" x="602.74" y="-129.7" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
|
||||
<polygon fill="none" stroke="black" points="708.74,-122.5 708.74,-147 760.24,-147 760.24,-122.5 708.74,-122.5"/>
|
||||
<text text-anchor="start" x="712.74" y="-129.7" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="760.24,-122.5 760.24,-147 799.74,-147 799.74,-122.5 760.24,-122.5"/>
|
||||
<text text-anchor="start" x="764.24" y="-129.7" font-family="arial" font-size="14.00">5-pin</text>
|
||||
<polygon fill="none" stroke="black" points="799.74,-122.5 799.74,-147 827.24,-147 827.24,-122.5 799.74,-122.5"/>
|
||||
<text text-anchor="start" x="803.74" y="-129.7" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="none" points="827.24,-122.5 827.24,-147 835.24,-147 835.24,-122.5 827.24,-122.5"/>
|
||||
<polygon fill="none" stroke="black" points="827.24,-122.5 827.24,-147 835.24,-147 835.24,-122.5 827.24,-122.5"/>
|
||||
<polygon fill="none" stroke="black" points="598.74,-98 598.74,-122.5 835.24,-122.5 835.24,-98 598.74,-98"/>
|
||||
<text text-anchor="start" x="712.87" y="-105.2" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="598.74,-73.5 598.74,-98 835.24,-98 835.24,-73.5 598.74,-73.5"/>
|
||||
<text text-anchor="start" x="712.87" y="-80.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="598.74,-49 598.74,-73.5 835.24,-73.5 835.24,-49 598.74,-49"/>
|
||||
<text text-anchor="start" x="712.87" y="-56.2" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="598.74,-24.5 598.74,-49 835.24,-49 835.24,-24.5 598.74,-24.5"/>
|
||||
<text text-anchor="start" x="712.87" y="-31.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="598.74,0 598.74,-24.5 835.24,-24.5 835.24,0 598.74,0"/>
|
||||
<text text-anchor="start" x="712.87" y="-7.2" font-family="arial" font-size="14.00">5</text>
|
||||
</g>
|
||||
<!-- X1--X2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M468,-79.5C528.5,-79.5 546.11,-79.5 601.91,-79.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M468,-81.5C528.5,-81.5 546.11,-81.5 601.91,-81.5"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="602,-84 612,-80.5 602,-77 602,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M454.75,-85.75C514.75,-85.75 532.57,-85.75 587.29,-85.75"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="587.23,-89.25 597.23,-85.75 587.23,-82.25 587.23,-89.25"/>
|
||||
</g>
|
||||
<!-- W2 -->
|
||||
<g id="node4" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>W2</title>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1088,-192.5 990,-192.5 990,-8.5 1088,-8.5 1088,-192.5"/>
|
||||
<polygon fill="none" stroke="black" points="990,-169.5 990,-192.5 1088,-192.5 1088,-169.5 990,-169.5"/>
|
||||
<text text-anchor="start" x="1028.5" y="-177.3" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="990,-146.5 990,-169.5 1029,-169.5 1029,-146.5 990,-146.5"/>
|
||||
<text text-anchor="start" x="1002" y="-154.3" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1029,-146.5 1029,-169.5 1088,-169.5 1088,-146.5 1029,-146.5"/>
|
||||
<text text-anchor="start" x="1040.5" y="-154.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="1004.5" y="-133.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="992" y="-114.3" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<text text-anchor="start" x="1025.5" y="-114.3" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-106.5 990,-108.5 1088,-108.5 1088,-106.5 990,-106.5"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="990,-104.5 990,-106.5 1088,-106.5 1088,-104.5 990,-104.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-102.5 990,-104.5 1088,-104.5 1088,-102.5 990,-102.5"/>
|
||||
<text text-anchor="start" x="992" y="-89.3" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<text text-anchor="start" x="1026.5" y="-89.3" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-81.5 990,-83.5 1088,-83.5 1088,-81.5 990,-81.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-79.5 990,-81.5 1088,-81.5 1088,-79.5 990,-79.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-77.5 990,-79.5 1088,-79.5 1088,-77.5 990,-77.5"/>
|
||||
<text text-anchor="start" x="992" y="-64.3" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<text text-anchor="start" x="1026" y="-64.3" font-family="arial" font-size="14.00">     BU    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-56.5 990,-58.5 1088,-58.5 1088,-56.5 990,-56.5"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="990,-54.5 990,-56.5 1088,-56.5 1088,-54.5 990,-54.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-52.5 990,-54.5 1088,-54.5 1088,-52.5 990,-52.5"/>
|
||||
<text text-anchor="start" x="992" y="-39.3" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<text text-anchor="start" x="1025" y="-39.3" font-family="arial" font-size="14.00">     GN    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-31.5 990,-33.5 1088,-33.5 1088,-31.5 990,-31.5"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="990,-29.5 990,-31.5 1088,-31.5 1088,-29.5 990,-29.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="990,-27.5 990,-29.5 1088,-29.5 1088,-27.5 990,-27.5"/>
|
||||
<text text-anchor="start" x="1004.5" y="-14.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1066.24,-204.25 979.24,-204.25 979.24,-11.25 1066.24,-11.25 1066.24,-204.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-11.25 979.24,-204.25 1066.24,-204.25 1066.24,-11.25 979.24,-11.25"/>
|
||||
<polygon fill="none" stroke="black" points="979.24,-179.75 979.24,-204.25 1066.24,-204.25 1066.24,-179.75 979.24,-179.75"/>
|
||||
<text text-anchor="start" x="1011.49" y="-186.95" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="979.24,-155.25 979.24,-179.75 1012.24,-179.75 1012.24,-155.25 979.24,-155.25"/>
|
||||
<text text-anchor="start" x="988.24" y="-162.45" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1012.24,-155.25 1012.24,-179.75 1066.24,-179.75 1066.24,-155.25 1012.24,-155.25"/>
|
||||
<text text-anchor="start" x="1021.24" y="-162.45" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="995.87" y="-139.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="980.87" y="-119.95" font-family="arial" font-size="14.00"> X2:1</text>
|
||||
<text text-anchor="start" x="1017.87" y="-119.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1029.24" y="-119.95" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="1053.87" y="-119.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1060.87" y="-119.95" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-113.25 979.24,-115.25 1066.24,-115.25 1066.24,-113.25 979.24,-113.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-111.25 979.24,-113.25 1066.24,-113.25 1066.24,-111.25 979.24,-111.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-109.25 979.24,-111.25 1066.24,-111.25 1066.24,-109.25 979.24,-109.25"/>
|
||||
<text text-anchor="start" x="980.87" y="-93.95" font-family="arial" font-size="14.00"> X2:2</text>
|
||||
<text text-anchor="start" x="1017.87" y="-93.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1029.99" y="-93.95" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="1053.87" y="-93.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1060.87" y="-93.95" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-87.25 979.24,-89.25 1066.24,-89.25 1066.24,-87.25 979.24,-87.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-85.25 979.24,-87.25 1066.24,-87.25 1066.24,-85.25 979.24,-85.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-83.25 979.24,-85.25 1066.24,-85.25 1066.24,-83.25 979.24,-83.25"/>
|
||||
<text text-anchor="start" x="980.87" y="-67.95" font-family="arial" font-size="14.00"> X2:3</text>
|
||||
<text text-anchor="start" x="1017.87" y="-67.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1029.99" y="-67.95" font-family="arial" font-size="14.00">BU</text>
|
||||
<text text-anchor="start" x="1053.87" y="-67.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1060.87" y="-67.95" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-61.25 979.24,-63.25 1066.24,-63.25 1066.24,-61.25 979.24,-61.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-59.25 979.24,-61.25 1066.24,-61.25 1066.24,-59.25 979.24,-59.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-57.25 979.24,-59.25 1066.24,-59.25 1066.24,-57.25 979.24,-57.25"/>
|
||||
<text text-anchor="start" x="980.87" y="-41.95" font-family="arial" font-size="14.00"> X2:4</text>
|
||||
<text text-anchor="start" x="1017.87" y="-41.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1029.24" y="-41.95" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="1053.87" y="-41.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1060.87" y="-41.95" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-35.25 979.24,-37.25 1066.24,-37.25 1066.24,-35.25 979.24,-35.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-33.25 979.24,-35.25 1066.24,-35.25 1066.24,-33.25 979.24,-33.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="979.24,-31.25 979.24,-33.25 1066.24,-33.25 1066.24,-31.25 979.24,-31.25"/>
|
||||
<text text-anchor="start" x="995.87" y="-15.95" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-108.25C899.5,-108.27 915.49,-110.27 979.25,-110.25"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M835.25,-110.25C899.25,-110.25 915.24,-112.25 979.25,-112.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-112.25C899.01,-112.23 915,-114.23 979.25,-114.25"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-83.75C899.32,-83.75 915.31,-84.25 979.25,-84.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-85.75C899.25,-85.75 915.25,-86.25 979.25,-86.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-87.75C899.19,-87.75 915.18,-88.25 979.25,-88.25"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-59.25C899.13,-59.25 915.12,-58.25 979.25,-58.25"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M835.25,-61.25C899.25,-61.25 915.24,-60.25 979.25,-60.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-63.25C899.38,-63.25 915.37,-62.25 979.25,-62.25"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-101.5C910.25,-101.52 926.24,-103.52 990,-103.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M846,-103.5C910.01,-103.5 925.99,-105.5 990,-105.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-105.5C909.76,-105.48 925.75,-107.48 990,-107.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-34.75C898.95,-34.77 914.94,-32.27 979.25,-32.25"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M835.25,-36.75C899.25,-36.75 915.24,-34.25 979.25,-34.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M835.25,-38.75C899.56,-38.73 915.55,-36.23 979.25,-36.25"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-77.5C910.13,-77.5 926.12,-78.5 990,-78.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-79.5C910,-79.5 926,-80.5 990,-80.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-81.5C909.88,-81.5 925.87,-82.5 990,-82.5"/>
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-114.25C1037.24,-114.25 1008.25,-114.25 979.25,-114.25"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1066.24,-112.25C1037.24,-112.25 1008.25,-112.25 979.25,-112.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-110.25C1037.24,-110.25 1008.25,-110.25 979.25,-110.25"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-54.5C909.88,-54.5 925.87,-53.5 990,-53.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M846,-56.5C910,-56.5 926,-55.5 990,-55.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-58.5C910.13,-58.5 926.12,-57.5 990,-57.5"/>
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-88.25C1037.24,-88.25 1008.25,-88.25 979.25,-88.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-86.25C1037.24,-86.25 1008.25,-86.25 979.25,-86.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-84.25C1037.24,-84.25 1008.25,-84.25 979.25,-84.25"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-31.5C909.64,-31.53 925.62,-28.53 990,-28.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M846,-33.5C910.01,-33.5 925.99,-30.5 990,-30.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M846,-35.5C910.38,-35.47 926.36,-32.47 990,-32.5"/>
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-62.25C1037.24,-62.25 1008.25,-62.25 979.25,-62.25"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M1066.24,-60.25C1037.24,-60.25 1008.25,-60.25 979.25,-60.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-58.25C1037.24,-58.25 1008.25,-58.25 979.25,-58.25"/>
|
||||
</g>
|
||||
<!-- W2--W2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>W2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-36.25C1037.24,-36.25 1008.25,-36.25 979.25,-36.25"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M1066.24,-34.25C1037.24,-34.25 1008.25,-34.25 979.25,-34.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1066.24,-32.25C1037.24,-32.25 1008.25,-32.25 979.25,-32.25"/>
|
||||
</g>
|
||||
<!-- W1 -->
|
||||
<g id="node3" class="node">
|
||||
<g id="node4" class="node">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="102,-192.5 0,-192.5 0,-8.5 102,-8.5 102,-192.5"/>
|
||||
<polygon fill="none" stroke="black" points="0,-169.5 0,-192.5 102,-192.5 102,-169.5 0,-169.5"/>
|
||||
<text text-anchor="start" x="40.5" y="-177.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-146.5 0,-169.5 41,-169.5 41,-146.5 0,-146.5"/>
|
||||
<text text-anchor="start" x="13" y="-154.3" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="41,-146.5 41,-169.5 102,-169.5 102,-146.5 41,-146.5"/>
|
||||
<text text-anchor="start" x="53.5" y="-154.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="2" y="-133.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="10.5" y="-114.3" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<text text-anchor="start" x="71" y="-114.3" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-106.5 0,-108.5 102,-108.5 102,-106.5 0,-106.5"/>
|
||||
<polygon fill="#ff0000" stroke="transparent" points="0,-104.5 0,-106.5 102,-106.5 102,-104.5 0,-104.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-102.5 0,-104.5 102,-104.5 102,-102.5 0,-102.5"/>
|
||||
<text text-anchor="start" x="11.5" y="-89.3" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<text text-anchor="start" x="71" y="-89.3" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-81.5 0,-83.5 102,-83.5 102,-81.5 0,-81.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-79.5 0,-81.5 102,-81.5 102,-79.5 0,-79.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-77.5 0,-79.5 102,-79.5 102,-77.5 0,-77.5"/>
|
||||
<text text-anchor="start" x="11" y="-64.3" font-family="arial" font-size="14.00">     BU    </text>
|
||||
<text text-anchor="start" x="71" y="-64.3" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-56.5 0,-58.5 102,-58.5 102,-56.5 0,-56.5"/>
|
||||
<polygon fill="#0066ff" stroke="transparent" points="0,-54.5 0,-56.5 102,-56.5 102,-54.5 0,-54.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-52.5 0,-54.5 102,-54.5 102,-52.5 0,-52.5"/>
|
||||
<text text-anchor="start" x="10" y="-39.3" font-family="arial" font-size="14.00">     GN    </text>
|
||||
<text text-anchor="start" x="71" y="-39.3" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-31.5 0,-33.5 102,-33.5 102,-31.5 0,-31.5"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="0,-29.5 0,-31.5 102,-31.5 102,-29.5 0,-29.5"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="0,-27.5 0,-29.5 102,-29.5 102,-27.5 0,-27.5"/>
|
||||
<text text-anchor="start" x="2" y="-14.3" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="87,-204.25 0,-204.25 0,-11.25 87,-11.25 87,-204.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-11.25 0,-204.25 87,-204.25 87,-11.25 0,-11.25"/>
|
||||
<polygon fill="none" stroke="black" points="0,-179.75 0,-204.25 87,-204.25 87,-179.75 0,-179.75"/>
|
||||
<text text-anchor="start" x="32.25" y="-186.95" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-155.25 0,-179.75 33,-179.75 33,-155.25 0,-155.25"/>
|
||||
<text text-anchor="start" x="9" y="-162.45" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="33,-155.25 33,-179.75 87,-179.75 87,-155.25 33,-155.25"/>
|
||||
<text text-anchor="start" x="42" y="-162.45" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="1.63" y="-139.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="1.63" y="-119.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="8.63" y="-119.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="20" y="-119.95" font-family="arial" font-size="14.00">RD</text>
|
||||
<text text-anchor="start" x="44.63" y="-119.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="51.62" y="-119.95" font-family="arial" font-size="14.00">X1:1 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-113.25 0,-115.25 87,-115.25 87,-113.25 0,-113.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-111.25 0,-113.25 87,-113.25 87,-111.25 0,-111.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-109.25 0,-111.25 87,-111.25 87,-109.25 0,-109.25"/>
|
||||
<text text-anchor="start" x="1.63" y="-93.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="8.63" y="-93.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="20.75" y="-93.95" font-family="arial" font-size="14.00">BK</text>
|
||||
<text text-anchor="start" x="44.63" y="-93.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="51.62" y="-93.95" font-family="arial" font-size="14.00">X1:2 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-87.25 0,-89.25 87,-89.25 87,-87.25 0,-87.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-85.25 0,-87.25 87,-87.25 87,-85.25 0,-85.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-83.25 0,-85.25 87,-85.25 87,-83.25 0,-83.25"/>
|
||||
<text text-anchor="start" x="1.63" y="-67.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="8.63" y="-67.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="20.75" y="-67.95" font-family="arial" font-size="14.00">BU</text>
|
||||
<text text-anchor="start" x="44.63" y="-67.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="51.62" y="-67.95" font-family="arial" font-size="14.00">X1:3 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-61.25 0,-63.25 87,-63.25 87,-61.25 0,-61.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-59.25 0,-61.25 87,-61.25 87,-59.25 0,-59.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-57.25 0,-59.25 87,-59.25 87,-57.25 0,-57.25"/>
|
||||
<text text-anchor="start" x="1.63" y="-41.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="8.63" y="-41.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="20" y="-41.95" font-family="arial" font-size="14.00">GN</text>
|
||||
<text text-anchor="start" x="44.63" y="-41.95" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="51.62" y="-41.95" font-family="arial" font-size="14.00">X1:4 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-35.25 0,-37.25 87,-37.25 87,-35.25 0,-35.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-33.25 0,-35.25 87,-35.25 87,-33.25 0,-33.25"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-31.25 0,-33.25 87,-33.25 87,-31.25 0,-31.25"/>
|
||||
<text text-anchor="start" x="1.63" y="-15.95" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-103.5C165.76,-103.52 181.75,-101.52 246,-101.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M102,-105.5C166.01,-105.5 181.99,-103.5 246,-103.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-107.5C166.25,-107.48 182.24,-105.48 246,-105.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-110.25C150.76,-110.27 166.75,-108.27 231,-108.25"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M87,-112.25C151,-112.25 167,-110.25 231,-110.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-114.25C151.25,-114.23 167.24,-112.23 231,-112.25"/>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<g id="edge11" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-78.5C165.88,-78.5 181.87,-77.5 246,-77.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-80.5C166,-80.5 182,-79.5 246,-79.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-82.5C166.13,-82.5 182.12,-81.5 246,-81.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-84.25C150.94,-84.25 166.93,-83.75 231,-83.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-86.25C151,-86.25 167,-85.75 231,-85.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-88.25C151.07,-88.25 167.06,-87.75 231,-87.75"/>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-53.5C166.13,-53.5 182.12,-54.5 246,-54.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M102,-55.5C166,-55.5 182,-56.5 246,-56.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-57.5C165.88,-57.5 181.87,-58.5 246,-58.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-58.25C151.13,-58.25 167.12,-59.25 231,-59.25"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M87,-60.25C151,-60.25 167,-61.25 231,-61.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-62.25C150.88,-62.25 166.87,-63.25 231,-63.25"/>
|
||||
</g>
|
||||
<!-- W1--X1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<g id="edge13" class="edge">
|
||||
<title>W1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-28.5C166.38,-28.53 182.36,-31.53 246,-31.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M102,-30.5C166.01,-30.5 181.99,-33.5 246,-33.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M102,-32.5C165.64,-32.47 181.62,-35.47 246,-35.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-32.25C151.31,-32.27 167.3,-34.77 231,-34.75"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M87,-34.25C151,-34.25 167,-36.75 231,-36.75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-36.25C150.7,-36.23 166.69,-38.73 231,-38.75"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-114.25C58,-114.25 29,-114.25 0,-114.25"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M87,-112.25C58,-112.25 29,-112.25 0,-112.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-110.25C58,-110.25 29,-110.25 0,-110.25"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-88.25C58,-88.25 29,-88.25 0,-88.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-86.25C58,-86.25 29,-86.25 0,-86.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-84.25C58,-84.25 29,-84.25 0,-84.25"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-62.25C58,-62.25 29,-62.25 0,-62.25"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M87,-60.25C58,-60.25 29,-60.25 0,-60.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-58.25C58,-58.25 29,-58.25 0,-58.25"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge17" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-36.25C58,-36.25 29,-36.25 0,-36.25"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M87,-34.25C58,-34.25 29,-34.25 0,-34.25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-32.25C58,-32.25 29,-32.25 0,-32.25"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 21 KiB |
7
examples/ex12.tsv
generated
Normal file
@ -0,0 +1,7 @@
|
||||
# Qty Unit Description Designators
|
||||
1 1 Connector, Dupont 2.54mm, female, 5 pins, BK X2
|
||||
2 1 Connector, Dupont 2.54mm, male, 5 pins, BK X1
|
||||
3 2 m Wire, BK W1, W2
|
||||
4 2 m Wire, BU W1, W2
|
||||
5 2 m Wire, GN W1, W2
|
||||
6 2 m Wire, RD W1, W2
|
||||
|
64
examples/ex12_wv_gvpr.gvpr
Normal file
@ -0,0 +1,64 @@
|
||||
/*******************************************************************
|
||||
|
||||
see https://forum.graphviz.org/t/straitening-one-line-throu-a-table/2196 and https://forum.graphviz.org/t/way-of-drawing-a-black-circle-inside-a-table-field/2273/12
|
||||
input must include pos values (must be output from one of the engines w/ -Tdot)#
|
||||
Thanks to steveroush and FeRDNYC
|
||||
|
||||
*******************************************************************/
|
||||
BEG_G{
|
||||
double x1,y1,x2,y2,x3,y3,x4,y4;
|
||||
string ptSize, tok[int], pt[];
|
||||
int cnt, circ, i;
|
||||
node_t aNode;
|
||||
|
||||
circ=0;
|
||||
|
||||
/***************************************
|
||||
$G.bb="";
|
||||
$G.nodesep="";
|
||||
$G.ranksep="";
|
||||
$G.splines="true";
|
||||
****************************************/
|
||||
}
|
||||
|
||||
// This removes the label text but keeps the position
|
||||
E[noLabel] {
|
||||
$.label=""; // remove pesky label
|
||||
// $.lp=""; // remove peskier label pos
|
||||
}
|
||||
|
||||
E[straight] {
|
||||
cnt=tokens($.pos,tok," ");
|
||||
$.oldpos=$.pos;
|
||||
x1 = xOf(tok[0]);
|
||||
y1 = yOf(tok[0]);
|
||||
x4 = xOf(tok[cnt-1]);
|
||||
y4 = yOf(tok[cnt-1]);
|
||||
x2 = x1 + (x4-x1)/3.;
|
||||
y2 = y1 + (y4-y1)/3.;
|
||||
x3 = x1 + 2.*(x4-x1)/3.;
|
||||
y3 = y1 + 2.*(y4-y1)/3.;
|
||||
pos=sprintf("%.3f,%.3f %.3f,%.3f %.3f,%.3f %.3f,%.3f", x1,y1, x2,y2, x3,y3, x4,y4);
|
||||
$.label=""; // remove pesky label
|
||||
$.lp=""; // remove peskier label pos
|
||||
|
||||
if (hasAttr($, "addPTS") && $.addPTS!="" && $.colorPTS!=""){
|
||||
// now we place point nodes at the edge ends
|
||||
pt[1] = tok[0];
|
||||
pt[2] = tok[cnt-1];
|
||||
ptSize=$.addPTS;
|
||||
for (pt[i]) {
|
||||
if (i==2 && pt[1]==pt[2])
|
||||
continue;
|
||||
aNode=node($G, "__CIRCLE__" + (string)++circ);
|
||||
aNode.pos=pt[i];
|
||||
aNode.shape="point";
|
||||
aNode.width=ptSize;
|
||||
aNode.height=ptSize;
|
||||
aNode.style="filled";
|
||||
aNode.fillcolor=$.colorPTS;
|
||||
aNode.color=$.colorPTS;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
952
examples/ex13.gv
generated
808
examples/ex13.html
generated
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="generator" content="WireViz 0.4-dev - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.4-dev251 - https://github.com/formatc1702/WireViz">
|
||||
<title>ex13</title>
|
||||
<style>
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
}
|
||||
|
||||
</style>
|
||||
</head><body style="font-family:arial;background-color:#ffffff">
|
||||
</head><body style="font-family:arial;background-color:#FFFFFF">
|
||||
<h1>ex13</h1>
|
||||
<h2>Diagram</h2>
|
||||
|
||||
@ -30,376 +30,506 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="968pt" height="400pt"
|
||||
viewBox="0.00 0.00 968.00 400.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 396)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-396 964,-396 964,4 -4,4"/>
|
||||
<svg width="974pt" height="490pt"
|
||||
viewBox="0.00 0.00 973.50 490.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 486)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-486 969.5,-486 969.5,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="40,-256 0,-256 0,-118 40,-118 40,-256"/>
|
||||
<polygon fill="none" stroke="black" points="0,-233 0,-256 40,-256 40,-233 0,-233"/>
|
||||
<text text-anchor="start" x="11" y="-240.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-210 0,-233 40,-233 40,-210 0,-210"/>
|
||||
<text text-anchor="start" x="4" y="-217.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-187 0,-210 22,-210 22,-187 0,-187"/>
|
||||
<text text-anchor="start" x="6" y="-194.8" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="22,-187 22,-210 40,-210 40,-187 22,-187"/>
|
||||
<text text-anchor="start" x="27" y="-194.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-164 0,-187 22,-187 22,-164 0,-164"/>
|
||||
<text text-anchor="start" x="6" y="-171.8" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="22,-164 22,-187 40,-187 40,-164 22,-164"/>
|
||||
<text text-anchor="start" x="27" y="-171.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-141 0,-164 22,-164 22,-141 0,-141"/>
|
||||
<text text-anchor="start" x="5.5" y="-148.8" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="22,-141 22,-164 40,-164 40,-141 22,-141"/>
|
||||
<text text-anchor="start" x="27" y="-148.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-118 0,-141 22,-141 22,-118 0,-118"/>
|
||||
<text text-anchor="start" x="5.5" y="-125.8" font-family="arial" font-size="14.00">D</text>
|
||||
<polygon fill="none" stroke="black" points="22,-118 22,-141 40,-141 40,-118 22,-118"/>
|
||||
<text text-anchor="start" x="27" y="-125.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="39.5,-302 0,-302 0,-157 39.5,-157 39.5,-302"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-157 0,-302 39.5,-302 39.5,-157 0,-157"/>
|
||||
<polygon fill="none" stroke="black" points="0,-277.5 0,-302 39.5,-302 39.5,-277.5 0,-277.5"/>
|
||||
<text text-anchor="start" x="10.75" y="-284.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-253 0,-277.5 39.5,-277.5 39.5,-253 0,-253"/>
|
||||
<text text-anchor="start" x="4" y="-260.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-229 0,-253 20.75,-253 20.75,-229 0,-229"/>
|
||||
<text text-anchor="start" x="5.5" y="-235.7" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="20.75,-229 20.75,-253 39.5,-253 39.5,-229 20.75,-229"/>
|
||||
<text text-anchor="start" x="26" y="-235.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-205 0,-229 20.75,-229 20.75,-205 0,-205"/>
|
||||
<text text-anchor="start" x="5.5" y="-211.7" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="20.75,-205 20.75,-229 39.5,-229 39.5,-205 20.75,-205"/>
|
||||
<text text-anchor="start" x="26" y="-211.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-181 0,-205 20.75,-205 20.75,-181 0,-181"/>
|
||||
<text text-anchor="start" x="5.12" y="-187.7" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="20.75,-181 20.75,-205 39.5,-205 39.5,-181 20.75,-181"/>
|
||||
<text text-anchor="start" x="26" y="-187.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-157 0,-181 20.75,-181 20.75,-157 0,-157"/>
|
||||
<text text-anchor="start" x="5.12" y="-163.7" font-family="arial" font-size="14.00">D</text>
|
||||
<polygon fill="none" stroke="black" points="20.75,-157 20.75,-181 39.5,-181 39.5,-157 20.75,-157"/>
|
||||
<text text-anchor="start" x="26" y="-163.7" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- C1 -->
|
||||
<g id="node8" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>C1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="310,-288 184,-288 184,-104 310,-104 310,-288"/>
|
||||
<polygon fill="none" stroke="black" points="184,-265 184,-288 310,-288 310,-265 184,-265"/>
|
||||
<text text-anchor="start" x="238" y="-272.8" font-family="arial" font-size="14.00">C1</text>
|
||||
<polygon fill="none" stroke="black" points="184,-242 184,-265 310,-265 310,-242 184,-242"/>
|
||||
<text text-anchor="start" x="239.5" y="-249.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="205.5" y="-228.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="186" y="-209.8" font-family="arial" font-size="14.00">X1:1:A</text>
|
||||
<text text-anchor="start" x="233" y="-209.8" font-family="arial" font-size="14.00">     1:WH    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="184,-202 184,-204 310,-204 310,-202 184,-202"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="184,-200 184,-202 310,-202 310,-200 184,-200"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="184,-198 184,-200 310,-200 310,-198 184,-198"/>
|
||||
<text text-anchor="start" x="186" y="-184.8" font-family="arial" font-size="14.00">X1:2:B</text>
|
||||
<text text-anchor="start" x="235" y="-184.8" font-family="arial" font-size="14.00">     2:BN    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="184,-177 184,-179 310,-179 310,-177 184,-177"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="184,-175 184,-177 310,-177 310,-175 184,-175"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="184,-173 184,-175 310,-175 310,-173 184,-173"/>
|
||||
<text text-anchor="start" x="186" y="-159.8" font-family="arial" font-size="14.00">X1:3:C</text>
|
||||
<text text-anchor="start" x="234.5" y="-159.8" font-family="arial" font-size="14.00">     3:GN    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="184,-152 184,-154 310,-154 310,-152 184,-152"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="184,-150 184,-152 310,-152 310,-150 184,-150"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="184,-148 184,-150 310,-150 310,-148 184,-148"/>
|
||||
<text text-anchor="start" x="186" y="-134.8" font-family="arial" font-size="14.00">X1:4:D</text>
|
||||
<text text-anchor="start" x="235.5" y="-134.8" font-family="arial" font-size="14.00">     4:YE    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="184,-127 184,-129 310,-129 310,-127 184,-127"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="184,-125 184,-127 310,-127 310,-125 184,-125"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="184,-123 184,-125 310,-125 310,-123 184,-123"/>
|
||||
<text text-anchor="start" x="205.5" y="-109.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="314.5,-336 183.5,-336 183.5,-143 314.5,-143 314.5,-336"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-143 183.5,-336 314.5,-336 314.5,-143 183.5,-143"/>
|
||||
<polygon fill="none" stroke="black" points="183.5,-311.5 183.5,-336 314.5,-336 314.5,-311.5 183.5,-311.5"/>
|
||||
<text text-anchor="start" x="239.62" y="-318.7" font-family="arial" font-size="14.00">C1</text>
|
||||
<polygon fill="none" stroke="black" points="183.5,-287 183.5,-311.5 314.5,-311.5 314.5,-287 183.5,-287"/>
|
||||
<text text-anchor="start" x="241.5" y="-294.2" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="207.62" y="-271.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="185.5" y="-251.7" font-family="arial" font-size="14.00"> X1:1:A</text>
|
||||
<text text-anchor="start" x="237.12" y="-251.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="244.5" y="-251.7" font-family="arial" font-size="14.00">1:WH</text>
|
||||
<text text-anchor="start" x="284.12" y="-251.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="291.5" y="-251.7" font-family="arial" font-size="14.00">F1 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-245 183.5,-247 314.5,-247 314.5,-245 183.5,-245"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-243 183.5,-245 314.5,-245 314.5,-243 183.5,-243"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-241 183.5,-243 314.5,-243 314.5,-241 183.5,-241"/>
|
||||
<text text-anchor="start" x="185.5" y="-225.7" font-family="arial" font-size="14.00"> X1:2:B</text>
|
||||
<text text-anchor="start" x="237.12" y="-225.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="246.75" y="-225.7" font-family="arial" font-size="14.00">2:BN</text>
|
||||
<text text-anchor="start" x="284.12" y="-225.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="291.5" y="-225.7" font-family="arial" font-size="14.00">F2 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-219 183.5,-221 314.5,-221 314.5,-219 183.5,-219"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-217 183.5,-219 314.5,-219 314.5,-217 183.5,-217"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-215 183.5,-217 314.5,-217 314.5,-215 183.5,-215"/>
|
||||
<text text-anchor="start" x="185.5" y="-199.7" font-family="arial" font-size="14.00"> X1:3:C</text>
|
||||
<text text-anchor="start" x="237.12" y="-199.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="246" y="-199.7" font-family="arial" font-size="14.00">3:GN</text>
|
||||
<text text-anchor="start" x="284.12" y="-199.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="291.5" y="-199.7" font-family="arial" font-size="14.00">F3 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-193 183.5,-195 314.5,-195 314.5,-193 183.5,-193"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-191 183.5,-193 314.5,-193 314.5,-191 183.5,-191"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-189 183.5,-191 314.5,-191 314.5,-189 183.5,-189"/>
|
||||
<text text-anchor="start" x="185.5" y="-173.7" font-family="arial" font-size="14.00"> X1:4:D</text>
|
||||
<text text-anchor="start" x="237.12" y="-173.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="247.12" y="-173.7" font-family="arial" font-size="14.00">4:YE</text>
|
||||
<text text-anchor="start" x="284.12" y="-173.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="291.5" y="-173.7" font-family="arial" font-size="14.00">F4 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-167 183.5,-169 314.5,-169 314.5,-167 183.5,-167"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-165 183.5,-167 314.5,-167 314.5,-165 183.5,-165"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-163 183.5,-165 314.5,-165 314.5,-163 183.5,-163"/>
|
||||
<text text-anchor="start" x="207.62" y="-147.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M40,-197C104.25,-197.02 120.24,-199.02 184,-199"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M40,-199C104.01,-199 119.99,-201 184,-201"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M40,-201C103.76,-200.98 119.75,-202.98 184,-203"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39.5,-239C103.88,-239.04 119.86,-242.04 183.5,-242"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M39.5,-241C103.51,-241 119.49,-244 183.5,-244"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39.5,-243C103.14,-242.97 119.12,-245.97 183.5,-246"/>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39.5,-215C103.62,-215.01 119.62,-216.01 183.5,-216"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M39.5,-217C103.5,-217 119.5,-218 183.5,-218"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39.5,-219C103.38,-219 119.38,-220 183.5,-220"/>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M40,-173C104.13,-173 120.12,-174 184,-174"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M40,-175C104,-175 120,-176 184,-176"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M40,-177C103.88,-177 119.87,-178 184,-178"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39.5,-191C103.38,-191.01 119.38,-190.01 183.5,-190"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M39.5,-193C103.5,-193 119.5,-192 183.5,-192"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39.5,-195C103.62,-195 119.62,-194 183.5,-194"/>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39.5,-167C103.14,-167.04 119.12,-164.04 183.5,-164"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M39.5,-169C103.51,-169 119.49,-166 183.5,-166"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39.5,-171C103.88,-170.97 119.86,-167.97 183.5,-168"/>
|
||||
</g>
|
||||
<!-- C1--C1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M40,-150C103.88,-150 119.87,-149 184,-149"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M40,-152C104,-152 120,-151 184,-151"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M40,-154C104.13,-154 120.12,-153 184,-153"/>
|
||||
<title>C1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-246C270.83,-246 227.17,-246 183.5,-246"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M314.5,-244C270.83,-244 227.17,-244 183.5,-244"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-242C270.83,-242 227.17,-242 183.5,-242"/>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<!-- C1--C1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>C1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-220C270.83,-220 227.17,-220 183.5,-220"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M314.5,-218C270.83,-218 227.17,-218 183.5,-218"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-216C270.83,-216 227.17,-216 183.5,-216"/>
|
||||
</g>
|
||||
<!-- C1--C1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M40,-127C103.64,-127.03 119.62,-124.03 184,-124"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M40,-129C104.01,-129 119.99,-126 184,-126"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M40,-131C104.38,-130.97 120.36,-127.97 184,-128"/>
|
||||
<title>C1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-194C270.83,-194 227.17,-194 183.5,-194"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M314.5,-192C270.83,-192 227.17,-192 183.5,-192"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-190C270.83,-190 227.17,-190 183.5,-190"/>
|
||||
</g>
|
||||
<!-- C1--C1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>C1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-168C270.83,-168 227.17,-168 183.5,-168"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M314.5,-166C270.83,-166 227.17,-166 183.5,-166"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-164C270.83,-164 227.17,-164 183.5,-164"/>
|
||||
</g>
|
||||
<!-- F1 -->
|
||||
<g id="node2" class="node">
|
||||
<title>F1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="502,-245.5 454,-245.5 454,-222.5 502,-222.5 502,-245.5"/>
|
||||
<polygon fill="none" stroke="black" points="454,-222 454,-245 502,-245 502,-222 454,-222"/>
|
||||
<text text-anchor="start" x="458" y="-229.8" font-family="arial" font-size="14.00">ferrule</text>
|
||||
</g>
|
||||
<!-- C2 -->
|
||||
<g id="node9" class="node">
|
||||
<title>C2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="776,-392 646,-392 646,-208 776,-208 776,-392"/>
|
||||
<polygon fill="none" stroke="black" points="646,-369 646,-392 776,-392 776,-369 646,-369"/>
|
||||
<text text-anchor="start" x="702" y="-376.8" font-family="arial" font-size="14.00">C2</text>
|
||||
<polygon fill="none" stroke="black" points="646,-346 646,-369 776,-369 776,-346 646,-346"/>
|
||||
<text text-anchor="start" x="703.5" y="-353.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="648" y="-332.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="656" y="-313.8" font-family="arial" font-size="14.00">     1:WH    </text>
|
||||
<text text-anchor="start" x="731" y="-313.8" font-family="arial" font-size="14.00">X2:1:A</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-306 646,-308 776,-308 776,-306 646,-306"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="646,-304 646,-306 776,-306 776,-304 646,-304"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-302 646,-304 776,-304 776,-302 646,-302"/>
|
||||
<text text-anchor="start" x="658" y="-288.8" font-family="arial" font-size="14.00">     2:BN    </text>
|
||||
<text text-anchor="start" x="731" y="-288.8" font-family="arial" font-size="14.00">X2:2:B</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-281 646,-283 776,-283 776,-281 646,-281"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="646,-279 646,-281 776,-281 776,-279 646,-279"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-277 646,-279 776,-279 776,-277 646,-277"/>
|
||||
<text text-anchor="start" x="657.5" y="-263.8" font-family="arial" font-size="14.00">     3:GN    </text>
|
||||
<text text-anchor="start" x="731" y="-263.8" font-family="arial" font-size="14.00">X2:3:C</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-256 646,-258 776,-258 776,-256 646,-256"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="646,-254 646,-256 776,-256 776,-254 646,-254"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-252 646,-254 776,-254 776,-252 646,-252"/>
|
||||
<text text-anchor="start" x="658.5" y="-238.8" font-family="arial" font-size="14.00">     4:YE    </text>
|
||||
<text text-anchor="start" x="731" y="-238.8" font-family="arial" font-size="14.00">X2:4:D</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-231 646,-233 776,-233 776,-231 646,-231"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="646,-229 646,-231 776,-231 776,-229 646,-229"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-227 646,-229 776,-229 776,-227 646,-227"/>
|
||||
<text text-anchor="start" x="648" y="-213.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- F1--C2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>F1:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-232C575.36,-233.96 576.64,-304.96 646,-303"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M502,-234C573.36,-234 574.64,-305 646,-305"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-236C571.36,-234.04 572.64,-305.04 646,-307"/>
|
||||
</g>
|
||||
<!-- C3 -->
|
||||
<g id="node10" class="node">
|
||||
<title>C3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="776,-184 646,-184 646,0 776,0 776,-184"/>
|
||||
<polygon fill="none" stroke="black" points="646,-161 646,-184 776,-184 776,-161 646,-161"/>
|
||||
<text text-anchor="start" x="702" y="-168.8" font-family="arial" font-size="14.00">C3</text>
|
||||
<polygon fill="none" stroke="black" points="646,-138 646,-161 776,-161 776,-138 646,-138"/>
|
||||
<text text-anchor="start" x="703.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="648" y="-124.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="656" y="-105.8" font-family="arial" font-size="14.00">     1:WH    </text>
|
||||
<text text-anchor="start" x="731" y="-105.8" font-family="arial" font-size="14.00">X3:1:A</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-98 646,-100 776,-100 776,-98 646,-98"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="646,-96 646,-98 776,-98 776,-96 646,-96"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-94 646,-96 776,-96 776,-94 646,-94"/>
|
||||
<text text-anchor="start" x="658" y="-80.8" font-family="arial" font-size="14.00">     2:BN    </text>
|
||||
<text text-anchor="start" x="731" y="-80.8" font-family="arial" font-size="14.00">X3:2:B</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-73 646,-75 776,-75 776,-73 646,-73"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="646,-71 646,-73 776,-73 776,-71 646,-71"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-69 646,-71 776,-71 776,-69 646,-69"/>
|
||||
<text text-anchor="start" x="657.5" y="-55.8" font-family="arial" font-size="14.00">     3:GN    </text>
|
||||
<text text-anchor="start" x="731" y="-55.8" font-family="arial" font-size="14.00">X3:3:C</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-48 646,-50 776,-50 776,-48 646,-48"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="646,-46 646,-48 776,-48 776,-46 646,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-44 646,-46 776,-46 776,-44 646,-44"/>
|
||||
<text text-anchor="start" x="658.5" y="-30.8" font-family="arial" font-size="14.00">     4:YE    </text>
|
||||
<text text-anchor="start" x="731" y="-30.8" font-family="arial" font-size="14.00">X3:4:D</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-23 646,-25 776,-25 776,-23 646,-23"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="646,-21 646,-23 776,-23 776,-21 646,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-19 646,-21 776,-21 776,-19 646,-19"/>
|
||||
<text text-anchor="start" x="648" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- F1--C3 -->
|
||||
<g id="edge17" class="edge">
|
||||
<title>F1:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-232C588.39,-234.46 555.72,-97.46 646,-95"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M502,-234C590.34,-234 557.66,-97 646,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-236C592.28,-233.54 559.61,-96.54 646,-99"/>
|
||||
</g>
|
||||
<!-- F2 -->
|
||||
<g id="node3" class="node">
|
||||
<title>F2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="502,-198.5 454,-198.5 454,-175.5 502,-175.5 502,-198.5"/>
|
||||
<polygon fill="none" stroke="black" points="454,-175 454,-198 502,-198 502,-175 454,-175"/>
|
||||
<text text-anchor="start" x="458" y="-182.8" font-family="arial" font-size="14.00">ferrule</text>
|
||||
</g>
|
||||
<!-- F2--C2 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>F2:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-185C580.18,-187.18 571.81,-280.18 646,-278"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M502,-187C578.19,-187 569.81,-280 646,-280"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-189C576.19,-186.82 567.82,-279.82 646,-282"/>
|
||||
</g>
|
||||
<!-- F2--C3 -->
|
||||
<g id="edge19" class="edge">
|
||||
<title>F2:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-185C581.93,-187.34 562.12,-72.34 646,-70"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M502,-187C583.9,-187 564.1,-72 646,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-189C585.88,-186.66 566.07,-71.66 646,-74"/>
|
||||
</g>
|
||||
<!-- F3 -->
|
||||
<g id="node4" class="node">
|
||||
<title>F3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="502,-151.5 454,-151.5 454,-128.5 502,-128.5 502,-151.5"/>
|
||||
<polygon fill="none" stroke="black" points="454,-128 454,-151 502,-151 502,-128 454,-128"/>
|
||||
<text text-anchor="start" x="458" y="-135.8" font-family="arial" font-size="14.00">ferrule</text>
|
||||
</g>
|
||||
<!-- F3--C2 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>F3:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-138C585.88,-140.34 566.07,-255.34 646,-253"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M502,-140C583.9,-140 564.1,-255 646,-255"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-142C581.93,-139.66 562.12,-254.66 646,-257"/>
|
||||
</g>
|
||||
<!-- F3--C3 -->
|
||||
<g id="edge21" class="edge">
|
||||
<title>F3:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-138C576.19,-140.18 567.82,-47.18 646,-45"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M502,-140C578.19,-140 569.81,-47 646,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-142C580.18,-139.82 571.81,-46.82 646,-49"/>
|
||||
</g>
|
||||
<!-- F4 -->
|
||||
<g id="node5" class="node">
|
||||
<title>F4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="502,-104.5 454,-104.5 454,-81.5 502,-81.5 502,-104.5"/>
|
||||
<polygon fill="none" stroke="black" points="454,-81 454,-104 502,-104 502,-81 454,-81"/>
|
||||
<text text-anchor="start" x="458" y="-88.8" font-family="arial" font-size="14.00">ferrule</text>
|
||||
</g>
|
||||
<!-- F4--C2 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>F4:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-91C592.28,-93.46 559.61,-230.46 646,-228"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M502,-93C590.34,-93 557.66,-230 646,-230"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-95C588.39,-92.54 555.72,-229.54 646,-232"/>
|
||||
</g>
|
||||
<!-- F4--C3 -->
|
||||
<g id="edge23" class="edge">
|
||||
<title>F4:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-91C571.36,-92.96 572.64,-21.96 646,-20"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M502,-93C573.36,-93 574.64,-22 646,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-95C575.36,-93.04 576.64,-22.04 646,-24"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node6" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="960,-360 920,-360 920,-222 960,-222 960,-360"/>
|
||||
<polygon fill="none" stroke="black" points="920,-337 920,-360 960,-360 960,-337 920,-337"/>
|
||||
<text text-anchor="start" x="931" y="-344.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="920,-314 920,-337 960,-337 960,-314 920,-314"/>
|
||||
<text text-anchor="start" x="924" y="-321.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="920,-291 920,-314 939,-314 939,-291 920,-291"/>
|
||||
<text text-anchor="start" x="925.5" y="-298.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="939,-291 939,-314 960,-314 960,-291 939,-291"/>
|
||||
<text text-anchor="start" x="944.5" y="-298.8" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="920,-268 920,-291 939,-291 939,-268 920,-268"/>
|
||||
<text text-anchor="start" x="925.5" y="-275.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="939,-268 939,-291 960,-291 960,-268 939,-268"/>
|
||||
<text text-anchor="start" x="944.5" y="-275.8" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="920,-245 920,-268 939,-268 939,-245 920,-245"/>
|
||||
<text text-anchor="start" x="925.5" y="-252.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="939,-245 939,-268 960,-268 960,-245 939,-245"/>
|
||||
<text text-anchor="start" x="944" y="-252.8" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="920,-222 920,-245 939,-245 939,-222 920,-222"/>
|
||||
<text text-anchor="start" x="925.5" y="-229.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="939,-222 939,-245 960,-245 960,-222 939,-222"/>
|
||||
<text text-anchor="start" x="944" y="-229.8" font-family="arial" font-size="14.00">D</text>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node7" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="960,-152 920,-152 920,-14 960,-14 960,-152"/>
|
||||
<polygon fill="none" stroke="black" points="920,-129 920,-152 960,-152 960,-129 920,-129"/>
|
||||
<text text-anchor="start" x="931" y="-136.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="920,-106 920,-129 960,-129 960,-106 920,-106"/>
|
||||
<text text-anchor="start" x="924" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="920,-83 920,-106 939,-106 939,-83 920,-83"/>
|
||||
<text text-anchor="start" x="925.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="939,-83 939,-106 960,-106 960,-83 939,-83"/>
|
||||
<text text-anchor="start" x="944.5" y="-90.8" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="920,-60 920,-83 939,-83 939,-60 920,-60"/>
|
||||
<text text-anchor="start" x="925.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="939,-60 939,-83 960,-83 960,-60 939,-60"/>
|
||||
<text text-anchor="start" x="944.5" y="-67.8" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="920,-37 920,-60 939,-60 939,-37 920,-37"/>
|
||||
<text text-anchor="start" x="925.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="939,-37 939,-60 960,-60 960,-37 939,-37"/>
|
||||
<text text-anchor="start" x="944" y="-44.8" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="920,-14 920,-37 939,-37 939,-14 920,-14"/>
|
||||
<text text-anchor="start" x="925.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="939,-14 939,-37 960,-37 960,-14 939,-14"/>
|
||||
<text text-anchor="start" x="944" y="-21.8" font-family="arial" font-size="14.00">D</text>
|
||||
<title>F1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="507,-291.75 458.5,-291.75 458.5,-267.25 507,-267.25 507,-291.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="458.5,-267.25 458.5,-291.75 507,-291.75 507,-267.25 458.5,-267.25"/>
|
||||
<polygon fill="none" stroke="black" points="458.5,-267.25 458.5,-291.75 507,-291.75 507,-267.25 458.5,-267.25"/>
|
||||
<text text-anchor="start" x="462.5" y="-274.45" font-family="arial" font-size="14.00">ferrule</text>
|
||||
</g>
|
||||
<!-- C1--F1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<g id="edge9" class="edge">
|
||||
<title>C1:e--F1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M310,-199C377.53,-200.28 390.21,-233.28 454,-232"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M310,-201C375.66,-201 388.34,-234 454,-234"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M310,-203C373.79,-201.72 386.47,-234.72 454,-236"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-242C382.31,-243.35 394.47,-278.85 458.5,-277.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M314.5,-244C380.42,-244 392.58,-279.5 458.5,-279.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-246C378.53,-244.65 390.69,-280.15 458.5,-281.5"/>
|
||||
</g>
|
||||
<!-- F2 -->
|
||||
<g id="node4" class="node">
|
||||
<title>F2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="507,-242.75 458.5,-242.75 458.5,-218.25 507,-218.25 507,-242.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="458.5,-218.25 458.5,-242.75 507,-242.75 507,-218.25 458.5,-218.25"/>
|
||||
<polygon fill="none" stroke="black" points="458.5,-218.25 458.5,-242.75 507,-242.75 507,-218.25 458.5,-218.25"/>
|
||||
<text text-anchor="start" x="462.5" y="-225.45" font-family="arial" font-size="14.00">ferrule</text>
|
||||
</g>
|
||||
<!-- C1--F2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<g id="edge10" class="edge">
|
||||
<title>C1:e--F2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M310,-174C375.34,-174.36 390.96,-185.36 454,-185"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M310,-176C374.19,-176 389.81,-187 454,-187"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M310,-178C373.04,-177.64 388.66,-188.64 454,-189"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-216C379.99,-216.44 395.51,-228.94 458.5,-228.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M314.5,-218C378.74,-218 394.26,-230.5 458.5,-230.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-220C377.49,-219.56 393.01,-232.06 458.5,-232.5"/>
|
||||
</g>
|
||||
<!-- F3 -->
|
||||
<g id="node5" class="node">
|
||||
<title>F3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="507,-193.75 458.5,-193.75 458.5,-169.25 507,-169.25 507,-193.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="458.5,-169.25 458.5,-193.75 507,-193.75 507,-169.25 458.5,-169.25"/>
|
||||
<polygon fill="none" stroke="black" points="458.5,-169.25 458.5,-193.75 507,-193.75 507,-169.25 458.5,-169.25"/>
|
||||
<text text-anchor="start" x="462.5" y="-176.45" font-family="arial" font-size="14.00">ferrule</text>
|
||||
</g>
|
||||
<!-- C1--F3 -->
|
||||
<g id="edge6" class="edge">
|
||||
<g id="edge11" class="edge">
|
||||
<title>C1:e--F3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M310,-149C373.04,-149.36 388.66,-138.36 454,-138"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M310,-151C374.19,-151 389.81,-140 454,-140"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M310,-153C375.34,-152.64 390.96,-141.64 454,-142"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-190C377.56,-190.34 393.22,-179.84 458.5,-179.5"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M314.5,-192C378.67,-192 394.33,-181.5 458.5,-181.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-194C379.78,-193.66 395.44,-183.16 458.5,-183.5"/>
|
||||
</g>
|
||||
<!-- F4 -->
|
||||
<g id="node6" class="node">
|
||||
<title>F4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="507,-144.75 458.5,-144.75 458.5,-120.25 507,-120.25 507,-144.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="458.5,-120.25 458.5,-144.75 507,-144.75 507,-120.25 458.5,-120.25"/>
|
||||
<polygon fill="none" stroke="black" points="458.5,-120.25 458.5,-144.75 507,-144.75 507,-120.25 458.5,-120.25"/>
|
||||
<text text-anchor="start" x="462.5" y="-127.45" font-family="arial" font-size="14.00">ferrule</text>
|
||||
</g>
|
||||
<!-- C1--F4 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>C1:e--F4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M310,-124C373.79,-125.28 386.47,-92.28 454,-91"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M310,-126C375.66,-126 388.34,-93 454,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M310,-128C377.53,-126.72 390.21,-93.72 454,-95"/>
|
||||
</g>
|
||||
<!-- C2--X2 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-303C839.76,-303.02 855.75,-301.02 920,-301"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M776,-305C840.01,-305 855.99,-303 920,-303"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-307C840.25,-306.98 856.24,-304.98 920,-305"/>
|
||||
</g>
|
||||
<!-- C2--X2 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-278C839.88,-278 855.87,-277 920,-277"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M776,-280C840,-280 856,-279 920,-279"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-282C840.13,-282 856.12,-281 920,-281"/>
|
||||
<title>C1:e--F4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-164C378.34,-165.3 390.92,-131.8 458.5,-130.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M314.5,-166C380.21,-166 392.79,-132.5 458.5,-132.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-168C382.08,-166.7 394.66,-133.2 458.5,-134.5"/>
|
||||
</g>
|
||||
<!-- C2--X2 -->
|
||||
<!-- C2 -->
|
||||
<g id="node7" class="node">
|
||||
<title>C2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="782,-482 651,-482 651,-289 782,-289 782,-482"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-289 651,-482 782,-482 782,-289 651,-289"/>
|
||||
<polygon fill="none" stroke="black" points="651,-457.5 651,-482 782,-482 782,-457.5 651,-457.5"/>
|
||||
<text text-anchor="start" x="707.12" y="-464.7" font-family="arial" font-size="14.00">C2</text>
|
||||
<polygon fill="none" stroke="black" points="651,-433 651,-457.5 782,-457.5 782,-433 651,-433"/>
|
||||
<text text-anchor="start" x="709" y="-440.2" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="661.62" y="-417.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="653" y="-397.7" font-family="arial" font-size="14.00"> F1</text>
|
||||
<text text-anchor="start" x="677.62" y="-397.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="685" y="-397.7" font-family="arial" font-size="14.00">1:WH</text>
|
||||
<text text-anchor="start" x="724.62" y="-397.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="732.75" y="-397.7" font-family="arial" font-size="14.00">X2:1:A </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-391 651,-393 782,-393 782,-391 651,-391"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-389 651,-391 782,-391 782,-389 651,-389"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-387 651,-389 782,-389 782,-387 651,-387"/>
|
||||
<text text-anchor="start" x="653" y="-371.7" font-family="arial" font-size="14.00"> F2</text>
|
||||
<text text-anchor="start" x="677.62" y="-371.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="687.25" y="-371.7" font-family="arial" font-size="14.00">2:BN</text>
|
||||
<text text-anchor="start" x="724.62" y="-371.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="732.75" y="-371.7" font-family="arial" font-size="14.00">X2:2:B </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-365 651,-367 782,-367 782,-365 651,-365"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-363 651,-365 782,-365 782,-363 651,-363"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-361 651,-363 782,-363 782,-361 651,-361"/>
|
||||
<text text-anchor="start" x="653" y="-345.7" font-family="arial" font-size="14.00"> F3</text>
|
||||
<text text-anchor="start" x="677.62" y="-345.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="686.5" y="-345.7" font-family="arial" font-size="14.00">3:GN</text>
|
||||
<text text-anchor="start" x="724.62" y="-345.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="732" y="-345.7" font-family="arial" font-size="14.00">X2:3:C </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-339 651,-341 782,-341 782,-339 651,-339"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-337 651,-339 782,-339 782,-337 651,-337"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-335 651,-337 782,-337 782,-335 651,-335"/>
|
||||
<text text-anchor="start" x="653" y="-319.7" font-family="arial" font-size="14.00"> F4</text>
|
||||
<text text-anchor="start" x="677.62" y="-319.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="687.62" y="-319.7" font-family="arial" font-size="14.00">4:YE</text>
|
||||
<text text-anchor="start" x="724.62" y="-319.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="732" y="-319.7" font-family="arial" font-size="14.00">X2:4:D </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-313 651,-315 782,-315 782,-313 651,-313"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-311 651,-313 782,-313 782,-311 651,-311"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-309 651,-311 782,-311 782,-309 651,-309"/>
|
||||
<text text-anchor="start" x="661.62" y="-293.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- F1--C2 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>F1:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-277.5C589.65,-279.81 572.31,-390.31 651,-388"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M507,-279.5C587.67,-279.5 570.33,-390 651,-390"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-281.5C585.69,-279.19 568.35,-389.69 651,-392"/>
|
||||
</g>
|
||||
<!-- C3 -->
|
||||
<g id="node8" class="node">
|
||||
<title>C3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="782,-193 651,-193 651,0 782,0 782,-193"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,0 651,-193 782,-193 782,0 651,0"/>
|
||||
<polygon fill="none" stroke="black" points="651,-168.5 651,-193 782,-193 782,-168.5 651,-168.5"/>
|
||||
<text text-anchor="start" x="707.12" y="-175.7" font-family="arial" font-size="14.00">C3</text>
|
||||
<polygon fill="none" stroke="black" points="651,-144 651,-168.5 782,-168.5 782,-144 651,-144"/>
|
||||
<text text-anchor="start" x="709" y="-151.2" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="661.62" y="-128.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="653" y="-108.7" font-family="arial" font-size="14.00"> F1</text>
|
||||
<text text-anchor="start" x="677.62" y="-108.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="685" y="-108.7" font-family="arial" font-size="14.00">1:WH</text>
|
||||
<text text-anchor="start" x="724.62" y="-108.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="732.75" y="-108.7" font-family="arial" font-size="14.00">X3:1:A </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-102 651,-104 782,-104 782,-102 651,-102"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-100 651,-102 782,-102 782,-100 651,-100"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-98 651,-100 782,-100 782,-98 651,-98"/>
|
||||
<text text-anchor="start" x="653" y="-82.7" font-family="arial" font-size="14.00"> F2</text>
|
||||
<text text-anchor="start" x="677.62" y="-82.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="687.25" y="-82.7" font-family="arial" font-size="14.00">2:BN</text>
|
||||
<text text-anchor="start" x="724.62" y="-82.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="732.75" y="-82.7" font-family="arial" font-size="14.00">X3:2:B </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-76 651,-78 782,-78 782,-76 651,-76"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-74 651,-76 782,-76 782,-74 651,-74"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-72 651,-74 782,-74 782,-72 651,-72"/>
|
||||
<text text-anchor="start" x="653" y="-56.7" font-family="arial" font-size="14.00"> F3</text>
|
||||
<text text-anchor="start" x="677.62" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="686.5" y="-56.7" font-family="arial" font-size="14.00">3:GN</text>
|
||||
<text text-anchor="start" x="724.62" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="732" y="-56.7" font-family="arial" font-size="14.00">X3:3:C </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-50 651,-52 782,-52 782,-50 651,-50"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-48 651,-50 782,-50 782,-48 651,-48"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-46 651,-48 782,-48 782,-46 651,-46"/>
|
||||
<text text-anchor="start" x="653" y="-30.7" font-family="arial" font-size="14.00"> F4</text>
|
||||
<text text-anchor="start" x="677.62" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="687.62" y="-30.7" font-family="arial" font-size="14.00">4:YE</text>
|
||||
<text text-anchor="start" x="724.62" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="732" y="-30.7" font-family="arial" font-size="14.00">X3:4:D </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-24 651,-26 782,-26 782,-24 651,-24"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-22 651,-24 782,-24 782,-22 651,-22"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-20 651,-22 782,-22 782,-20 651,-20"/>
|
||||
<text text-anchor="start" x="661.62" y="-4.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- F1--C3 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-253C840.13,-253 856.12,-254 920,-254"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M776,-255C840,-255 856,-256 920,-256"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-257C839.88,-257 855.87,-258 920,-258"/>
|
||||
<title>F1:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-277.5C607.03,-280.14 547.17,-101.64 651,-99"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M507,-279.5C608.93,-279.5 549.07,-101 651,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-281.5C610.83,-278.87 550.97,-100.37 651,-103"/>
|
||||
</g>
|
||||
<!-- F2--C2 -->
|
||||
<g id="edge31" class="edge">
|
||||
<title>F2:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-228.5C596.22,-230.95 565.68,-364.45 651,-362"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M507,-230.5C594.27,-230.5 563.73,-364 651,-364"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-232.5C592.32,-230.06 561.78,-363.56 651,-366"/>
|
||||
</g>
|
||||
<!-- F2--C3 -->
|
||||
<g id="edge32" class="edge">
|
||||
<title>F2:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-228.5C599.27,-231.05 554.89,-75.55 651,-73"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M507,-230.5C601.19,-230.5 556.81,-75 651,-75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-232.5C603.11,-229.95 558.73,-74.45 651,-77"/>
|
||||
</g>
|
||||
<!-- F3--C2 -->
|
||||
<g id="edge33" class="edge">
|
||||
<title>F3:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-179.5C603.44,-182.05 558.4,-338.55 651,-336"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M507,-181.5C601.52,-181.5 556.48,-338 651,-338"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-183.5C599.6,-180.95 554.56,-337.45 651,-340"/>
|
||||
</g>
|
||||
<!-- F3--C3 -->
|
||||
<g id="edge34" class="edge">
|
||||
<title>F3:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-179.5C592.02,-181.94 562.08,-49.44 651,-47"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M507,-181.5C593.97,-181.5 564.03,-49 651,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-183.5C595.92,-181.06 565.98,-48.56 651,-51"/>
|
||||
</g>
|
||||
<!-- F4--C2 -->
|
||||
<g id="edge35" class="edge">
|
||||
<title>F4:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-130.5C611.18,-133.14 550.62,-312.64 651,-310"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M507,-132.5C609.28,-132.5 548.72,-312 651,-312"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-134.5C607.38,-131.86 546.82,-311.36 651,-314"/>
|
||||
</g>
|
||||
<!-- F4--C3 -->
|
||||
<g id="edge36" class="edge">
|
||||
<title>F4:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-130.5C585.42,-132.8 568.62,-23.3 651,-21"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M507,-132.5C587.4,-132.5 570.6,-23 651,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-134.5C589.38,-132.2 572.58,-22.7 651,-25"/>
|
||||
</g>
|
||||
<!-- C2--C2 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>C2:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-392C738.33,-392 694.67,-392 651,-392"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M782,-390C738.33,-390 694.67,-390 651,-390"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-388C738.33,-388 694.67,-388 651,-388"/>
|
||||
</g>
|
||||
<!-- C2--C2 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>C2:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-366C738.33,-366 694.67,-366 651,-366"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M782,-364C738.33,-364 694.67,-364 651,-364"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-362C738.33,-362 694.67,-362 651,-362"/>
|
||||
</g>
|
||||
<!-- C2--C2 -->
|
||||
<g id="edge17" class="edge">
|
||||
<title>C2:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-340C738.33,-340 694.67,-340 651,-340"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M782,-338C738.33,-338 694.67,-338 651,-338"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-336C738.33,-336 694.67,-336 651,-336"/>
|
||||
</g>
|
||||
<!-- C2--C2 -->
|
||||
<g id="edge18" class="edge">
|
||||
<title>C2:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-314C738.33,-314 694.67,-314 651,-314"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M782,-312C738.33,-312 694.67,-312 651,-312"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-310C738.33,-310 694.67,-310 651,-310"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node9" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="965.5,-448 926,-448 926,-303 965.5,-303 965.5,-448"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="926,-303 926,-448 965.5,-448 965.5,-303 926,-303"/>
|
||||
<polygon fill="none" stroke="black" points="926,-423.5 926,-448 965.5,-448 965.5,-423.5 926,-423.5"/>
|
||||
<text text-anchor="start" x="936.75" y="-430.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="926,-399 926,-423.5 965.5,-423.5 965.5,-399 926,-399"/>
|
||||
<text text-anchor="start" x="930" y="-406.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="926,-375 926,-399 944.75,-399 944.75,-375 926,-375"/>
|
||||
<text text-anchor="start" x="931.25" y="-381.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="944.75,-375 944.75,-399 965.5,-399 965.5,-375 944.75,-375"/>
|
||||
<text text-anchor="start" x="950.25" y="-381.7" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="926,-351 926,-375 944.75,-375 944.75,-351 926,-351"/>
|
||||
<text text-anchor="start" x="931.25" y="-357.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="944.75,-351 944.75,-375 965.5,-375 965.5,-351 944.75,-351"/>
|
||||
<text text-anchor="start" x="950.25" y="-357.7" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="926,-327 926,-351 944.75,-351 944.75,-327 926,-327"/>
|
||||
<text text-anchor="start" x="931.25" y="-333.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="944.75,-327 944.75,-351 965.5,-351 965.5,-327 944.75,-327"/>
|
||||
<text text-anchor="start" x="949.88" y="-333.7" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="926,-303 926,-327 944.75,-327 944.75,-303 926,-303"/>
|
||||
<text text-anchor="start" x="931.25" y="-309.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="944.75,-303 944.75,-327 965.5,-327 965.5,-303 944.75,-303"/>
|
||||
<text text-anchor="start" x="949.88" y="-309.7" font-family="arial" font-size="14.00">D</text>
|
||||
</g>
|
||||
<!-- C2--X2 -->
|
||||
<g id="edge16" class="edge">
|
||||
<g id="edge19" class="edge">
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-228C840.38,-228.03 856.36,-231.03 920,-231"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M776,-230C840.01,-230 855.99,-233 920,-233"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-232C839.64,-231.97 855.62,-234.97 920,-235"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-388C845.64,-388.04 861.62,-385.04 926,-385"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M782,-390C846.01,-390 861.99,-387 926,-387"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-392C846.38,-391.97 862.36,-388.97 926,-389"/>
|
||||
</g>
|
||||
<!-- C3--X3 -->
|
||||
<g id="edge18" class="edge">
|
||||
<title>C3:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-95C839.76,-95.02 855.75,-93.02 920,-93"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M776,-97C840.01,-97 855.99,-95 920,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-99C840.25,-98.98 856.24,-96.98 920,-97"/>
|
||||
</g>
|
||||
<!-- C3--X3 -->
|
||||
<!-- C2--X2 -->
|
||||
<g id="edge20" class="edge">
|
||||
<title>C3:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-70C839.88,-70 855.87,-69 920,-69"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M776,-72C840,-72 856,-71 920,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-74C840.13,-74 856.12,-73 920,-73"/>
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-362C845.88,-362.01 861.88,-361.01 926,-361"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M782,-364C846,-364 862,-363 926,-363"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-366C846.12,-366 862.12,-365 926,-365"/>
|
||||
</g>
|
||||
<!-- C3--X3 -->
|
||||
<!-- C2--X2 -->
|
||||
<g id="edge21" class="edge">
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-336C846.12,-336.01 862.12,-337.01 926,-337"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M782,-338C846,-338 862,-339 926,-339"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-340C845.88,-340 861.88,-341 926,-341"/>
|
||||
</g>
|
||||
<!-- C2--X2 -->
|
||||
<g id="edge22" class="edge">
|
||||
<title>C3:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-45C840.13,-45 856.12,-46 920,-46"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M776,-47C840,-47 856,-48 920,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-49C839.88,-49 855.87,-50 920,-50"/>
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-310C846.38,-310.04 862.36,-313.04 926,-313"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M782,-312C846.01,-312 861.99,-315 926,-315"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-314C845.64,-313.97 861.62,-316.97 926,-317"/>
|
||||
</g>
|
||||
<!-- C3--C3 -->
|
||||
<g id="edge23" class="edge">
|
||||
<title>C3:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-103C738.33,-103 694.67,-103 651,-103"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M782,-101C738.33,-101 694.67,-101 651,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-99C738.33,-99 694.67,-99 651,-99"/>
|
||||
</g>
|
||||
<!-- C3--C3 -->
|
||||
<g id="edge24" class="edge">
|
||||
<title>C3:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-77C738.33,-77 694.67,-77 651,-77"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M782,-75C738.33,-75 694.67,-75 651,-75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-73C738.33,-73 694.67,-73 651,-73"/>
|
||||
</g>
|
||||
<!-- C3--C3 -->
|
||||
<g id="edge25" class="edge">
|
||||
<title>C3:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-51C738.33,-51 694.67,-51 651,-51"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M782,-49C738.33,-49 694.67,-49 651,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-47C738.33,-47 694.67,-47 651,-47"/>
|
||||
</g>
|
||||
<!-- C3--C3 -->
|
||||
<g id="edge26" class="edge">
|
||||
<title>C3:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-25C738.33,-25 694.67,-25 651,-25"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M782,-23C738.33,-23 694.67,-23 651,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-21C738.33,-21 694.67,-21 651,-21"/>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node10" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="965.5,-159 926,-159 926,-14 965.5,-14 965.5,-159"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="926,-14 926,-159 965.5,-159 965.5,-14 926,-14"/>
|
||||
<polygon fill="none" stroke="black" points="926,-134.5 926,-159 965.5,-159 965.5,-134.5 926,-134.5"/>
|
||||
<text text-anchor="start" x="936.75" y="-141.7" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="926,-110 926,-134.5 965.5,-134.5 965.5,-110 926,-110"/>
|
||||
<text text-anchor="start" x="930" y="-117.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="926,-86 926,-110 944.75,-110 944.75,-86 926,-86"/>
|
||||
<text text-anchor="start" x="931.25" y="-92.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="944.75,-86 944.75,-110 965.5,-110 965.5,-86 944.75,-86"/>
|
||||
<text text-anchor="start" x="950.25" y="-92.7" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="926,-62 926,-86 944.75,-86 944.75,-62 926,-62"/>
|
||||
<text text-anchor="start" x="931.25" y="-68.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="944.75,-62 944.75,-86 965.5,-86 965.5,-62 944.75,-62"/>
|
||||
<text text-anchor="start" x="950.25" y="-68.7" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="926,-38 926,-62 944.75,-62 944.75,-38 926,-38"/>
|
||||
<text text-anchor="start" x="931.25" y="-44.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="944.75,-38 944.75,-62 965.5,-62 965.5,-38 944.75,-38"/>
|
||||
<text text-anchor="start" x="949.88" y="-44.7" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="926,-14 926,-38 944.75,-38 944.75,-14 926,-14"/>
|
||||
<text text-anchor="start" x="931.25" y="-20.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="944.75,-14 944.75,-38 965.5,-38 965.5,-14 944.75,-14"/>
|
||||
<text text-anchor="start" x="949.88" y="-20.7" font-family="arial" font-size="14.00">D</text>
|
||||
</g>
|
||||
<!-- C3--X3 -->
|
||||
<g id="edge24" class="edge">
|
||||
<g id="edge27" class="edge">
|
||||
<title>C3:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-20C840.38,-20.03 856.36,-23.03 920,-23"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M776,-22C840.01,-22 855.99,-25 920,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-24C839.64,-23.97 855.62,-26.97 920,-27"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-99C845.64,-99.04 861.62,-96.04 926,-96"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M782,-101C846.01,-101 861.99,-98 926,-98"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-103C846.38,-102.97 862.36,-99.97 926,-100"/>
|
||||
</g>
|
||||
<!-- C3--X3 -->
|
||||
<g id="edge28" class="edge">
|
||||
<title>C3:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-73C845.88,-73.01 861.88,-72.01 926,-72"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M782,-75C846,-75 862,-74 926,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-77C846.12,-77 862.12,-76 926,-76"/>
|
||||
</g>
|
||||
<!-- C3--X3 -->
|
||||
<g id="edge29" class="edge">
|
||||
<title>C3:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-47C846.12,-47.01 862.12,-48.01 926,-48"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M782,-49C846,-49 862,-50 926,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-51C845.88,-51 861.88,-52 926,-52"/>
|
||||
</g>
|
||||
<!-- C3--X3 -->
|
||||
<g id="edge30" class="edge">
|
||||
<title>C3:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-21C846.38,-21.04 862.36,-24.04 926,-24"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M782,-23C846.01,-23 861.99,-26 926,-26"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-25C845.64,-24.97 861.62,-27.97 926,-28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
@ -415,32 +545,28 @@
|
||||
<div id="bom">
|
||||
<table class="bom">
|
||||
<tr>
|
||||
<th class="bom_col_id">Id</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_#">#</th>
|
||||
<th class="bom_col_qty">Qty</th>
|
||||
<th class="bom_col_unit">Unit</th>
|
||||
<th class="bom_col_description">Description</th>
|
||||
<th class="bom_col_designators">Designators</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">1</td>
|
||||
<td class="bom_col_description">Cable, 4 wires</td>
|
||||
<td class="bom_col_qty">0</td>
|
||||
<td class="bom_col_unit">m</td>
|
||||
<td class="bom_col_designators">C1, C2, C3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">2</td>
|
||||
<td class="bom_col_description">Connector, 4 pins</td>
|
||||
<td class="bom_col_#">1</td>
|
||||
<td class="bom_col_qty">3</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_description">Connector, 4 pins</td>
|
||||
<td class="bom_col_designators">X1, X2, X3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_id">3</td>
|
||||
<td class="bom_col_description">Connector, ferrule</td>
|
||||
<td class="bom_col_#">2</td>
|
||||
<td class="bom_col_qty">4</td>
|
||||
<td class="bom_col_unit"></td>
|
||||
<td class="bom_col_designators"></td>
|
||||
<td class="bom_col_description">Connector, ferrule</td>
|
||||
<td class="bom_col_designators">F1, F2, F3, F4</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bom_col_#">3</td>
|
||||
<td class="bom_col_qty">3</td>
|
||||
<td class="bom_col_description">Cable, 4 wires</td>
|
||||
<td class="bom_col_designators">C1, C2, C3</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
BIN
examples/ex13.png
generated
|
Before Width: | Height: | Size: 120 KiB After Width: | Height: | Size: 106 KiB |
774
examples/ex13.svg
generated
@ -1,376 +1,506 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 2.49.1 (20210923.0004)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="968pt" height="400pt"
|
||||
viewBox="0.00 0.00 968.00 400.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 396)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-396 964,-396 964,4 -4,4"/>
|
||||
<svg width="974pt" height="490pt"
|
||||
viewBox="0.00 0.00 973.50 490.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 486)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-486 969.5,-486 969.5,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="40,-256 0,-256 0,-118 40,-118 40,-256"/>
|
||||
<polygon fill="none" stroke="black" points="0,-233 0,-256 40,-256 40,-233 0,-233"/>
|
||||
<text text-anchor="start" x="11" y="-240.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-210 0,-233 40,-233 40,-210 0,-210"/>
|
||||
<text text-anchor="start" x="4" y="-217.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-187 0,-210 22,-210 22,-187 0,-187"/>
|
||||
<text text-anchor="start" x="6" y="-194.8" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="22,-187 22,-210 40,-210 40,-187 22,-187"/>
|
||||
<text text-anchor="start" x="27" y="-194.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-164 0,-187 22,-187 22,-164 0,-164"/>
|
||||
<text text-anchor="start" x="6" y="-171.8" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="22,-164 22,-187 40,-187 40,-164 22,-164"/>
|
||||
<text text-anchor="start" x="27" y="-171.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-141 0,-164 22,-164 22,-141 0,-141"/>
|
||||
<text text-anchor="start" x="5.5" y="-148.8" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="22,-141 22,-164 40,-164 40,-141 22,-141"/>
|
||||
<text text-anchor="start" x="27" y="-148.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-118 0,-141 22,-141 22,-118 0,-118"/>
|
||||
<text text-anchor="start" x="5.5" y="-125.8" font-family="arial" font-size="14.00">D</text>
|
||||
<polygon fill="none" stroke="black" points="22,-118 22,-141 40,-141 40,-118 22,-118"/>
|
||||
<text text-anchor="start" x="27" y="-125.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="39.5,-302 0,-302 0,-157 39.5,-157 39.5,-302"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-157 0,-302 39.5,-302 39.5,-157 0,-157"/>
|
||||
<polygon fill="none" stroke="black" points="0,-277.5 0,-302 39.5,-302 39.5,-277.5 0,-277.5"/>
|
||||
<text text-anchor="start" x="10.75" y="-284.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-253 0,-277.5 39.5,-277.5 39.5,-253 0,-253"/>
|
||||
<text text-anchor="start" x="4" y="-260.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-229 0,-253 20.75,-253 20.75,-229 0,-229"/>
|
||||
<text text-anchor="start" x="5.5" y="-235.7" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="20.75,-229 20.75,-253 39.5,-253 39.5,-229 20.75,-229"/>
|
||||
<text text-anchor="start" x="26" y="-235.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-205 0,-229 20.75,-229 20.75,-205 0,-205"/>
|
||||
<text text-anchor="start" x="5.5" y="-211.7" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="20.75,-205 20.75,-229 39.5,-229 39.5,-205 20.75,-205"/>
|
||||
<text text-anchor="start" x="26" y="-211.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-181 0,-205 20.75,-205 20.75,-181 0,-181"/>
|
||||
<text text-anchor="start" x="5.12" y="-187.7" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="20.75,-181 20.75,-205 39.5,-205 39.5,-181 20.75,-181"/>
|
||||
<text text-anchor="start" x="26" y="-187.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-157 0,-181 20.75,-181 20.75,-157 0,-157"/>
|
||||
<text text-anchor="start" x="5.12" y="-163.7" font-family="arial" font-size="14.00">D</text>
|
||||
<polygon fill="none" stroke="black" points="20.75,-157 20.75,-181 39.5,-181 39.5,-157 20.75,-157"/>
|
||||
<text text-anchor="start" x="26" y="-163.7" font-family="arial" font-size="14.00">4</text>
|
||||
</g>
|
||||
<!-- C1 -->
|
||||
<g id="node8" class="node">
|
||||
<g id="node2" class="node">
|
||||
<title>C1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="310,-288 184,-288 184,-104 310,-104 310,-288"/>
|
||||
<polygon fill="none" stroke="black" points="184,-265 184,-288 310,-288 310,-265 184,-265"/>
|
||||
<text text-anchor="start" x="238" y="-272.8" font-family="arial" font-size="14.00">C1</text>
|
||||
<polygon fill="none" stroke="black" points="184,-242 184,-265 310,-265 310,-242 184,-242"/>
|
||||
<text text-anchor="start" x="239.5" y="-249.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="205.5" y="-228.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="186" y="-209.8" font-family="arial" font-size="14.00">X1:1:A</text>
|
||||
<text text-anchor="start" x="233" y="-209.8" font-family="arial" font-size="14.00">     1:WH    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="184,-202 184,-204 310,-204 310,-202 184,-202"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="184,-200 184,-202 310,-202 310,-200 184,-200"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="184,-198 184,-200 310,-200 310,-198 184,-198"/>
|
||||
<text text-anchor="start" x="186" y="-184.8" font-family="arial" font-size="14.00">X1:2:B</text>
|
||||
<text text-anchor="start" x="235" y="-184.8" font-family="arial" font-size="14.00">     2:BN    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="184,-177 184,-179 310,-179 310,-177 184,-177"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="184,-175 184,-177 310,-177 310,-175 184,-175"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="184,-173 184,-175 310,-175 310,-173 184,-173"/>
|
||||
<text text-anchor="start" x="186" y="-159.8" font-family="arial" font-size="14.00">X1:3:C</text>
|
||||
<text text-anchor="start" x="234.5" y="-159.8" font-family="arial" font-size="14.00">     3:GN    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="184,-152 184,-154 310,-154 310,-152 184,-152"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="184,-150 184,-152 310,-152 310,-150 184,-150"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="184,-148 184,-150 310,-150 310,-148 184,-148"/>
|
||||
<text text-anchor="start" x="186" y="-134.8" font-family="arial" font-size="14.00">X1:4:D</text>
|
||||
<text text-anchor="start" x="235.5" y="-134.8" font-family="arial" font-size="14.00">     4:YE    </text>
|
||||
<polygon fill="#000000" stroke="transparent" points="184,-127 184,-129 310,-129 310,-127 184,-127"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="184,-125 184,-127 310,-127 310,-125 184,-125"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="184,-123 184,-125 310,-125 310,-123 184,-123"/>
|
||||
<text text-anchor="start" x="205.5" y="-109.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="314.5,-336 183.5,-336 183.5,-143 314.5,-143 314.5,-336"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-143 183.5,-336 314.5,-336 314.5,-143 183.5,-143"/>
|
||||
<polygon fill="none" stroke="black" points="183.5,-311.5 183.5,-336 314.5,-336 314.5,-311.5 183.5,-311.5"/>
|
||||
<text text-anchor="start" x="239.62" y="-318.7" font-family="arial" font-size="14.00">C1</text>
|
||||
<polygon fill="none" stroke="black" points="183.5,-287 183.5,-311.5 314.5,-311.5 314.5,-287 183.5,-287"/>
|
||||
<text text-anchor="start" x="241.5" y="-294.2" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="207.62" y="-271.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="185.5" y="-251.7" font-family="arial" font-size="14.00"> X1:1:A</text>
|
||||
<text text-anchor="start" x="237.12" y="-251.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="244.5" y="-251.7" font-family="arial" font-size="14.00">1:WH</text>
|
||||
<text text-anchor="start" x="284.12" y="-251.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="291.5" y="-251.7" font-family="arial" font-size="14.00">F1 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-245 183.5,-247 314.5,-247 314.5,-245 183.5,-245"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-243 183.5,-245 314.5,-245 314.5,-243 183.5,-243"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-241 183.5,-243 314.5,-243 314.5,-241 183.5,-241"/>
|
||||
<text text-anchor="start" x="185.5" y="-225.7" font-family="arial" font-size="14.00"> X1:2:B</text>
|
||||
<text text-anchor="start" x="237.12" y="-225.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="246.75" y="-225.7" font-family="arial" font-size="14.00">2:BN</text>
|
||||
<text text-anchor="start" x="284.12" y="-225.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="291.5" y="-225.7" font-family="arial" font-size="14.00">F2 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-219 183.5,-221 314.5,-221 314.5,-219 183.5,-219"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-217 183.5,-219 314.5,-219 314.5,-217 183.5,-217"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-215 183.5,-217 314.5,-217 314.5,-215 183.5,-215"/>
|
||||
<text text-anchor="start" x="185.5" y="-199.7" font-family="arial" font-size="14.00"> X1:3:C</text>
|
||||
<text text-anchor="start" x="237.12" y="-199.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="246" y="-199.7" font-family="arial" font-size="14.00">3:GN</text>
|
||||
<text text-anchor="start" x="284.12" y="-199.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="291.5" y="-199.7" font-family="arial" font-size="14.00">F3 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-193 183.5,-195 314.5,-195 314.5,-193 183.5,-193"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-191 183.5,-193 314.5,-193 314.5,-191 183.5,-191"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-189 183.5,-191 314.5,-191 314.5,-189 183.5,-189"/>
|
||||
<text text-anchor="start" x="185.5" y="-173.7" font-family="arial" font-size="14.00"> X1:4:D</text>
|
||||
<text text-anchor="start" x="237.12" y="-173.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="247.12" y="-173.7" font-family="arial" font-size="14.00">4:YE</text>
|
||||
<text text-anchor="start" x="284.12" y="-173.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="291.5" y="-173.7" font-family="arial" font-size="14.00">F4 </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-167 183.5,-169 314.5,-169 314.5,-167 183.5,-167"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-165 183.5,-167 314.5,-167 314.5,-165 183.5,-165"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-163 183.5,-165 314.5,-165 314.5,-163 183.5,-163"/>
|
||||
<text text-anchor="start" x="207.62" y="-147.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M40,-197C104.25,-197.02 120.24,-199.02 184,-199"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M40,-199C104.01,-199 119.99,-201 184,-201"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M40,-201C103.76,-200.98 119.75,-202.98 184,-203"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39.5,-239C103.88,-239.04 119.86,-242.04 183.5,-242"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M39.5,-241C103.51,-241 119.49,-244 183.5,-244"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39.5,-243C103.14,-242.97 119.12,-245.97 183.5,-246"/>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39.5,-215C103.62,-215.01 119.62,-216.01 183.5,-216"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M39.5,-217C103.5,-217 119.5,-218 183.5,-218"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39.5,-219C103.38,-219 119.38,-220 183.5,-220"/>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M40,-173C104.13,-173 120.12,-174 184,-174"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M40,-175C104,-175 120,-176 184,-176"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M40,-177C103.88,-177 119.87,-178 184,-178"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39.5,-191C103.38,-191.01 119.38,-190.01 183.5,-190"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M39.5,-193C103.5,-193 119.5,-192 183.5,-192"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39.5,-195C103.62,-195 119.62,-194 183.5,-194"/>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39.5,-167C103.14,-167.04 119.12,-164.04 183.5,-164"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M39.5,-169C103.51,-169 119.49,-166 183.5,-166"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39.5,-171C103.88,-170.97 119.86,-167.97 183.5,-168"/>
|
||||
</g>
|
||||
<!-- C1--C1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M40,-150C103.88,-150 119.87,-149 184,-149"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M40,-152C104,-152 120,-151 184,-151"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M40,-154C104.13,-154 120.12,-153 184,-153"/>
|
||||
<title>C1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-246C270.83,-246 227.17,-246 183.5,-246"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M314.5,-244C270.83,-244 227.17,-244 183.5,-244"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-242C270.83,-242 227.17,-242 183.5,-242"/>
|
||||
</g>
|
||||
<!-- X1--C1 -->
|
||||
<!-- C1--C1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>C1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-220C270.83,-220 227.17,-220 183.5,-220"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M314.5,-218C270.83,-218 227.17,-218 183.5,-218"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-216C270.83,-216 227.17,-216 183.5,-216"/>
|
||||
</g>
|
||||
<!-- C1--C1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M40,-127C103.64,-127.03 119.62,-124.03 184,-124"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M40,-129C104.01,-129 119.99,-126 184,-126"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M40,-131C104.38,-130.97 120.36,-127.97 184,-128"/>
|
||||
<title>C1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-194C270.83,-194 227.17,-194 183.5,-194"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M314.5,-192C270.83,-192 227.17,-192 183.5,-192"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-190C270.83,-190 227.17,-190 183.5,-190"/>
|
||||
</g>
|
||||
<!-- C1--C1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>C1:e--C1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-168C270.83,-168 227.17,-168 183.5,-168"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M314.5,-166C270.83,-166 227.17,-166 183.5,-166"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-164C270.83,-164 227.17,-164 183.5,-164"/>
|
||||
</g>
|
||||
<!-- F1 -->
|
||||
<g id="node2" class="node">
|
||||
<title>F1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="502,-245.5 454,-245.5 454,-222.5 502,-222.5 502,-245.5"/>
|
||||
<polygon fill="none" stroke="black" points="454,-222 454,-245 502,-245 502,-222 454,-222"/>
|
||||
<text text-anchor="start" x="458" y="-229.8" font-family="arial" font-size="14.00">ferrule</text>
|
||||
</g>
|
||||
<!-- C2 -->
|
||||
<g id="node9" class="node">
|
||||
<title>C2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="776,-392 646,-392 646,-208 776,-208 776,-392"/>
|
||||
<polygon fill="none" stroke="black" points="646,-369 646,-392 776,-392 776,-369 646,-369"/>
|
||||
<text text-anchor="start" x="702" y="-376.8" font-family="arial" font-size="14.00">C2</text>
|
||||
<polygon fill="none" stroke="black" points="646,-346 646,-369 776,-369 776,-346 646,-346"/>
|
||||
<text text-anchor="start" x="703.5" y="-353.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="648" y="-332.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="656" y="-313.8" font-family="arial" font-size="14.00">     1:WH    </text>
|
||||
<text text-anchor="start" x="731" y="-313.8" font-family="arial" font-size="14.00">X2:1:A</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-306 646,-308 776,-308 776,-306 646,-306"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="646,-304 646,-306 776,-306 776,-304 646,-304"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-302 646,-304 776,-304 776,-302 646,-302"/>
|
||||
<text text-anchor="start" x="658" y="-288.8" font-family="arial" font-size="14.00">     2:BN    </text>
|
||||
<text text-anchor="start" x="731" y="-288.8" font-family="arial" font-size="14.00">X2:2:B</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-281 646,-283 776,-283 776,-281 646,-281"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="646,-279 646,-281 776,-281 776,-279 646,-279"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-277 646,-279 776,-279 776,-277 646,-277"/>
|
||||
<text text-anchor="start" x="657.5" y="-263.8" font-family="arial" font-size="14.00">     3:GN    </text>
|
||||
<text text-anchor="start" x="731" y="-263.8" font-family="arial" font-size="14.00">X2:3:C</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-256 646,-258 776,-258 776,-256 646,-256"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="646,-254 646,-256 776,-256 776,-254 646,-254"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-252 646,-254 776,-254 776,-252 646,-252"/>
|
||||
<text text-anchor="start" x="658.5" y="-238.8" font-family="arial" font-size="14.00">     4:YE    </text>
|
||||
<text text-anchor="start" x="731" y="-238.8" font-family="arial" font-size="14.00">X2:4:D</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-231 646,-233 776,-233 776,-231 646,-231"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="646,-229 646,-231 776,-231 776,-229 646,-229"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-227 646,-229 776,-229 776,-227 646,-227"/>
|
||||
<text text-anchor="start" x="648" y="-213.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- F1--C2 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>F1:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-232C575.36,-233.96 576.64,-304.96 646,-303"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M502,-234C573.36,-234 574.64,-305 646,-305"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-236C571.36,-234.04 572.64,-305.04 646,-307"/>
|
||||
</g>
|
||||
<!-- C3 -->
|
||||
<g id="node10" class="node">
|
||||
<title>C3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="776,-184 646,-184 646,0 776,0 776,-184"/>
|
||||
<polygon fill="none" stroke="black" points="646,-161 646,-184 776,-184 776,-161 646,-161"/>
|
||||
<text text-anchor="start" x="702" y="-168.8" font-family="arial" font-size="14.00">C3</text>
|
||||
<polygon fill="none" stroke="black" points="646,-138 646,-161 776,-161 776,-138 646,-138"/>
|
||||
<text text-anchor="start" x="703.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="648" y="-124.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="656" y="-105.8" font-family="arial" font-size="14.00">     1:WH    </text>
|
||||
<text text-anchor="start" x="731" y="-105.8" font-family="arial" font-size="14.00">X3:1:A</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-98 646,-100 776,-100 776,-98 646,-98"/>
|
||||
<polygon fill="#ffffff" stroke="transparent" points="646,-96 646,-98 776,-98 776,-96 646,-96"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-94 646,-96 776,-96 776,-94 646,-94"/>
|
||||
<text text-anchor="start" x="658" y="-80.8" font-family="arial" font-size="14.00">     2:BN    </text>
|
||||
<text text-anchor="start" x="731" y="-80.8" font-family="arial" font-size="14.00">X3:2:B</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-73 646,-75 776,-75 776,-73 646,-73"/>
|
||||
<polygon fill="#895956" stroke="transparent" points="646,-71 646,-73 776,-73 776,-71 646,-71"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-69 646,-71 776,-71 776,-69 646,-69"/>
|
||||
<text text-anchor="start" x="657.5" y="-55.8" font-family="arial" font-size="14.00">     3:GN    </text>
|
||||
<text text-anchor="start" x="731" y="-55.8" font-family="arial" font-size="14.00">X3:3:C</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-48 646,-50 776,-50 776,-48 646,-48"/>
|
||||
<polygon fill="#00ff00" stroke="transparent" points="646,-46 646,-48 776,-48 776,-46 646,-46"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-44 646,-46 776,-46 776,-44 646,-44"/>
|
||||
<text text-anchor="start" x="658.5" y="-30.8" font-family="arial" font-size="14.00">     4:YE    </text>
|
||||
<text text-anchor="start" x="731" y="-30.8" font-family="arial" font-size="14.00">X3:4:D</text>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-23 646,-25 776,-25 776,-23 646,-23"/>
|
||||
<polygon fill="#ffff00" stroke="transparent" points="646,-21 646,-23 776,-23 776,-21 646,-21"/>
|
||||
<polygon fill="#000000" stroke="transparent" points="646,-19 646,-21 776,-21 776,-19 646,-19"/>
|
||||
<text text-anchor="start" x="648" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- F1--C3 -->
|
||||
<g id="edge17" class="edge">
|
||||
<title>F1:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-232C588.39,-234.46 555.72,-97.46 646,-95"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M502,-234C590.34,-234 557.66,-97 646,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-236C592.28,-233.54 559.61,-96.54 646,-99"/>
|
||||
</g>
|
||||
<!-- F2 -->
|
||||
<g id="node3" class="node">
|
||||
<title>F2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="502,-198.5 454,-198.5 454,-175.5 502,-175.5 502,-198.5"/>
|
||||
<polygon fill="none" stroke="black" points="454,-175 454,-198 502,-198 502,-175 454,-175"/>
|
||||
<text text-anchor="start" x="458" y="-182.8" font-family="arial" font-size="14.00">ferrule</text>
|
||||
</g>
|
||||
<!-- F2--C2 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>F2:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-185C580.18,-187.18 571.81,-280.18 646,-278"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M502,-187C578.19,-187 569.81,-280 646,-280"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-189C576.19,-186.82 567.82,-279.82 646,-282"/>
|
||||
</g>
|
||||
<!-- F2--C3 -->
|
||||
<g id="edge19" class="edge">
|
||||
<title>F2:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-185C581.93,-187.34 562.12,-72.34 646,-70"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M502,-187C583.9,-187 564.1,-72 646,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-189C585.88,-186.66 566.07,-71.66 646,-74"/>
|
||||
</g>
|
||||
<!-- F3 -->
|
||||
<g id="node4" class="node">
|
||||
<title>F3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="502,-151.5 454,-151.5 454,-128.5 502,-128.5 502,-151.5"/>
|
||||
<polygon fill="none" stroke="black" points="454,-128 454,-151 502,-151 502,-128 454,-128"/>
|
||||
<text text-anchor="start" x="458" y="-135.8" font-family="arial" font-size="14.00">ferrule</text>
|
||||
</g>
|
||||
<!-- F3--C2 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>F3:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-138C585.88,-140.34 566.07,-255.34 646,-253"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M502,-140C583.9,-140 564.1,-255 646,-255"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-142C581.93,-139.66 562.12,-254.66 646,-257"/>
|
||||
</g>
|
||||
<!-- F3--C3 -->
|
||||
<g id="edge21" class="edge">
|
||||
<title>F3:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-138C576.19,-140.18 567.82,-47.18 646,-45"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M502,-140C578.19,-140 569.81,-47 646,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-142C580.18,-139.82 571.81,-46.82 646,-49"/>
|
||||
</g>
|
||||
<!-- F4 -->
|
||||
<g id="node5" class="node">
|
||||
<title>F4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="502,-104.5 454,-104.5 454,-81.5 502,-81.5 502,-104.5"/>
|
||||
<polygon fill="none" stroke="black" points="454,-81 454,-104 502,-104 502,-81 454,-81"/>
|
||||
<text text-anchor="start" x="458" y="-88.8" font-family="arial" font-size="14.00">ferrule</text>
|
||||
</g>
|
||||
<!-- F4--C2 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>F4:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-91C592.28,-93.46 559.61,-230.46 646,-228"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M502,-93C590.34,-93 557.66,-230 646,-230"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-95C588.39,-92.54 555.72,-229.54 646,-232"/>
|
||||
</g>
|
||||
<!-- F4--C3 -->
|
||||
<g id="edge23" class="edge">
|
||||
<title>F4:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-91C571.36,-92.96 572.64,-21.96 646,-20"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M502,-93C573.36,-93 574.64,-22 646,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M502,-95C575.36,-93.04 576.64,-22.04 646,-24"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node6" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="960,-360 920,-360 920,-222 960,-222 960,-360"/>
|
||||
<polygon fill="none" stroke="black" points="920,-337 920,-360 960,-360 960,-337 920,-337"/>
|
||||
<text text-anchor="start" x="931" y="-344.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="920,-314 920,-337 960,-337 960,-314 920,-314"/>
|
||||
<text text-anchor="start" x="924" y="-321.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="920,-291 920,-314 939,-314 939,-291 920,-291"/>
|
||||
<text text-anchor="start" x="925.5" y="-298.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="939,-291 939,-314 960,-314 960,-291 939,-291"/>
|
||||
<text text-anchor="start" x="944.5" y="-298.8" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="920,-268 920,-291 939,-291 939,-268 920,-268"/>
|
||||
<text text-anchor="start" x="925.5" y="-275.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="939,-268 939,-291 960,-291 960,-268 939,-268"/>
|
||||
<text text-anchor="start" x="944.5" y="-275.8" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="920,-245 920,-268 939,-268 939,-245 920,-245"/>
|
||||
<text text-anchor="start" x="925.5" y="-252.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="939,-245 939,-268 960,-268 960,-245 939,-245"/>
|
||||
<text text-anchor="start" x="944" y="-252.8" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="920,-222 920,-245 939,-245 939,-222 920,-222"/>
|
||||
<text text-anchor="start" x="925.5" y="-229.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="939,-222 939,-245 960,-245 960,-222 939,-222"/>
|
||||
<text text-anchor="start" x="944" y="-229.8" font-family="arial" font-size="14.00">D</text>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node7" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="960,-152 920,-152 920,-14 960,-14 960,-152"/>
|
||||
<polygon fill="none" stroke="black" points="920,-129 920,-152 960,-152 960,-129 920,-129"/>
|
||||
<text text-anchor="start" x="931" y="-136.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="920,-106 920,-129 960,-129 960,-106 920,-106"/>
|
||||
<text text-anchor="start" x="924" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="920,-83 920,-106 939,-106 939,-83 920,-83"/>
|
||||
<text text-anchor="start" x="925.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="939,-83 939,-106 960,-106 960,-83 939,-83"/>
|
||||
<text text-anchor="start" x="944.5" y="-90.8" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="920,-60 920,-83 939,-83 939,-60 920,-60"/>
|
||||
<text text-anchor="start" x="925.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="939,-60 939,-83 960,-83 960,-60 939,-60"/>
|
||||
<text text-anchor="start" x="944.5" y="-67.8" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="920,-37 920,-60 939,-60 939,-37 920,-37"/>
|
||||
<text text-anchor="start" x="925.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="939,-37 939,-60 960,-60 960,-37 939,-37"/>
|
||||
<text text-anchor="start" x="944" y="-44.8" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="920,-14 920,-37 939,-37 939,-14 920,-14"/>
|
||||
<text text-anchor="start" x="925.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="939,-14 939,-37 960,-37 960,-14 939,-14"/>
|
||||
<text text-anchor="start" x="944" y="-21.8" font-family="arial" font-size="14.00">D</text>
|
||||
<title>F1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="507,-291.75 458.5,-291.75 458.5,-267.25 507,-267.25 507,-291.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="458.5,-267.25 458.5,-291.75 507,-291.75 507,-267.25 458.5,-267.25"/>
|
||||
<polygon fill="none" stroke="black" points="458.5,-267.25 458.5,-291.75 507,-291.75 507,-267.25 458.5,-267.25"/>
|
||||
<text text-anchor="start" x="462.5" y="-274.45" font-family="arial" font-size="14.00">ferrule</text>
|
||||
</g>
|
||||
<!-- C1--F1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<g id="edge9" class="edge">
|
||||
<title>C1:e--F1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M310,-199C377.53,-200.28 390.21,-233.28 454,-232"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M310,-201C375.66,-201 388.34,-234 454,-234"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M310,-203C373.79,-201.72 386.47,-234.72 454,-236"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-242C382.31,-243.35 394.47,-278.85 458.5,-277.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M314.5,-244C380.42,-244 392.58,-279.5 458.5,-279.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-246C378.53,-244.65 390.69,-280.15 458.5,-281.5"/>
|
||||
</g>
|
||||
<!-- F2 -->
|
||||
<g id="node4" class="node">
|
||||
<title>F2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="507,-242.75 458.5,-242.75 458.5,-218.25 507,-218.25 507,-242.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="458.5,-218.25 458.5,-242.75 507,-242.75 507,-218.25 458.5,-218.25"/>
|
||||
<polygon fill="none" stroke="black" points="458.5,-218.25 458.5,-242.75 507,-242.75 507,-218.25 458.5,-218.25"/>
|
||||
<text text-anchor="start" x="462.5" y="-225.45" font-family="arial" font-size="14.00">ferrule</text>
|
||||
</g>
|
||||
<!-- C1--F2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<g id="edge10" class="edge">
|
||||
<title>C1:e--F2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M310,-174C375.34,-174.36 390.96,-185.36 454,-185"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M310,-176C374.19,-176 389.81,-187 454,-187"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M310,-178C373.04,-177.64 388.66,-188.64 454,-189"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-216C379.99,-216.44 395.51,-228.94 458.5,-228.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M314.5,-218C378.74,-218 394.26,-230.5 458.5,-230.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-220C377.49,-219.56 393.01,-232.06 458.5,-232.5"/>
|
||||
</g>
|
||||
<!-- F3 -->
|
||||
<g id="node5" class="node">
|
||||
<title>F3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="507,-193.75 458.5,-193.75 458.5,-169.25 507,-169.25 507,-193.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="458.5,-169.25 458.5,-193.75 507,-193.75 507,-169.25 458.5,-169.25"/>
|
||||
<polygon fill="none" stroke="black" points="458.5,-169.25 458.5,-193.75 507,-193.75 507,-169.25 458.5,-169.25"/>
|
||||
<text text-anchor="start" x="462.5" y="-176.45" font-family="arial" font-size="14.00">ferrule</text>
|
||||
</g>
|
||||
<!-- C1--F3 -->
|
||||
<g id="edge6" class="edge">
|
||||
<g id="edge11" class="edge">
|
||||
<title>C1:e--F3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M310,-149C373.04,-149.36 388.66,-138.36 454,-138"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M310,-151C374.19,-151 389.81,-140 454,-140"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M310,-153C375.34,-152.64 390.96,-141.64 454,-142"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-190C377.56,-190.34 393.22,-179.84 458.5,-179.5"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M314.5,-192C378.67,-192 394.33,-181.5 458.5,-181.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-194C379.78,-193.66 395.44,-183.16 458.5,-183.5"/>
|
||||
</g>
|
||||
<!-- F4 -->
|
||||
<g id="node6" class="node">
|
||||
<title>F4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="507,-144.75 458.5,-144.75 458.5,-120.25 507,-120.25 507,-144.75"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="458.5,-120.25 458.5,-144.75 507,-144.75 507,-120.25 458.5,-120.25"/>
|
||||
<polygon fill="none" stroke="black" points="458.5,-120.25 458.5,-144.75 507,-144.75 507,-120.25 458.5,-120.25"/>
|
||||
<text text-anchor="start" x="462.5" y="-127.45" font-family="arial" font-size="14.00">ferrule</text>
|
||||
</g>
|
||||
<!-- C1--F4 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>C1:e--F4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M310,-124C373.79,-125.28 386.47,-92.28 454,-91"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M310,-126C375.66,-126 388.34,-93 454,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M310,-128C377.53,-126.72 390.21,-93.72 454,-95"/>
|
||||
</g>
|
||||
<!-- C2--X2 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-303C839.76,-303.02 855.75,-301.02 920,-301"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M776,-305C840.01,-305 855.99,-303 920,-303"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-307C840.25,-306.98 856.24,-304.98 920,-305"/>
|
||||
</g>
|
||||
<!-- C2--X2 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-278C839.88,-278 855.87,-277 920,-277"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M776,-280C840,-280 856,-279 920,-279"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-282C840.13,-282 856.12,-281 920,-281"/>
|
||||
<title>C1:e--F4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-164C378.34,-165.3 390.92,-131.8 458.5,-130.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M314.5,-166C380.21,-166 392.79,-132.5 458.5,-132.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M314.5,-168C382.08,-166.7 394.66,-133.2 458.5,-134.5"/>
|
||||
</g>
|
||||
<!-- C2--X2 -->
|
||||
<!-- C2 -->
|
||||
<g id="node7" class="node">
|
||||
<title>C2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="782,-482 651,-482 651,-289 782,-289 782,-482"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-289 651,-482 782,-482 782,-289 651,-289"/>
|
||||
<polygon fill="none" stroke="black" points="651,-457.5 651,-482 782,-482 782,-457.5 651,-457.5"/>
|
||||
<text text-anchor="start" x="707.12" y="-464.7" font-family="arial" font-size="14.00">C2</text>
|
||||
<polygon fill="none" stroke="black" points="651,-433 651,-457.5 782,-457.5 782,-433 651,-433"/>
|
||||
<text text-anchor="start" x="709" y="-440.2" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="661.62" y="-417.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="653" y="-397.7" font-family="arial" font-size="14.00"> F1</text>
|
||||
<text text-anchor="start" x="677.62" y="-397.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="685" y="-397.7" font-family="arial" font-size="14.00">1:WH</text>
|
||||
<text text-anchor="start" x="724.62" y="-397.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="732.75" y="-397.7" font-family="arial" font-size="14.00">X2:1:A </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-391 651,-393 782,-393 782,-391 651,-391"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-389 651,-391 782,-391 782,-389 651,-389"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-387 651,-389 782,-389 782,-387 651,-387"/>
|
||||
<text text-anchor="start" x="653" y="-371.7" font-family="arial" font-size="14.00"> F2</text>
|
||||
<text text-anchor="start" x="677.62" y="-371.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="687.25" y="-371.7" font-family="arial" font-size="14.00">2:BN</text>
|
||||
<text text-anchor="start" x="724.62" y="-371.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="732.75" y="-371.7" font-family="arial" font-size="14.00">X2:2:B </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-365 651,-367 782,-367 782,-365 651,-365"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-363 651,-365 782,-365 782,-363 651,-363"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-361 651,-363 782,-363 782,-361 651,-361"/>
|
||||
<text text-anchor="start" x="653" y="-345.7" font-family="arial" font-size="14.00"> F3</text>
|
||||
<text text-anchor="start" x="677.62" y="-345.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="686.5" y="-345.7" font-family="arial" font-size="14.00">3:GN</text>
|
||||
<text text-anchor="start" x="724.62" y="-345.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="732" y="-345.7" font-family="arial" font-size="14.00">X2:3:C </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-339 651,-341 782,-341 782,-339 651,-339"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-337 651,-339 782,-339 782,-337 651,-337"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-335 651,-337 782,-337 782,-335 651,-335"/>
|
||||
<text text-anchor="start" x="653" y="-319.7" font-family="arial" font-size="14.00"> F4</text>
|
||||
<text text-anchor="start" x="677.62" y="-319.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="687.62" y="-319.7" font-family="arial" font-size="14.00">4:YE</text>
|
||||
<text text-anchor="start" x="724.62" y="-319.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="732" y="-319.7" font-family="arial" font-size="14.00">X2:4:D </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-313 651,-315 782,-315 782,-313 651,-313"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-311 651,-313 782,-313 782,-311 651,-311"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-309 651,-311 782,-311 782,-309 651,-309"/>
|
||||
<text text-anchor="start" x="661.62" y="-293.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- F1--C2 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>F1:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-277.5C589.65,-279.81 572.31,-390.31 651,-388"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M507,-279.5C587.67,-279.5 570.33,-390 651,-390"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-281.5C585.69,-279.19 568.35,-389.69 651,-392"/>
|
||||
</g>
|
||||
<!-- C3 -->
|
||||
<g id="node8" class="node">
|
||||
<title>C3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="782,-193 651,-193 651,0 782,0 782,-193"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,0 651,-193 782,-193 782,0 651,0"/>
|
||||
<polygon fill="none" stroke="black" points="651,-168.5 651,-193 782,-193 782,-168.5 651,-168.5"/>
|
||||
<text text-anchor="start" x="707.12" y="-175.7" font-family="arial" font-size="14.00">C3</text>
|
||||
<polygon fill="none" stroke="black" points="651,-144 651,-168.5 782,-168.5 782,-144 651,-144"/>
|
||||
<text text-anchor="start" x="709" y="-151.2" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="661.62" y="-128.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="653" y="-108.7" font-family="arial" font-size="14.00"> F1</text>
|
||||
<text text-anchor="start" x="677.62" y="-108.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="685" y="-108.7" font-family="arial" font-size="14.00">1:WH</text>
|
||||
<text text-anchor="start" x="724.62" y="-108.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="732.75" y="-108.7" font-family="arial" font-size="14.00">X3:1:A </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-102 651,-104 782,-104 782,-102 651,-102"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-100 651,-102 782,-102 782,-100 651,-100"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-98 651,-100 782,-100 782,-98 651,-98"/>
|
||||
<text text-anchor="start" x="653" y="-82.7" font-family="arial" font-size="14.00"> F2</text>
|
||||
<text text-anchor="start" x="677.62" y="-82.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="687.25" y="-82.7" font-family="arial" font-size="14.00">2:BN</text>
|
||||
<text text-anchor="start" x="724.62" y="-82.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="732.75" y="-82.7" font-family="arial" font-size="14.00">X3:2:B </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-76 651,-78 782,-78 782,-76 651,-76"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-74 651,-76 782,-76 782,-74 651,-74"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-72 651,-74 782,-74 782,-72 651,-72"/>
|
||||
<text text-anchor="start" x="653" y="-56.7" font-family="arial" font-size="14.00"> F3</text>
|
||||
<text text-anchor="start" x="677.62" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="686.5" y="-56.7" font-family="arial" font-size="14.00">3:GN</text>
|
||||
<text text-anchor="start" x="724.62" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="732" y="-56.7" font-family="arial" font-size="14.00">X3:3:C </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-50 651,-52 782,-52 782,-50 651,-50"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-48 651,-50 782,-50 782,-48 651,-48"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-46 651,-48 782,-48 782,-46 651,-46"/>
|
||||
<text text-anchor="start" x="653" y="-30.7" font-family="arial" font-size="14.00"> F4</text>
|
||||
<text text-anchor="start" x="677.62" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="687.62" y="-30.7" font-family="arial" font-size="14.00">4:YE</text>
|
||||
<text text-anchor="start" x="724.62" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="732" y="-30.7" font-family="arial" font-size="14.00">X3:4:D </text>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-24 651,-26 782,-26 782,-24 651,-24"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-22 651,-24 782,-24 782,-22 651,-22"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="651,-20 651,-22 782,-22 782,-20 651,-20"/>
|
||||
<text text-anchor="start" x="661.62" y="-4.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- F1--C3 -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-253C840.13,-253 856.12,-254 920,-254"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M776,-255C840,-255 856,-256 920,-256"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-257C839.88,-257 855.87,-258 920,-258"/>
|
||||
<title>F1:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-277.5C607.03,-280.14 547.17,-101.64 651,-99"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M507,-279.5C608.93,-279.5 549.07,-101 651,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-281.5C610.83,-278.87 550.97,-100.37 651,-103"/>
|
||||
</g>
|
||||
<!-- F2--C2 -->
|
||||
<g id="edge31" class="edge">
|
||||
<title>F2:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-228.5C596.22,-230.95 565.68,-364.45 651,-362"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M507,-230.5C594.27,-230.5 563.73,-364 651,-364"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-232.5C592.32,-230.06 561.78,-363.56 651,-366"/>
|
||||
</g>
|
||||
<!-- F2--C3 -->
|
||||
<g id="edge32" class="edge">
|
||||
<title>F2:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-228.5C599.27,-231.05 554.89,-75.55 651,-73"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M507,-230.5C601.19,-230.5 556.81,-75 651,-75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-232.5C603.11,-229.95 558.73,-74.45 651,-77"/>
|
||||
</g>
|
||||
<!-- F3--C2 -->
|
||||
<g id="edge33" class="edge">
|
||||
<title>F3:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-179.5C603.44,-182.05 558.4,-338.55 651,-336"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M507,-181.5C601.52,-181.5 556.48,-338 651,-338"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-183.5C599.6,-180.95 554.56,-337.45 651,-340"/>
|
||||
</g>
|
||||
<!-- F3--C3 -->
|
||||
<g id="edge34" class="edge">
|
||||
<title>F3:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-179.5C592.02,-181.94 562.08,-49.44 651,-47"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M507,-181.5C593.97,-181.5 564.03,-49 651,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-183.5C595.92,-181.06 565.98,-48.56 651,-51"/>
|
||||
</g>
|
||||
<!-- F4--C2 -->
|
||||
<g id="edge35" class="edge">
|
||||
<title>F4:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-130.5C611.18,-133.14 550.62,-312.64 651,-310"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M507,-132.5C609.28,-132.5 548.72,-312 651,-312"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-134.5C607.38,-131.86 546.82,-311.36 651,-314"/>
|
||||
</g>
|
||||
<!-- F4--C3 -->
|
||||
<g id="edge36" class="edge">
|
||||
<title>F4:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-130.5C585.42,-132.8 568.62,-23.3 651,-21"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M507,-132.5C587.4,-132.5 570.6,-23 651,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M507,-134.5C589.38,-132.2 572.58,-22.7 651,-25"/>
|
||||
</g>
|
||||
<!-- C2--C2 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>C2:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-392C738.33,-392 694.67,-392 651,-392"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M782,-390C738.33,-390 694.67,-390 651,-390"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-388C738.33,-388 694.67,-388 651,-388"/>
|
||||
</g>
|
||||
<!-- C2--C2 -->
|
||||
<g id="edge16" class="edge">
|
||||
<title>C2:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-366C738.33,-366 694.67,-366 651,-366"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M782,-364C738.33,-364 694.67,-364 651,-364"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-362C738.33,-362 694.67,-362 651,-362"/>
|
||||
</g>
|
||||
<!-- C2--C2 -->
|
||||
<g id="edge17" class="edge">
|
||||
<title>C2:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-340C738.33,-340 694.67,-340 651,-340"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M782,-338C738.33,-338 694.67,-338 651,-338"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-336C738.33,-336 694.67,-336 651,-336"/>
|
||||
</g>
|
||||
<!-- C2--C2 -->
|
||||
<g id="edge18" class="edge">
|
||||
<title>C2:e--C2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-314C738.33,-314 694.67,-314 651,-314"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M782,-312C738.33,-312 694.67,-312 651,-312"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-310C738.33,-310 694.67,-310 651,-310"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node9" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="965.5,-448 926,-448 926,-303 965.5,-303 965.5,-448"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="926,-303 926,-448 965.5,-448 965.5,-303 926,-303"/>
|
||||
<polygon fill="none" stroke="black" points="926,-423.5 926,-448 965.5,-448 965.5,-423.5 926,-423.5"/>
|
||||
<text text-anchor="start" x="936.75" y="-430.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="926,-399 926,-423.5 965.5,-423.5 965.5,-399 926,-399"/>
|
||||
<text text-anchor="start" x="930" y="-406.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="926,-375 926,-399 944.75,-399 944.75,-375 926,-375"/>
|
||||
<text text-anchor="start" x="931.25" y="-381.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="944.75,-375 944.75,-399 965.5,-399 965.5,-375 944.75,-375"/>
|
||||
<text text-anchor="start" x="950.25" y="-381.7" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="926,-351 926,-375 944.75,-375 944.75,-351 926,-351"/>
|
||||
<text text-anchor="start" x="931.25" y="-357.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="944.75,-351 944.75,-375 965.5,-375 965.5,-351 944.75,-351"/>
|
||||
<text text-anchor="start" x="950.25" y="-357.7" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="926,-327 926,-351 944.75,-351 944.75,-327 926,-327"/>
|
||||
<text text-anchor="start" x="931.25" y="-333.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="944.75,-327 944.75,-351 965.5,-351 965.5,-327 944.75,-327"/>
|
||||
<text text-anchor="start" x="949.88" y="-333.7" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="926,-303 926,-327 944.75,-327 944.75,-303 926,-303"/>
|
||||
<text text-anchor="start" x="931.25" y="-309.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="944.75,-303 944.75,-327 965.5,-327 965.5,-303 944.75,-303"/>
|
||||
<text text-anchor="start" x="949.88" y="-309.7" font-family="arial" font-size="14.00">D</text>
|
||||
</g>
|
||||
<!-- C2--X2 -->
|
||||
<g id="edge16" class="edge">
|
||||
<g id="edge19" class="edge">
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-228C840.38,-228.03 856.36,-231.03 920,-231"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M776,-230C840.01,-230 855.99,-233 920,-233"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-232C839.64,-231.97 855.62,-234.97 920,-235"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-388C845.64,-388.04 861.62,-385.04 926,-385"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M782,-390C846.01,-390 861.99,-387 926,-387"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-392C846.38,-391.97 862.36,-388.97 926,-389"/>
|
||||
</g>
|
||||
<!-- C3--X3 -->
|
||||
<g id="edge18" class="edge">
|
||||
<title>C3:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-95C839.76,-95.02 855.75,-93.02 920,-93"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M776,-97C840.01,-97 855.99,-95 920,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-99C840.25,-98.98 856.24,-96.98 920,-97"/>
|
||||
</g>
|
||||
<!-- C3--X3 -->
|
||||
<!-- C2--X2 -->
|
||||
<g id="edge20" class="edge">
|
||||
<title>C3:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-70C839.88,-70 855.87,-69 920,-69"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M776,-72C840,-72 856,-71 920,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-74C840.13,-74 856.12,-73 920,-73"/>
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-362C845.88,-362.01 861.88,-361.01 926,-361"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M782,-364C846,-364 862,-363 926,-363"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-366C846.12,-366 862.12,-365 926,-365"/>
|
||||
</g>
|
||||
<!-- C3--X3 -->
|
||||
<!-- C2--X2 -->
|
||||
<g id="edge21" class="edge">
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-336C846.12,-336.01 862.12,-337.01 926,-337"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M782,-338C846,-338 862,-339 926,-339"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-340C845.88,-340 861.88,-341 926,-341"/>
|
||||
</g>
|
||||
<!-- C2--X2 -->
|
||||
<g id="edge22" class="edge">
|
||||
<title>C3:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-45C840.13,-45 856.12,-46 920,-46"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M776,-47C840,-47 856,-48 920,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-49C839.88,-49 855.87,-50 920,-50"/>
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-310C846.38,-310.04 862.36,-313.04 926,-313"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M782,-312C846.01,-312 861.99,-315 926,-315"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-314C845.64,-313.97 861.62,-316.97 926,-317"/>
|
||||
</g>
|
||||
<!-- C3--C3 -->
|
||||
<g id="edge23" class="edge">
|
||||
<title>C3:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-103C738.33,-103 694.67,-103 651,-103"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M782,-101C738.33,-101 694.67,-101 651,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-99C738.33,-99 694.67,-99 651,-99"/>
|
||||
</g>
|
||||
<!-- C3--C3 -->
|
||||
<g id="edge24" class="edge">
|
||||
<title>C3:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-77C738.33,-77 694.67,-77 651,-77"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M782,-75C738.33,-75 694.67,-75 651,-75"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-73C738.33,-73 694.67,-73 651,-73"/>
|
||||
</g>
|
||||
<!-- C3--C3 -->
|
||||
<g id="edge25" class="edge">
|
||||
<title>C3:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-51C738.33,-51 694.67,-51 651,-51"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M782,-49C738.33,-49 694.67,-49 651,-49"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-47C738.33,-47 694.67,-47 651,-47"/>
|
||||
</g>
|
||||
<!-- C3--C3 -->
|
||||
<g id="edge26" class="edge">
|
||||
<title>C3:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-25C738.33,-25 694.67,-25 651,-25"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M782,-23C738.33,-23 694.67,-23 651,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-21C738.33,-21 694.67,-21 651,-21"/>
|
||||
</g>
|
||||
<!-- X3 -->
|
||||
<g id="node10" class="node">
|
||||
<title>X3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="965.5,-159 926,-159 926,-14 965.5,-14 965.5,-159"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="926,-14 926,-159 965.5,-159 965.5,-14 926,-14"/>
|
||||
<polygon fill="none" stroke="black" points="926,-134.5 926,-159 965.5,-159 965.5,-134.5 926,-134.5"/>
|
||||
<text text-anchor="start" x="936.75" y="-141.7" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="926,-110 926,-134.5 965.5,-134.5 965.5,-110 926,-110"/>
|
||||
<text text-anchor="start" x="930" y="-117.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="926,-86 926,-110 944.75,-110 944.75,-86 926,-86"/>
|
||||
<text text-anchor="start" x="931.25" y="-92.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="944.75,-86 944.75,-110 965.5,-110 965.5,-86 944.75,-86"/>
|
||||
<text text-anchor="start" x="950.25" y="-92.7" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="926,-62 926,-86 944.75,-86 944.75,-62 926,-62"/>
|
||||
<text text-anchor="start" x="931.25" y="-68.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="944.75,-62 944.75,-86 965.5,-86 965.5,-62 944.75,-62"/>
|
||||
<text text-anchor="start" x="950.25" y="-68.7" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="926,-38 926,-62 944.75,-62 944.75,-38 926,-38"/>
|
||||
<text text-anchor="start" x="931.25" y="-44.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="944.75,-38 944.75,-62 965.5,-62 965.5,-38 944.75,-38"/>
|
||||
<text text-anchor="start" x="949.88" y="-44.7" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="926,-14 926,-38 944.75,-38 944.75,-14 926,-14"/>
|
||||
<text text-anchor="start" x="931.25" y="-20.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="944.75,-14 944.75,-38 965.5,-38 965.5,-14 944.75,-14"/>
|
||||
<text text-anchor="start" x="949.88" y="-20.7" font-family="arial" font-size="14.00">D</text>
|
||||
</g>
|
||||
<!-- C3--X3 -->
|
||||
<g id="edge24" class="edge">
|
||||
<g id="edge27" class="edge">
|
||||
<title>C3:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-20C840.38,-20.03 856.36,-23.03 920,-23"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M776,-22C840.01,-22 855.99,-25 920,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M776,-24C839.64,-23.97 855.62,-26.97 920,-27"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-99C845.64,-99.04 861.62,-96.04 926,-96"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M782,-101C846.01,-101 861.99,-98 926,-98"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-103C846.38,-102.97 862.36,-99.97 926,-100"/>
|
||||
</g>
|
||||
<!-- C3--X3 -->
|
||||
<g id="edge28" class="edge">
|
||||
<title>C3:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-73C845.88,-73.01 861.88,-72.01 926,-72"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M782,-75C846,-75 862,-74 926,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-77C846.12,-77 862.12,-76 926,-76"/>
|
||||
</g>
|
||||
<!-- C3--X3 -->
|
||||
<g id="edge29" class="edge">
|
||||
<title>C3:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-47C846.12,-47.01 862.12,-48.01 926,-48"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M782,-49C846,-49 862,-50 926,-50"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-51C845.88,-51 861.88,-52 926,-52"/>
|
||||
</g>
|
||||
<!-- C3--X3 -->
|
||||
<g id="edge30" class="edge">
|
||||
<title>C3:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-21C846.38,-21.04 862.36,-24.04 926,-24"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M782,-23C846.01,-23 861.99,-26 926,-26"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M782,-25C845.64,-24.97 861.62,-27.97 926,-28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 35 KiB |
4
examples/ex13.tsv
generated
Normal file
@ -0,0 +1,4 @@
|
||||
# Qty Description Designators
|
||||
1 3 Connector, 4 pins X1, X2, X3
|
||||
2 4 Connector, ferrule F1, F2, F3, F4
|
||||
3 3 Cable, 4 wires C1, C2, C3
|
||||
|
64
examples/ex13_wv_gvpr.gvpr
Normal file
@ -0,0 +1,64 @@
|
||||
/*******************************************************************
|
||||
|
||||
see https://forum.graphviz.org/t/straitening-one-line-throu-a-table/2196 and https://forum.graphviz.org/t/way-of-drawing-a-black-circle-inside-a-table-field/2273/12
|
||||
input must include pos values (must be output from one of the engines w/ -Tdot)#
|
||||
Thanks to steveroush and FeRDNYC
|
||||
|
||||
*******************************************************************/
|
||||
BEG_G{
|
||||
double x1,y1,x2,y2,x3,y3,x4,y4;
|
||||
string ptSize, tok[int], pt[];
|
||||
int cnt, circ, i;
|
||||
node_t aNode;
|
||||
|
||||
circ=0;
|
||||
|
||||
/***************************************
|
||||
$G.bb="";
|
||||
$G.nodesep="";
|
||||
$G.ranksep="";
|
||||
$G.splines="true";
|
||||
****************************************/
|
||||
}
|
||||
|
||||
// This removes the label text but keeps the position
|
||||
E[noLabel] {
|
||||
$.label=""; // remove pesky label
|
||||
// $.lp=""; // remove peskier label pos
|
||||
}
|
||||
|
||||
E[straight] {
|
||||
cnt=tokens($.pos,tok," ");
|
||||
$.oldpos=$.pos;
|
||||
x1 = xOf(tok[0]);
|
||||
y1 = yOf(tok[0]);
|
||||
x4 = xOf(tok[cnt-1]);
|
||||
y4 = yOf(tok[cnt-1]);
|
||||
x2 = x1 + (x4-x1)/3.;
|
||||
y2 = y1 + (y4-y1)/3.;
|
||||
x3 = x1 + 2.*(x4-x1)/3.;
|
||||
y3 = y1 + 2.*(y4-y1)/3.;
|
||||
pos=sprintf("%.3f,%.3f %.3f,%.3f %.3f,%.3f %.3f,%.3f", x1,y1, x2,y2, x3,y3, x4,y4);
|
||||
$.label=""; // remove pesky label
|
||||
$.lp=""; // remove peskier label pos
|
||||
|
||||
if (hasAttr($, "addPTS") && $.addPTS!="" && $.colorPTS!=""){
|
||||
// now we place point nodes at the edge ends
|
||||
pt[1] = tok[0];
|
||||
pt[2] = tok[cnt-1];
|
||||
ptSize=$.addPTS;
|
||||
for (pt[i]) {
|
||||
if (i==2 && pt[1]==pt[2])
|
||||
continue;
|
||||
aNode=node($G, "__CIRCLE__" + (string)++circ);
|
||||
aNode.pos=pt[i];
|
||||
aNode.shape="point";
|
||||
aNode.width=ptSize;
|
||||
aNode.height=ptSize;
|
||||
aNode.style="filled";
|
||||
aNode.fillcolor=$.colorPTS;
|
||||
aNode.color=$.colorPTS;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
1551
examples/ex14.gv
generated
1478
examples/ex14.html
generated
BIN
examples/ex14.png
generated
|
Before Width: | Height: | Size: 202 KiB After Width: | Height: | Size: 165 KiB |
1422
examples/ex14.svg
generated
|
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 68 KiB |
8
examples/ex14.tsv
generated
Normal file
@ -0,0 +1,8 @@
|
||||
# Qty Unit Description Designators
|
||||
1 4 Connector, Ferrule, GY
|
||||
2 1 Connector, JST SM, female, 4 pins X2
|
||||
3 2 Connector, JST SM, male, 4 pins X1, X3
|
||||
4 1 Connector, Screw terminal connector, 4 pins, GN X4
|
||||
5 8 Connector, Splice, CU S1
|
||||
6 1 m Cable, 1 wires
|
||||
7 4 m Cable, 4 wires W1, W2, W21, W3
|
||||
|
64
examples/ex14_wv_gvpr.gvpr
Normal file
@ -0,0 +1,64 @@
|
||||
/*******************************************************************
|
||||
|
||||
see https://forum.graphviz.org/t/straitening-one-line-throu-a-table/2196 and https://forum.graphviz.org/t/way-of-drawing-a-black-circle-inside-a-table-field/2273/12
|
||||
input must include pos values (must be output from one of the engines w/ -Tdot)#
|
||||
Thanks to steveroush and FeRDNYC
|
||||
|
||||
*******************************************************************/
|
||||
BEG_G{
|
||||
double x1,y1,x2,y2,x3,y3,x4,y4;
|
||||
string ptSize, tok[int], pt[];
|
||||
int cnt, circ, i;
|
||||
node_t aNode;
|
||||
|
||||
circ=0;
|
||||
|
||||
/***************************************
|
||||
$G.bb="";
|
||||
$G.nodesep="";
|
||||
$G.ranksep="";
|
||||
$G.splines="true";
|
||||
****************************************/
|
||||
}
|
||||
|
||||
// This removes the label text but keeps the position
|
||||
E[noLabel] {
|
||||
$.label=""; // remove pesky label
|
||||
// $.lp=""; // remove peskier label pos
|
||||
}
|
||||
|
||||
E[straight] {
|
||||
cnt=tokens($.pos,tok," ");
|
||||
$.oldpos=$.pos;
|
||||
x1 = xOf(tok[0]);
|
||||
y1 = yOf(tok[0]);
|
||||
x4 = xOf(tok[cnt-1]);
|
||||
y4 = yOf(tok[cnt-1]);
|
||||
x2 = x1 + (x4-x1)/3.;
|
||||
y2 = y1 + (y4-y1)/3.;
|
||||
x3 = x1 + 2.*(x4-x1)/3.;
|
||||
y3 = y1 + 2.*(y4-y1)/3.;
|
||||
pos=sprintf("%.3f,%.3f %.3f,%.3f %.3f,%.3f %.3f,%.3f", x1,y1, x2,y2, x3,y3, x4,y4);
|
||||
$.label=""; // remove pesky label
|
||||
$.lp=""; // remove peskier label pos
|
||||
|
||||
if (hasAttr($, "addPTS") && $.addPTS!="" && $.colorPTS!=""){
|
||||
// now we place point nodes at the edge ends
|
||||
pt[1] = tok[0];
|
||||
pt[2] = tok[cnt-1];
|
||||
ptSize=$.addPTS;
|
||||
for (pt[i]) {
|
||||
if (i==2 && pt[1]==pt[2])
|
||||
continue;
|
||||
aNode=node($G, "__CIRCLE__" + (string)++circ);
|
||||
aNode.pos=pt[i];
|
||||
aNode.shape="point";
|
||||
aNode.width=ptSize;
|
||||
aNode.height=ptSize;
|
||||
aNode.style="filled";
|
||||
aNode.fillcolor=$.colorPTS;
|
||||
aNode.color=$.colorPTS;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
375
examples/ex15.gv
generated
Normal file
@ -0,0 +1,375 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4-dev251
|
||||
// https://github.com/formatc1702/WireViz
|
||||
graph [bgcolor="#FFFFFF" fontname=arial nodesep=0.33 rankdir=LR ranksep=2]
|
||||
node [fillcolor="#FFFFFF" fontname=arial height=0 margin=0 shape=none style=filled width=0]
|
||||
edge [fontname=arial style=bold]
|
||||
X1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Molex KK 254</td>
|
||||
<td>female</td>
|
||||
<td>7-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>SH1</td>
|
||||
<td>SH2</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>GND</td>
|
||||
[<td port="p1j"></td>, <td></td>]
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>VCC</td>
|
||||
[<td></td>, <td port="p2j"></td>]
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>RX</td>
|
||||
[<td></td>, <td></td>]
|
||||
<td port="p3r">3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>TX</td>
|
||||
[<td></td>, <td></td>]
|
||||
<td port="p4r">4</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>GND</td>
|
||||
[<td port="p5j"></td>, <td></td>]
|
||||
<td port="p5r">5</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>VCC</td>
|
||||
[<td></td>, <td port="p6j"></td>]
|
||||
<td port="p6r">6</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>GND</td>
|
||||
[<td port="p7j"></td>, <td></td>]
|
||||
<td port="p7r">7</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="1" cellborder="0" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td></td>
|
||||
<td align="right">42</td>
|
||||
<td align="left">mm</td>
|
||||
<td align="left">shortPartA</td>
|
||||
<td align="left"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3"></td>
|
||||
<td align="left">WireViz: 42XCD42A5</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td align="right">1</td>
|
||||
<td align="left">x</td>
|
||||
<td align="left">shortPartB</td>
|
||||
<td align="left"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3"></td>
|
||||
<td align="left">WireViz: 42XCD42A5</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> shape=box style=filled]
|
||||
edge [color="#000000"]
|
||||
X1:p1j:c -- X1:p5j:c [addPTS=.18 color="#FF66CC" colorPTS="#FF66CC" headclip=false straight=straight tailclip=false]
|
||||
X1:p5j:c -- X1:p7j:c [addPTS=.18 color="#FF66CC" colorPTS="#FF66CC" headclip=false straight=straight tailclip=false]
|
||||
X1:p2j:c -- X1:p6j:c [addPTS=.18 color="#FF0000" colorPTS="#FF0000" headclip=false straight=straight tailclip=false]
|
||||
X2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>X2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Molex KK 254</td>
|
||||
<td>female</td>
|
||||
<td>7-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td>SH1</td>
|
||||
<td>SH2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p1l">1</td>
|
||||
<td>GND</td>
|
||||
[<td port="p1j"></td>, <td></td>]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p2l">2</td>
|
||||
<td>VCC</td>
|
||||
[<td></td>, <td port="p2j"></td>]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p3l">3</td>
|
||||
<td>RX</td>
|
||||
[<td></td>, <td></td>]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p4l">4</td>
|
||||
<td>TX</td>
|
||||
[<td></td>, <td></td>]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p5l">5</td>
|
||||
<td>GND</td>
|
||||
[<td port="p5j"></td>, <td></td>]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p6l">6</td>
|
||||
<td>VCC</td>
|
||||
[<td></td>, <td port="p6j"></td>]
|
||||
</tr>
|
||||
<tr>
|
||||
<td port="p7l">7</td>
|
||||
<td>GND</td>
|
||||
[<td port="p7j"></td>, <td></td>]
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> shape=box style=filled]
|
||||
edge [color="#000000"]
|
||||
X2:p1j:c -- X2:p5j:c [addPTS=.18 color="#000000" colorPTS="#000000" headclip=false straight=straight tailclip=false]
|
||||
X2:p5j:c -- X2:p7j:c [addPTS=.18 color="#000000" colorPTS="#000000" headclip=false straight=straight tailclip=false]
|
||||
X2:p2j:c -- X2:p6j:c [addPTS=.18 color="#000000" colorPTS="#000000" headclip=false straight=straight tailclip=false]
|
||||
W1 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>W1</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>Serial</td>
|
||||
<td>4x</td>
|
||||
<td>0.25 mm² (24 AWG)</td>
|
||||
<td>+ S</td>
|
||||
<td>0.2 m</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:1:GND</td>
|
||||
<td> </td>
|
||||
<td>1:BUWH</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:1:GND </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="10" port="w1">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:2:VCC</td>
|
||||
<td> </td>
|
||||
<td>2:WHBU</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:2:VCC </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="10" port="w2">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:3:RX</td>
|
||||
<td> </td>
|
||||
<td>3:OGWH</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:4:TX </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="10" port="w3">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:4:TX</td>
|
||||
<td> </td>
|
||||
<td>4:WHOG</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:3:RX </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="10" port="w4">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:1:GND</td>
|
||||
<td> </td>
|
||||
<td>Shield</td>
|
||||
<td> </td>
|
||||
<td align="right"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="2" port="w5">
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td bgcolor="#FFFFFF" border="0" cellpadding="0" colspan="5" height="2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> shape=box style=filled]
|
||||
edge [color="#000000:#0066FF:#FFFFFF:#0066FF:#000000"]
|
||||
X1:p1r:e -- W1:w1:w
|
||||
W1:w1:e -- X2:p1l:w
|
||||
edge [color="#000000:#FFFFFF:#0066FF:#FFFFFF:#000000"]
|
||||
X1:p2r:e -- W1:w2:w
|
||||
W1:w2:e -- X2:p2l:w
|
||||
edge [color="#000000:#FF8000:#FFFFFF:#FF8000:#000000"]
|
||||
X1:p3r:e -- W1:w3:w
|
||||
W1:w3:e -- X2:p4l:w
|
||||
edge [color="#000000:#FFFFFF:#FF8000:#FFFFFF:#000000"]
|
||||
X1:p4r:e -- W1:w4:w
|
||||
W1:w4:e -- X2:p3l:w
|
||||
edge [color="#000000"]
|
||||
X1:p1r:e -- W1:w5:w
|
||||
W1:w1:e -- W1:w1:w [color="#000000:#0066FF:#FFFFFF:#0066FF:#000000" straight=straight]
|
||||
W1:w2:e -- W1:w2:w [color="#000000:#FFFFFF:#0066FF:#FFFFFF:#000000" straight=straight]
|
||||
W1:w3:e -- W1:w3:w [color="#000000:#FF8000:#FFFFFF:#FF8000:#000000" straight=straight]
|
||||
W1:w4:e -- W1:w4:w [color="#000000:#FFFFFF:#FF8000:#FFFFFF:#000000" straight=straight]
|
||||
W1:w5:e -- W1:w5:w [color="#000000" straight=straight]
|
||||
}
|
||||