Compare commits
70 Commits
master
...
feature/ju
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
17407c195f | ||
|
|
8979227a20 | ||
|
|
7ef8a0fc52 | ||
|
|
3e4353e62a | ||
|
|
206be6bbed | ||
|
|
cfe9590905 | ||
|
|
203e947293 | ||
|
|
01c3771a9c | ||
|
|
b1d02b9d7f | ||
|
|
0683b446f0 | ||
|
|
a4581d0834 | ||
|
|
fe7f4a3329 | ||
|
|
8f0dbe9e7f | ||
|
|
9fbce3bbf7 | ||
|
|
38ca3e2689 | ||
|
|
ff6afac510 | ||
|
|
d4902ce87d | ||
|
|
edc68cf9fb | ||
|
|
018e3de68b | ||
|
|
07555f2386 | ||
|
|
152f97cc7b | ||
|
|
f5c00fa31c | ||
|
|
860844574f | ||
|
|
b06c75bf2f | ||
|
|
7420718f10 | ||
|
|
812c4aa572 | ||
|
|
6c30d0c40a | ||
|
|
287c47a65e | ||
|
|
ceaad3c39a | ||
|
|
32a62a6dd7 | ||
|
|
50b190113b | ||
|
|
98e103a0af | ||
|
|
e73e189131 | ||
|
|
7d8999b45e | ||
|
|
abbedc4e24 | ||
|
|
fb8c6e94c9 | ||
|
|
2400193435 | ||
|
|
701815874c | ||
|
|
0fed30aa05 | ||
|
|
9d1700c4a0 | ||
|
|
7077543600 | ||
|
|
fee05a71fc | ||
|
|
e756d62e50 | ||
|
|
c376c491d4 | ||
|
|
d8c6230b85 | ||
|
|
a7e667e9b7 | ||
|
|
400c242c90 | ||
|
|
6f6235ad25 | ||
|
|
51f730f28c | ||
|
|
bc01e7c59e | ||
|
|
e4ecf97c1a | ||
|
|
f5f3842fa5 | ||
|
|
c47de6be53 | ||
|
|
d0e25864b3 | ||
|
|
e7902e8f8e | ||
|
|
c33a19708c | ||
|
|
2f737c2371 | ||
|
|
7cf9244af1 | ||
|
|
6c87c27cfc | ||
|
|
336bea8b0d | ||
|
|
590504130c | ||
|
|
a3281b07a2 | ||
|
|
b85bd0cd0a | ||
|
|
81ed3fa12b | ||
|
|
8e3014911a | ||
|
|
684f6f0064 | ||
|
|
0c73e57267 | ||
|
|
49c7685bb2 | ||
|
|
d680361556 | ||
|
|
18782444b1 |
4
.gitattributes
vendored
@ -2,8 +2,8 @@ docs/* linguist-documentation
|
||||
examples/* linguist-documentation
|
||||
tutorial/* linguist-documentation
|
||||
|
||||
**/*.bom.tsv linguist-generated
|
||||
**/*.bom.csv linguist-generated
|
||||
**/*.tsv linguist-generated
|
||||
**/*.csv linguist-generated
|
||||
**/*.gv linguist-generated
|
||||
**/*.html linguist-generated
|
||||
**/*.png linguist-generated
|
||||
|
||||
56
.github/workflows/main.yml
vendored
@ -4,29 +4,39 @@ on: [push, pull_request, workflow_dispatch]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
max-parallel: 4
|
||||
max-parallel: 6
|
||||
matrix:
|
||||
python-version: [3.7, 3.8]
|
||||
# ubuntu-22.04 supports Python 3.7-3.12
|
||||
# ubuntu-24.04 (currently latest & preferred) supports Python 3.9-3.12
|
||||
# More details: https://github.com/actions/runner-images/issues/10636
|
||||
os: [ubuntu-latest]
|
||||
python-version: ["3.9", "3.10", "3.11", "3.12"]
|
||||
include:
|
||||
- os: ubuntu-22.04
|
||||
python-version: "3.7"
|
||||
- os: ubuntu-22.04
|
||||
python-version: "3.8"
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: Setup Graphviz
|
||||
uses: ts-graphviz/setup-graphviz@v1
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install .
|
||||
- name: Create Examples
|
||||
run: PYTHONPATH=$(pwd)/src:$PYTHONPATH cd src/wireviz/ && python build_examples.py
|
||||
- name: Upload examples, demos, and tutorials
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: examples-and-tutorials
|
||||
path: |
|
||||
examples/
|
||||
tutorial/
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: Setup Graphviz
|
||||
uses: ts-graphviz/setup-graphviz@v2
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install .
|
||||
- name: Create Examples
|
||||
run: PYTHONPATH=$(pwd)/src/wireviz:$PYTHONPATH cd src/wireviz/tools/ && python build_examples.py
|
||||
- name: Upload examples, demos, and tutorials
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: examples-and-tutorials-v${{ matrix.python-version }}
|
||||
path: |
|
||||
examples/
|
||||
tutorial/
|
||||
if-no-files-found: error
|
||||
|
||||
28
.gitignore
vendored
@ -1,15 +1,21 @@
|
||||
# OS-specific files
|
||||
.DS_Store
|
||||
desktop.ini
|
||||
Thumbs.db
|
||||
|
||||
# Development aids
|
||||
.idea/
|
||||
.eggs
|
||||
__pycache__
|
||||
.*.swp
|
||||
*.egg-info
|
||||
*.pyc
|
||||
build
|
||||
data
|
||||
dist
|
||||
.vscode/
|
||||
temp/
|
||||
venv/
|
||||
.venv/
|
||||
desktop.ini
|
||||
thumbs.db
|
||||
temp/
|
||||
|
||||
# Build/compile/release artifacts
|
||||
build/
|
||||
dist/
|
||||
*.egg-info
|
||||
*.pyc
|
||||
|
||||
# Other temporary files
|
||||
__pycache__
|
||||
.*.swp
|
||||
|
||||
5
cleanup.sh
Executable file
@ -0,0 +1,5 @@
|
||||
#!/bin/zsh
|
||||
|
||||
autoflake -i --remove-all-unused-imports src/wireviz/*.py
|
||||
isort src/wireviz/*py
|
||||
black src/wireviz/*.py
|
||||
12
devtools.txt
Normal file
@ -0,0 +1,12 @@
|
||||
# The following tools have proven useful during development
|
||||
# Feel free to install while inside the WireViz virtualenv, using:
|
||||
# pip install -r devtools.txt
|
||||
|
||||
# Code formatting
|
||||
black # black src/wireviz/*.py
|
||||
isort # isort src/wireviz/*py
|
||||
|
||||
# Development aids
|
||||
pudb # import pudb; pudb.set_trace()
|
||||
autoflake # autoflake -i --remove-all-unused-imports src/wireviz/*.py
|
||||
pyan # pyan3 src/wireviz/*.py -uncge --html > temp/pyan.html
|
||||
@ -1,13 +1,43 @@
|
||||
# Change Log
|
||||
|
||||
## [0.4](https://github.com/formatc1702/WireViz/tree/v0.4) (unreleased)
|
||||
## [0.5](https://github.com/wireviz/WireViz/tree/v0.5) (20XX-XX-XX)
|
||||
|
||||
TODO
|
||||
|
||||
|
||||
## [0.4.1](https://github.com/wireviz/WireViz/tree/v0.4.1) (2024-07-13)
|
||||
|
||||
### Improvements to help reported issues
|
||||
|
||||
- Print Python & OS versions when raising unexpected OSError related to #346 & #392 (bugfixes below)
|
||||
- Explain unexpeced top-level type ([#342](https://github.com/wireviz/WireViz/issues/342), [#383](https://github.com/wireviz/WireViz/pull/383))
|
||||
- Add non-empty label to reduce over-sized loops ([#286](https://github.com/wireviz/WireViz/issues/286), [#381](https://github.com/wireviz/WireViz/pull/381))
|
||||
- Improve placeholder name consistency ([#377](https://github.com/wireviz/WireViz/issues/377), [#380](https://github.com/wireviz/WireViz/pull/380))
|
||||
- Add work-around for Graphviz SVG bug ([#175](https://github.com/wireviz/WireViz/issues/175), [#371](https://github.com/wireviz/WireViz/pull/371))
|
||||
|
||||
### Bugfixes
|
||||
|
||||
- Avoid ResourceWarning: unclosed file ([#309 (comment)](https://github.com/wireviz/WireViz/pull/309#issuecomment-2170988381), [#395](https://github.com/wireviz/WireViz/pull/395))
|
||||
- Catch ValueError and OSError(errno=None) ([#318 (review)](https://github.com/wireviz/WireViz/pull/318#pullrequestreview-1457016602), [#391](https://github.com/wireviz/WireViz/issues/391), [#392](https://github.com/wireviz/WireViz/pull/392))
|
||||
- Add minor missing doc entry ([#186 (comment)](https://github.com/wireviz/WireViz/pull/186#issuecomment-2139037434), [#186 (comment)](https://github.com/wireviz/WireViz/pull/186#issuecomment-2155032522))
|
||||
- Avoid Graphviz error when hiding all pins ([#257](https://github.com/wireviz/WireViz/issues/257), [#375](https://github.com/wireviz/WireViz/pull/375))
|
||||
- Avoid decimal point and trailing zero for integer BOM quantities ([#340](https://github.com/wireviz/WireViz/issues/340), [#374](https://github.com/wireviz/WireViz/pull/374))
|
||||
- Update project URL references ([#316 (comment)](https://github.com/wireviz/WireViz/issues/316#issuecomment-1568748914), [#364](https://github.com/wireviz/WireViz/pull/364))
|
||||
- Add missing import of embed_svg_images ([#363](https://github.com/wireviz/WireViz/pull/363))
|
||||
- Use correct default title ([#360](https://github.com/wireviz/WireViz/issues/360), [#361](https://github.com/wireviz/WireViz/pull/361))
|
||||
- Fix bugs in mate processing ([#355](https://github.com/wireviz/WireViz/issues/355), [#358](https://github.com/wireviz/WireViz/pull/358))
|
||||
- Include missing files in published package ([#345](https://github.com/wireviz/WireViz/issues/345), [#347](https://github.com/wireviz/WireViz/pull/347))
|
||||
- Catch OSError(errno=EINVAL) ([#344](https://github.com/wireviz/WireViz/issues/344), [#346](https://github.com/wireviz/WireViz/pull/346))
|
||||
|
||||
|
||||
## [0.4](https://github.com/wireviz/WireViz/tree/v0.4) (2024-05-12)
|
||||
|
||||
### Backward-incompatible changes
|
||||
- New syntax for autogenerated components ([#184](https://github.com/wireviz/WireViz/issues/184), [#186](https://github.com/wireviz/WireViz/pull/186))
|
||||
- Components that are not referenced in any connection set will not be rendered. Instead, a warning will be output in the console. ([#328](https://github.com/wireviz/WireViz/issues/328), [#332](https://github.com/wireviz/WireViz/pull/332))
|
||||
- New command line interface ([#244](https://github.com/wireviz/WireViz/pull/244)). Run `wireviz --help` for details
|
||||
- The path specified with the `-o`/`--output-dir` option no longer includes the filename (without extension) of the generated files. Use the `-O`/`--output-name` option to specify a different filename for the generated files.
|
||||
|
||||
- The `.gv` file is no longer included as a default output format (only as an intermediate file during processing) unless specified with the new `-f` option described below.
|
||||
|
||||
### New features
|
||||
|
||||
@ -24,93 +54,89 @@
|
||||
- Minor adjustments ([#256](https://github.com/wireviz/WireViz/pull/256))
|
||||
|
||||
|
||||
## [0.3.2](https://github.com/formatc1702/WireViz/tree/v0.3.2) (2021-11-27)
|
||||
## [0.3.2](https://github.com/wireviz/WireViz/tree/v0.3.2) (2021-11-27)
|
||||
|
||||
### Hotfix
|
||||
|
||||
- Adjust GraphViz generation code for compatibility with v0.18 of the `graphviz` Python package ([#258](https://github.com/formatc1702/WireViz/issues/258), [#261](https://github.com/formatc1702/WireViz/pull/261))
|
||||
- Adjust GraphViz generation code for compatibility with v0.18 of the `graphviz` Python package ([#258](https://github.com/wireviz/WireViz/issues/258), [#261](https://github.com/wireviz/WireViz/pull/261))
|
||||
|
||||
|
||||
## [0.3.1](https://github.com/formatc1702/WireViz/tree/v0.3.1) (2021-10-25)
|
||||
## [0.3.1](https://github.com/wireviz/WireViz/tree/v0.3.1) (2021-10-25)
|
||||
|
||||
### Hotfix
|
||||
|
||||
- Assign generic harness title when using WireViz as a module and not specifying an output file name ([#253](https://github.com/formatc1702/WireViz/issues/253), [#254](https://github.com/formatc1702/WireViz/pull/254))
|
||||
- Assign generic harness title when using WireViz as a module and not specifying an output file name ([#253](https://github.com/wireviz/WireViz/issues/253), [#254](https://github.com/wireviz/WireViz/pull/254))
|
||||
|
||||
|
||||
## [0.3](https://github.com/formatc1702/WireViz/tree/v0.3) (2021-10-11)
|
||||
## [0.3](https://github.com/wireviz/WireViz/tree/v0.3) (2021-10-11)
|
||||
|
||||
### New features
|
||||
|
||||
- Allow referencing a cable's/bundle's wires by color or by label ([#70](https://github.com/formatc1702/WireViz/issues/70), [#169](https://github.com/formatc1702/WireViz/issues/169), [#193](https://github.com/formatc1702/WireViz/issues/193), [#194](https://github.com/formatc1702/WireViz/pull/194))
|
||||
- Allow additional BOM items within components ([#50](https://github.com/formatc1702/WireViz/issues/50), [#115](https://github.com/formatc1702/WireViz/pull/115))
|
||||
- Add support for length units in cables and wires ([#7](https://github.com/formatc1702/WireViz/issues/7), [#196](https://github.com/formatc1702/WireViz/pull/196) (with work from [#161](https://github.com/formatc1702/WireViz/pull/161), [#162](https://github.com/formatc1702/WireViz/pull/162), [#171](https://github.com/formatc1702/WireViz/pull/171)), [#198](https://github.com/formatc1702/WireViz/pull/198), [#205](https://github.com/formatc1702/WireViz/issues/205). [#206](https://github.com/formatc1702/WireViz/pull/206))
|
||||
- Add option to define connector pin colors ([#53](https://github.com/formatc1702/WireViz/issues/53), [#141](https://github.com/formatc1702/WireViz/pull/141))
|
||||
- Remove HTML links from the input attributes ([#164](https://github.com/formatc1702/WireViz/pull/164))
|
||||
- Add harness metadata section ([#158](https://github.com/formatc1702/WireViz/issues/158), [#214](https://github.com/formatc1702/WireViz/pull/214))
|
||||
- Add support for supplier and supplier part number information ([#240](https://github.com/formatc1702/WireViz/issues/240), [#241](https://github.com/formatc1702/WireViz/pull/241/))
|
||||
- Add graph rendering options (colors, font, color name display style, ...) ([#158](https://github.com/formatc1702/WireViz/issues/158), [#214](https://github.com/formatc1702/WireViz/pull/214))
|
||||
- Add support for supplier and supplier part number information ([#240](https://github.com/formatc1702/WireViz/issues/240), [#241](https://github.com/formatc1702/WireViz/pull/241/))
|
||||
- Add graph rendering options (colors, font, color name display style, ...) ([#158](https://github.com/formatc1702/WireViz/issues/158), [#214](https://github.com/formatc1702/WireViz/pull/214))
|
||||
- Add support for background colors for cables and connectors, as well as for some individual cells ([#210](https://github.com/formatc1702/WireViz/issues/210), [#219](https://github.com/formatc1702/WireViz/pull/219))
|
||||
- Add optional tweaking of the .gv output ([#215](https://github.com/formatc1702/WireViz/pull/215)) (experimental)
|
||||
|
||||
- Allow referencing a cable's/bundle's wires by color or by label ([#70](https://github.com/wireviz/WireViz/issues/70), [#169](https://github.com/wireviz/WireViz/issues/169), [#193](https://github.com/wireviz/WireViz/issues/193), [#194](https://github.com/wireviz/WireViz/pull/194))
|
||||
- Allow additional BOM items within components ([#50](https://github.com/wireviz/WireViz/issues/50), [#115](https://github.com/wireviz/WireViz/pull/115))
|
||||
- Add support for length units in cables and wires ([#7](https://github.com/wireviz/WireViz/issues/7), [#196](https://github.com/wireviz/WireViz/pull/196) (with work from [#161](https://github.com/wireviz/WireViz/pull/161), [#162](https://github.com/wireviz/WireViz/pull/162), [#171](https://github.com/wireviz/WireViz/pull/171)), [#198](https://github.com/wireviz/WireViz/pull/198), [#205](https://github.com/wireviz/WireViz/issues/205). [#206](https://github.com/wireviz/WireViz/pull/206))
|
||||
- Add option to define connector pin colors ([#53](https://github.com/wireviz/WireViz/issues/53), [#141](https://github.com/wireviz/WireViz/pull/141))
|
||||
- Remove HTML links from the input attributes ([#164](https://github.com/wireviz/WireViz/pull/164))
|
||||
- Add harness metadata section ([#158](https://github.com/wireviz/WireViz/issues/158), [#214](https://github.com/wireviz/WireViz/pull/214))
|
||||
- Add support for supplier and supplier part number information ([#240](https://github.com/wireviz/WireViz/issues/240), [#241](https://github.com/wireviz/WireViz/pull/241/))
|
||||
- Add graph rendering options (background colors, fontname, color name display style, ...) ([#158](https://github.com/wireviz/WireViz/issues/158), [#214](https://github.com/wireviz/WireViz/pull/214))
|
||||
- Add support for background colors for cables and connectors, as well as for some individual cells ([#210](https://github.com/wireviz/WireViz/issues/210), [#219](https://github.com/wireviz/WireViz/pull/219))
|
||||
- Add optional tweaking of the .gv output ([#215](https://github.com/wireviz/WireViz/pull/215)) (experimental)
|
||||
|
||||
### Misc. fixes
|
||||
|
||||
- Remove case-sensitivity issues with pin names and labels ([#160](https://github.com/formatc1702/WireViz/issues/160), [#229](https://github.com/formatc1702/WireViz/pull/229))
|
||||
- Improve type hinting ([#156](https://github.com/formatc1702/WireViz/issues/156), [#163](https://github.com/formatc1702/WireViz/pull/163))
|
||||
- Move BOM management and HTML functions to separate modules ([#151](https://github.com/formatc1702/WireViz/issues/151), [#192](https://github.com/formatc1702/WireViz/pull/192))
|
||||
- Simplify BOM code ([#197](https://github.com/formatc1702/WireViz/pull/197))
|
||||
- Bug fixes ([#218](https://github.com/formatc1702/WireViz/pull/218), [#221](https://github.com/formatc1702/WireViz/pull/221))
|
||||
- Remove case-sensitivity issues with pin names and labels ([#160](https://github.com/wireviz/WireViz/issues/160), [#229](https://github.com/wireviz/WireViz/pull/229))
|
||||
- Improve type hinting ([#156](https://github.com/wireviz/WireViz/issues/156), [#163](https://github.com/wireviz/WireViz/pull/163))
|
||||
- Move BOM management and HTML functions to separate modules ([#151](https://github.com/wireviz/WireViz/issues/151), [#192](https://github.com/wireviz/WireViz/pull/192))
|
||||
- Simplify BOM code ([#197](https://github.com/wireviz/WireViz/pull/197))
|
||||
- Bug fixes ([#218](https://github.com/wireviz/WireViz/pull/218), [#221](https://github.com/wireviz/WireViz/pull/221))
|
||||
|
||||
### Known issues
|
||||
|
||||
- Including images in the harness may lead to issues in the following cases: ([#189](https://github.com/formatc1702/WireViz/pull/189), [#220](https://github.com/formatc1702/WireViz/issues/220))
|
||||
- Including images in the harness may lead to issues in the following cases: ([#189](https://github.com/wireviz/WireViz/pull/189), [#220](https://github.com/wireviz/WireViz/issues/220))
|
||||
- When using the `-o`/`--output_file` CLI option, specifying an output path in a different directory from the input file
|
||||
- When using the `--prepend-file` CLI option, specifying a prepend file in a different directory from the mail input file
|
||||
|
||||
## [0.2](https://github.com/formatc1702/WireViz/tree/v0.2) (2020-10-17)
|
||||
|
||||
## [0.2](https://github.com/wireviz/WireViz/tree/v0.2) (2020-10-17)
|
||||
|
||||
### Backward incompatible changes
|
||||
|
||||
- Change names of connector attributes ([#77](https://github.com/formatc1702/WireViz/issues/77), [#105](https://github.com/formatc1702/WireViz/pull/105))
|
||||
- Change names of connector attributes ([#77](https://github.com/wireviz/WireViz/issues/77), [#105](https://github.com/wireviz/WireViz/pull/105))
|
||||
- `pinnumbers` is now `pins`
|
||||
- `pinout` is now `pinlabels`
|
||||
- Remove ferrules as a separate connector type ([#78](https://github.com/formatc1702/WireViz/issues/78), [#102](https://github.com/formatc1702/WireViz/pull/102))
|
||||
- Remove ferrules as a separate connector type ([#78](https://github.com/wireviz/WireViz/issues/78), [#102](https://github.com/wireviz/WireViz/pull/102))
|
||||
- Simple connectors like ferrules are now defined using the `style: simple` attribute
|
||||
- Change the way loops are defined ([#79](https://github.com/formatc1702/WireViz/issues/79), [#75](https://github.com/formatc1702/WireViz/pull/75))
|
||||
- Change the way loops are defined ([#79](https://github.com/wireviz/WireViz/issues/79), [#75](https://github.com/wireviz/WireViz/pull/75))
|
||||
- Wires looping between two pins of the same connector are now handled via the connector's `loops` attribute.
|
||||
|
||||
See the [syntax description](syntax.md) for details.
|
||||
|
||||
|
||||
### New features
|
||||
|
||||
- Add bidirectional AWG/mm2 conversion ([#40](https://github.com/formatc1702/WireViz/issues/40), [#41](https://github.com/formatc1702/WireViz/pull/41))
|
||||
- Add support for part numbers ([#11](https://github.com/formatc1702/WireViz/pull/11), [#114](https://github.com/formatc1702/WireViz/issues/114), [#121](https://github.com/formatc1702/WireViz/pull/121))
|
||||
- Add support for multicolored wires ([#12](https://github.com/formatc1702/WireViz/issues/12), [#17](https://github.com/formatc1702/WireViz/pull/17), [#96](https://github.com/formatc1702/WireViz/pull/96), [#131](https://github.com/formatc1702/WireViz/issues/131), [#132](https://github.com/formatc1702/WireViz/pull/132))
|
||||
- Add support for images ([#27](https://github.com/formatc1702/WireViz/issues/27), [#153](https://github.com/formatc1702/WireViz/pull/153))
|
||||
- Add ability to export data directly to other programs ([#55](https://github.com/formatc1702/WireViz/pull/55))
|
||||
- Add support for line breaks in various fields ([#49](https://github.com/formatc1702/WireViz/issues/49), [#64](https://github.com/formatc1702/WireViz/pull/64))
|
||||
- Allow using connector pin names to define connections ([#72](https://github.com/formatc1702/WireViz/issues/72), [#139](https://github.com/formatc1702/WireViz/issues/139), [#140](https://github.com/formatc1702/WireViz/pull/140))
|
||||
- Make defining connection sets easier and more flexible ([#67](https://github.com/formatc1702/WireViz/issues/67), [#75](https://github.com/formatc1702/WireViz/pull/75))
|
||||
- Add new command line options ([#167](https://github.com/formatc1702/WireViz/issues/167), [#173](https://github.com/formatc1702/WireViz/pull/173))
|
||||
- Add new features to `build_examples.py` ([#118](https://github.com/formatc1702/WireViz/pull/118))
|
||||
- Add new colors ([#103](https://github.com/formatc1702/WireViz/pull/103), [#113](https://github.com/formatc1702/WireViz/pull/113), [#144](https://github.com/formatc1702/WireViz/issues/144), [#145](https://github.com/formatc1702/WireViz/pull/145))
|
||||
- Improve documentation ([#107](https://github.com/formatc1702/WireViz/issues/107), [#111](https://github.com/formatc1702/WireViz/pull/111))
|
||||
|
||||
- Add bidirectional AWG/mm2 conversion ([#40](https://github.com/wireviz/WireViz/issues/40), [#41](https://github.com/wireviz/WireViz/pull/41))
|
||||
- Add support for part numbers ([#11](https://github.com/wireviz/WireViz/pull/11), [#114](https://github.com/wireviz/WireViz/issues/114), [#121](https://github.com/wireviz/WireViz/pull/121))
|
||||
- Add support for multicolored wires ([#12](https://github.com/wireviz/WireViz/issues/12), [#17](https://github.com/wireviz/WireViz/pull/17), [#96](https://github.com/wireviz/WireViz/pull/96), [#131](https://github.com/wireviz/WireViz/issues/131), [#132](https://github.com/wireviz/WireViz/pull/132))
|
||||
- Add support for images ([#27](https://github.com/wireviz/WireViz/issues/27), [#153](https://github.com/wireviz/WireViz/pull/153))
|
||||
- Add ability to export data directly to other programs ([#55](https://github.com/wireviz/WireViz/pull/55))
|
||||
- Add support for line breaks in various fields ([#49](https://github.com/wireviz/WireViz/issues/49), [#64](https://github.com/wireviz/WireViz/pull/64))
|
||||
- Allow using connector pin names to define connections ([#72](https://github.com/wireviz/WireViz/issues/72), [#139](https://github.com/wireviz/WireViz/issues/139), [#140](https://github.com/wireviz/WireViz/pull/140))
|
||||
- Make defining connection sets easier and more flexible ([#67](https://github.com/wireviz/WireViz/issues/67), [#75](https://github.com/wireviz/WireViz/pull/75))
|
||||
- Add new command line options ([#167](https://github.com/wireviz/WireViz/issues/167), [#173](https://github.com/wireviz/WireViz/pull/173))
|
||||
- Add new features to `build_examples.py` ([#118](https://github.com/wireviz/WireViz/pull/118))
|
||||
- Add new colors ([#103](https://github.com/wireviz/WireViz/pull/103), [#113](https://github.com/wireviz/WireViz/pull/113), [#144](https://github.com/wireviz/WireViz/issues/144), [#145](https://github.com/wireviz/WireViz/pull/145))
|
||||
- Improve documentation ([#107](https://github.com/wireviz/WireViz/issues/107), [#111](https://github.com/wireviz/WireViz/pull/111))
|
||||
|
||||
### Misc. fixes
|
||||
|
||||
- Improve BOM generation
|
||||
- Add various input sanity checks
|
||||
- Improve HTML output ([#66](https://github.com/formatc1702/WireViz/issues/66), [#136](https://github.com/formatc1702/WireViz/pull/136), [#95](https://github.com/formatc1702/WireViz/pull/95), [#177](https://github.com/formatc1702/WireViz/pull/177))
|
||||
- Fix node rendering bug ([#69](https://github.com/formatc1702/WireViz/issues/69), [#104](https://github.com/formatc1702/WireViz/pull/104))
|
||||
- Improve shield rendering ([#125](https://github.com/formatc1702/WireViz/issues/125), [#126](https://github.com/formatc1702/WireViz/pull/126))
|
||||
- Add GitHub Linguist overrides ([#146](https://github.com/formatc1702/WireViz/issues/146), [#154](https://github.com/formatc1702/WireViz/pull/154))
|
||||
- Improve HTML output ([#66](https://github.com/wireviz/WireViz/issues/66), [#136](https://github.com/wireviz/WireViz/pull/136), [#95](https://github.com/wireviz/WireViz/pull/95), [#177](https://github.com/wireviz/WireViz/pull/177))
|
||||
- Fix node rendering bug ([#69](https://github.com/wireviz/WireViz/issues/69), [#104](https://github.com/wireviz/WireViz/pull/104))
|
||||
- Improve shield rendering ([#125](https://github.com/wireviz/WireViz/issues/125), [#126](https://github.com/wireviz/WireViz/pull/126))
|
||||
- Add GitHub Linguist overrides ([#146](https://github.com/wireviz/WireViz/issues/146), [#154](https://github.com/wireviz/WireViz/pull/154))
|
||||
|
||||
|
||||
## [0.1](https://github.com/formatc1702/WireViz/tree/v0.1) (2020-06-29)
|
||||
## [0.1](https://github.com/wireviz/WireViz/tree/v0.1) (2020-06-29)
|
||||
|
||||
- Initial release
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
# Contribution Guidelines
|
||||
|
||||
When contributing to this repository, please [submit a new issue](https://github.com/formatc1702/WireViz/issues) first to discuss the proposed change, before submitting a pull request.
|
||||
When contributing to this repository, please [submit a new issue](https://github.com/wireviz/WireViz/issues) first to discuss the proposed change, before submitting a pull request.
|
||||
|
||||
## Submitting a new Issue
|
||||
|
||||
@ -27,7 +27,7 @@ When contributing to this repository, please [submit a new issue](https://github
|
||||
1. Push the changes to your fork.
|
||||
1. Please format your code using [`isort`](https://pycqa.github.io/isort/) and [`black`](https://black.readthedocs.io) before submitting.
|
||||
1. Submit a new pull request, using `dev` as the base branch.
|
||||
- If your code changes or extends the WireViz YAML syntax, be sure to update the [syntax description document](https://github.com/formatc1702/WireViz/blob/dev/docs/syntax.md) in your PR.
|
||||
- If your code changes or extends the WireViz YAML syntax, be sure to update the [syntax description document](https://github.com/wireviz/WireViz/blob/dev/docs/syntax.md) in your PR.
|
||||
1. Please include in the PR description (and optionally also in the commit message body) a reference (# followed by issue number) to the issue where the suggested changes are discussed.
|
||||
|
||||
### Hints
|
||||
|
||||
@ -74,13 +74,13 @@ Output file:
|
||||
|
||||

|
||||
|
||||
[Bill of Materials](../examples/demo01.bom.tsv) (auto-generated)
|
||||
[Bill of Materials](../examples/demo01.tsv) (auto-generated)
|
||||
|
||||
### Demo 02
|
||||
|
||||

|
||||
|
||||
[Source](../examples/demo02.yml) - [Bill of Materials](../examples/demo02.bom.tsv)
|
||||
[Source](../examples/demo02.yml) - [Bill of Materials](../examples/demo02.tsv)
|
||||
|
||||
### Syntax, tutorial and example gallery
|
||||
|
||||
@ -133,11 +133,11 @@ Depending on the options specified, this will output some or all of the followin
|
||||
mywire.gv GraphViz output
|
||||
mywire.svg Wiring diagram as vector image
|
||||
mywire.png Wiring diagram as raster image
|
||||
mywire.bom.tsv BOM (bill of materials) as tab-separated text file
|
||||
mywire.tsv BOM (bill of materials) as tab-separated text file
|
||||
mywire.html HTML page with wiring diagram and BOM embedded
|
||||
```
|
||||
|
||||
Wildcars in the file path are also supported to process multiple files at once, e.g.:
|
||||
Wildcards in the file path are also supported to process multiple files at once, e.g.:
|
||||
```
|
||||
$ wireviz ~/path/to/files/*.yml
|
||||
```
|
||||
@ -148,6 +148,11 @@ 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
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
<!--
|
||||
The following text is taken from #118
|
||||
https://github.com/formatc1702/WireViz/pull/118
|
||||
https://github.com/wireviz/WireViz/pull/118
|
||||
|
||||
TODO: write a better explaination -->
|
||||
|
||||
@ -26,7 +26,7 @@ Possible group names:
|
||||
- `tutorial` to process`tutorial/{readme.md,tutorial*.*}`
|
||||
- `demos` to process`examples/demo*.*`
|
||||
|
||||
Affected filetypes: `.gv`, `.bom.tsv`, `.png`, `.svg`, `.html`
|
||||
Affected filetypes: `.gv`, `.tsv`, `.png`, `.svg`, `.html`
|
||||
|
||||
|
||||
## Usage hints
|
||||
|
||||
@ -83,8 +83,24 @@ 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)
|
||||
# OR
|
||||
- <List> # a list of pins to be looped
|
||||
# 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)
|
||||
# OR
|
||||
- <List> # a list of pins to be shorted
|
||||
# it is not posable to combine those two
|
||||
shorts_hide_lable: <bool> # A Boolean to control if the lable of the shorts should be shown, if a list is used this is automatically turned true.
|
||||
```
|
||||
|
||||
## Cable attributes
|
||||
@ -319,6 +335,8 @@ connections:
|
||||
Since the internally assigned designator of an unnamed component is not known to the user, one instance of the connector can not be referenced again outside the point of creation (i.e. in other connection sets, or later in the same set). Autogeneration of unnamed instances is therefore only useful for terminals with only one wire attached, or splices with exactly one wire going in, and one wire going out.
|
||||
If a component is to be used in other connection sets (e.g. for a three-way splice, or a crimp where multiple wires are joined), a named instance needs to be used.
|
||||
|
||||
The default character to trigger autogeneration of components is `.`. A different character can be specified using the `template_separator` option (see below).
|
||||
|
||||
Names of autogenerated components are hidden by default. While they can be shown in the graphical output using the `show_name: true` option, it is not recommended to manually use the internally assigned designator (starting with a double underscore `__`), since it might change in future WireViz versions, or when the order of items in connection sets changes.
|
||||
|
||||
|
||||
@ -353,6 +371,7 @@ If any component is defined in the `connectors` or `cables` sections but not ref
|
||||
# If no value is specified for 'title', then the
|
||||
# output filename without extension is used.
|
||||
```
|
||||
See [HTML Output Templates](../src/wireviz/templates/) for how metadata entries can be inserted into the HTML output.
|
||||
|
||||
## Options
|
||||
|
||||
@ -387,6 +406,9 @@ If any component is defined in the `connectors` or `cables` sections but not ref
|
||||
# about additional components inside the diagram node (connector/cable box).
|
||||
# If False, show all info about additional components inside the diagram node.
|
||||
mini_bom_mode: <bool> # Default = True
|
||||
|
||||
# Character to split template and designator for autogenerated components
|
||||
template_separator: <str> # Default = '.'
|
||||
```
|
||||
|
||||
|
||||
@ -494,7 +516,7 @@ The following colors are understood:
|
||||
- `GD`  (gold)
|
||||
|
||||
<!-- color list generated with a helper script: -->
|
||||
<!-- https://gist.github.com/formatc1702/3c93fb4c5e392364899283f78672b952 -->
|
||||
<!-- https://gist.github.com/17o2/3c93fb4c5e392364899283f78672b952 -->
|
||||
|
||||
It is also possible to specify colors as hexadecimal RGB values, e.g. `#112233` or `#FFFF00:#009900`.
|
||||
Remember quoting strings containing a `#` in the YAML file.
|
||||
|
||||
8
examples/demo01.bom.tsv
generated
@ -1,4 +1,4 @@
|
||||
Id Description Qty Unit Designators
|
||||
1 Cable, 3 x 0.25 mm² shielded 0.2 m W1
|
||||
2 Connector, D-Sub, female, 9 pins 1 X1
|
||||
3 Connector, Molex KK 254, female, 3 pins 1 X2
|
||||
# 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
|
||||
|
||||
|
362
examples/demo01.gv
generated
@ -1,184 +1,212 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4
|
||||
// https://github.com/formatc1702/WireViz
|
||||
// Graph generated by WireViz 0.5-dev+refactor
|
||||
// https://github.com/wireviz/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]
|
||||
> 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"></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"></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"></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="6" port="w4"></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]
|
||||
}
|
||||
|
||||
329
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 - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.5-dev+refactor - https://github.com/wireviz/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,172 +30,205 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="821pt" height="291pt"
|
||||
viewBox="0.00 0.00 821.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="none" points="-4,4 -4,-287 817,-287 817,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="136,-253 0,-253 0,0 136,0 136,-253"/>
|
||||
<polygon fill="none" stroke="black" points="0,-229.5 0,-252.5 136,-252.5 136,-229.5 0,-229.5"/>
|
||||
<text text-anchor="start" x="59.5" y="-237.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-206.5 0,-229.5 47,-229.5 47,-206.5 0,-206.5"/>
|
||||
<text text-anchor="start" x="4" y="-214.3" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="47,-206.5 47,-229.5 97,-229.5 97,-206.5 47,-206.5"/>
|
||||
<text text-anchor="start" x="51" y="-214.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="97,-206.5 97,-229.5 136,-229.5 136,-206.5 97,-206.5"/>
|
||||
<text text-anchor="start" x="101" y="-214.3" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-183.5 0,-206.5 80,-206.5 80,-183.5 0,-183.5"/>
|
||||
<text text-anchor="start" x="25" y="-191.3" font-family="arial" font-size="14.00">DCD</text>
|
||||
<polygon fill="none" stroke="black" points="80,-183.5 80,-206.5 136,-206.5 136,-183.5 80,-183.5"/>
|
||||
<text text-anchor="start" x="104" y="-191.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-160.5 0,-183.5 80,-183.5 80,-160.5 0,-160.5"/>
|
||||
<text text-anchor="start" x="30.5" y="-168.3" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="80,-160.5 80,-183.5 136,-183.5 136,-160.5 80,-160.5"/>
|
||||
<text text-anchor="start" x="104" y="-168.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-137.5 0,-160.5 80,-160.5 80,-137.5 0,-137.5"/>
|
||||
<text text-anchor="start" x="31" y="-145.3" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="80,-137.5 80,-160.5 136,-160.5 136,-137.5 80,-137.5"/>
|
||||
<text text-anchor="start" x="104" y="-145.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-114.5 0,-137.5 80,-137.5 80,-114.5 0,-114.5"/>
|
||||
<text text-anchor="start" x="26" y="-122.3" font-family="arial" font-size="14.00">DTR</text>
|
||||
<polygon fill="none" stroke="black" points="80,-114.5 80,-137.5 136,-137.5 136,-114.5 80,-114.5"/>
|
||||
<text text-anchor="start" x="104" y="-122.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0,-91.5 0,-114.5 80,-114.5 80,-91.5 0,-91.5"/>
|
||||
<text text-anchor="start" x="24.5" y="-99.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="80,-91.5 80,-114.5 136,-114.5 136,-91.5 80,-91.5"/>
|
||||
<text text-anchor="start" x="104" y="-99.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-68.5 0,-91.5 80,-91.5 80,-68.5 0,-68.5"/>
|
||||
<text text-anchor="start" x="25.5" y="-76.3" font-family="arial" font-size="14.00">DSR</text>
|
||||
<polygon fill="none" stroke="black" points="80,-68.5 80,-91.5 136,-91.5 136,-68.5 80,-68.5"/>
|
||||
<text text-anchor="start" x="104" y="-76.3" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0,-45.5 0,-68.5 80,-68.5 80,-45.5 0,-45.5"/>
|
||||
<text text-anchor="start" x="26" y="-53.3" font-family="arial" font-size="14.00">RTS</text>
|
||||
<polygon fill="none" stroke="black" points="80,-45.5 80,-68.5 136,-68.5 136,-45.5 80,-45.5"/>
|
||||
<text text-anchor="start" x="104" y="-53.3" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0,-22.5 0,-45.5 80,-45.5 80,-22.5 0,-22.5"/>
|
||||
<text text-anchor="start" x="26" y="-30.3" font-family="arial" font-size="14.00">CTS</text>
|
||||
<polygon fill="none" stroke="black" points="80,-22.5 80,-45.5 136,-45.5 136,-22.5 80,-22.5"/>
|
||||
<text text-anchor="start" x="104" y="-30.3" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="0,0.5 0,-22.5 80,-22.5 80,0.5 0,0.5"/>
|
||||
<text text-anchor="start" x="33" y="-7.3" font-family="arial" font-size="14.00">RI</text>
|
||||
<polygon fill="none" stroke="black" points="80,0.5 80,-22.5 136,-22.5 136,0.5 80,0.5"/>
|
||||
<text text-anchor="start" x="104" 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.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="487,-283 280,-283 280,-84 487,-84 487,-283"/>
|
||||
<polygon fill="none" stroke="black" points="280.5,-259.5 280.5,-282.5 487.5,-282.5 487.5,-259.5 280.5,-259.5"/>
|
||||
<text text-anchor="start" x="373" y="-267.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="280.5,-236.5 280.5,-259.5 314.5,-259.5 314.5,-236.5 280.5,-236.5"/>
|
||||
<text text-anchor="start" x="290" y="-244.3" font-family="arial" font-size="14.00">3x</text>
|
||||
<polygon fill="none" stroke="black" points="314.5,-236.5 314.5,-259.5 392.5,-259.5 392.5,-236.5 314.5,-236.5"/>
|
||||
<text text-anchor="start" x="324" y="-244.3" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="392.5,-236.5 392.5,-259.5 433.5,-259.5 433.5,-236.5 392.5,-236.5"/>
|
||||
<text text-anchor="start" x="402" y="-244.3" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="433.5,-236.5 433.5,-259.5 487.5,-259.5 487.5,-236.5 433.5,-236.5"/>
|
||||
<text text-anchor="start" x="443" y="-244.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="312" y="-223.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="282.5" y="-204.3" font-family="arial" font-size="14.00">X1:5:GND</text>
|
||||
<text text-anchor="start" x="349.5" y="-204.3" font-family="arial" font-size="14.00">     1:WH    </text>
|
||||
<text text-anchor="start" x="422.5" y="-204.3" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="280.5,-196.5 280.5,-198.5 487.5,-198.5 487.5,-196.5 280.5,-196.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="280.5,-194.5 280.5,-196.5 487.5,-196.5 487.5,-194.5 280.5,-194.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="280.5,-192.5 280.5,-194.5 487.5,-194.5 487.5,-192.5 280.5,-192.5"/>
|
||||
<text text-anchor="start" x="288.5" y="-179.3" font-family="arial" font-size="14.00">X1:2:RX</text>
|
||||
<text text-anchor="start" x="352" y="-179.3" font-family="arial" font-size="14.00">     2:BN    </text>
|
||||
<text text-anchor="start" x="429.5" y="-179.3" font-family="arial" font-size="14.00">X2:3:TX</text>
|
||||
<polygon fill="#000000" stroke="none" points="280.5,-171.5 280.5,-173.5 487.5,-173.5 487.5,-171.5 280.5,-171.5"/>
|
||||
<polygon fill="#895956" stroke="none" points="280.5,-169.5 280.5,-171.5 487.5,-171.5 487.5,-169.5 280.5,-169.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="280.5,-167.5 280.5,-169.5 487.5,-169.5 487.5,-167.5 280.5,-167.5"/>
|
||||
<text text-anchor="start" x="289.5" y="-154.3" font-family="arial" font-size="14.00">X1:3:TX</text>
|
||||
<text text-anchor="start" x="350.5" y="-154.3" font-family="arial" font-size="14.00">     3:GN    </text>
|
||||
<text text-anchor="start" x="428.5" y="-154.3" font-family="arial" font-size="14.00">X2:2:RX</text>
|
||||
<polygon fill="#000000" stroke="none" points="280.5,-146.5 280.5,-148.5 487.5,-148.5 487.5,-146.5 280.5,-146.5"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="280.5,-144.5 280.5,-146.5 487.5,-146.5 487.5,-144.5 280.5,-144.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="280.5,-142.5 280.5,-144.5 487.5,-144.5 487.5,-142.5 280.5,-142.5"/>
|
||||
<text text-anchor="start" x="312" y="-129.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="282.5" y="-110.3" font-family="arial" font-size="14.00">X1:5:GND</text>
|
||||
<text text-anchor="start" x="365" y="-110.3" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polygon fill="#000000" stroke="none" points="280.5,-102.5 280.5,-104.5 487.5,-104.5 487.5,-102.5 280.5,-102.5"/>
|
||||
<text text-anchor="start" x="312" 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,-84 486.5,-84 486.5,-297"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-84 283.5,-297 486.5,-297 486.5,-84 283.5,-84"/>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<text text-anchor="start" x="318.12" y="-88.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-100.5C214.18,-102.68 205.81,-195.68 280,-193.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M136,-102.5C212.19,-102.5 203.81,-195.5 280,-195.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-104.5C210.19,-102.32 201.82,-195.32 280,-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="M136,-170.5C199.76,-170.52 215.75,-168.52 280,-168.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M136,-172.5C200.01,-172.5 215.99,-170.5 280,-170.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-174.5C200.25,-174.48 216.24,-172.48 280,-172.5"/>
|
||||
<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.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="M136,-147.5C199.54,-147.56 215.49,-143.56 280,-143.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M136,-149.5C200.02,-149.5 215.98,-145.5 280,-145.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-151.5C200.51,-151.44 216.46,-147.44 280,-147.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-108C203.5,-108 219.5,-107 283.5,-107"/>
|
||||
</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="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>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-102.5C200,-102.5 216,-103.5 280,-103.5"/>
|
||||
<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>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,-107C418.83,-107 351.17,-107 283.5,-107"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="813,-254 631,-254 631,-139 813,-139 813,-254"/>
|
||||
<polygon fill="none" stroke="black" points="631,-230.5 631,-253.5 813,-253.5 813,-230.5 631,-230.5"/>
|
||||
<text text-anchor="start" x="713.5" y="-238.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="631,-207.5 631,-230.5 724,-230.5 724,-207.5 631,-207.5"/>
|
||||
<text text-anchor="start" x="635" y="-215.3" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="724,-207.5 724,-230.5 774,-230.5 774,-207.5 724,-207.5"/>
|
||||
<text text-anchor="start" x="728" y="-215.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="774,-207.5 774,-230.5 813,-230.5 813,-207.5 774,-207.5"/>
|
||||
<text text-anchor="start" x="778" y="-215.3" font-family="arial" font-size="14.00">3-pin</text>
|
||||
<polygon fill="none" stroke="black" points="631,-184.5 631,-207.5 711,-207.5 711,-184.5 631,-184.5"/>
|
||||
<text text-anchor="start" x="667" y="-192.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="711,-184.5 711,-207.5 813,-207.5 813,-184.5 711,-184.5"/>
|
||||
<text text-anchor="start" x="746.5" y="-192.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="631,-161.5 631,-184.5 711,-184.5 711,-161.5 631,-161.5"/>
|
||||
<text text-anchor="start" x="667" y="-169.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="711,-161.5 711,-184.5 813,-184.5 813,-161.5 711,-161.5"/>
|
||||
<text text-anchor="start" x="752.5" y="-169.3" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="631,-138.5 631,-161.5 711,-161.5 711,-138.5 631,-138.5"/>
|
||||
<text text-anchor="start" x="667" y="-146.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="711,-138.5 711,-161.5 813,-161.5 813,-138.5 711,-138.5"/>
|
||||
<text text-anchor="start" x="753" 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="edge2" class="edge">
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-193.5C551,-193.5 567,-193.5 631,-193.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M487,-195.5C551,-195.5 567,-195.5 631,-195.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-197.5C551,-197.5 567,-197.5 631,-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="edge4" class="edge">
|
||||
<g id="edge11" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-168.5C550.04,-169.36 564.68,-148.36 631,-147.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M487,-170.5C551.68,-170.5 566.32,-149.5 631,-149.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-172.5C553.32,-171.64 567.96,-150.64 631,-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="edge6" class="edge">
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-143.5C553.9,-144.59 567.67,-171.59 631,-170.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M487,-145.5C552.12,-145.5 565.88,-172.5 631,-172.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-147.5C550.33,-146.41 564.1,-173.41 631,-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>
|
||||
@ -211,33 +244,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: 55 KiB After Width: | Height: | Size: 45 KiB |
299
examples/demo01.svg
generated
@ -1,172 +1,205 @@
|
||||
<?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 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="821pt" height="291pt"
|
||||
viewBox="0.00 0.00 821.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="none" points="-4,4 -4,-287 817,-287 817,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="136,-253 0,-253 0,0 136,0 136,-253"/>
|
||||
<polygon fill="none" stroke="black" points="0,-229.5 0,-252.5 136,-252.5 136,-229.5 0,-229.5"/>
|
||||
<text text-anchor="start" x="59.5" y="-237.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-206.5 0,-229.5 47,-229.5 47,-206.5 0,-206.5"/>
|
||||
<text text-anchor="start" x="4" y="-214.3" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="47,-206.5 47,-229.5 97,-229.5 97,-206.5 47,-206.5"/>
|
||||
<text text-anchor="start" x="51" y="-214.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="97,-206.5 97,-229.5 136,-229.5 136,-206.5 97,-206.5"/>
|
||||
<text text-anchor="start" x="101" y="-214.3" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-183.5 0,-206.5 80,-206.5 80,-183.5 0,-183.5"/>
|
||||
<text text-anchor="start" x="25" y="-191.3" font-family="arial" font-size="14.00">DCD</text>
|
||||
<polygon fill="none" stroke="black" points="80,-183.5 80,-206.5 136,-206.5 136,-183.5 80,-183.5"/>
|
||||
<text text-anchor="start" x="104" y="-191.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-160.5 0,-183.5 80,-183.5 80,-160.5 0,-160.5"/>
|
||||
<text text-anchor="start" x="30.5" y="-168.3" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="80,-160.5 80,-183.5 136,-183.5 136,-160.5 80,-160.5"/>
|
||||
<text text-anchor="start" x="104" y="-168.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-137.5 0,-160.5 80,-160.5 80,-137.5 0,-137.5"/>
|
||||
<text text-anchor="start" x="31" y="-145.3" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="80,-137.5 80,-160.5 136,-160.5 136,-137.5 80,-137.5"/>
|
||||
<text text-anchor="start" x="104" y="-145.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-114.5 0,-137.5 80,-137.5 80,-114.5 0,-114.5"/>
|
||||
<text text-anchor="start" x="26" y="-122.3" font-family="arial" font-size="14.00">DTR</text>
|
||||
<polygon fill="none" stroke="black" points="80,-114.5 80,-137.5 136,-137.5 136,-114.5 80,-114.5"/>
|
||||
<text text-anchor="start" x="104" y="-122.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0,-91.5 0,-114.5 80,-114.5 80,-91.5 0,-91.5"/>
|
||||
<text text-anchor="start" x="24.5" y="-99.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="80,-91.5 80,-114.5 136,-114.5 136,-91.5 80,-91.5"/>
|
||||
<text text-anchor="start" x="104" y="-99.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-68.5 0,-91.5 80,-91.5 80,-68.5 0,-68.5"/>
|
||||
<text text-anchor="start" x="25.5" y="-76.3" font-family="arial" font-size="14.00">DSR</text>
|
||||
<polygon fill="none" stroke="black" points="80,-68.5 80,-91.5 136,-91.5 136,-68.5 80,-68.5"/>
|
||||
<text text-anchor="start" x="104" y="-76.3" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0,-45.5 0,-68.5 80,-68.5 80,-45.5 0,-45.5"/>
|
||||
<text text-anchor="start" x="26" y="-53.3" font-family="arial" font-size="14.00">RTS</text>
|
||||
<polygon fill="none" stroke="black" points="80,-45.5 80,-68.5 136,-68.5 136,-45.5 80,-45.5"/>
|
||||
<text text-anchor="start" x="104" y="-53.3" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0,-22.5 0,-45.5 80,-45.5 80,-22.5 0,-22.5"/>
|
||||
<text text-anchor="start" x="26" y="-30.3" font-family="arial" font-size="14.00">CTS</text>
|
||||
<polygon fill="none" stroke="black" points="80,-22.5 80,-45.5 136,-45.5 136,-22.5 80,-22.5"/>
|
||||
<text text-anchor="start" x="104" y="-30.3" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="0,0.5 0,-22.5 80,-22.5 80,0.5 0,0.5"/>
|
||||
<text text-anchor="start" x="33" y="-7.3" font-family="arial" font-size="14.00">RI</text>
|
||||
<polygon fill="none" stroke="black" points="80,0.5 80,-22.5 136,-22.5 136,0.5 80,0.5"/>
|
||||
<text text-anchor="start" x="104" 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.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="487,-283 280,-283 280,-84 487,-84 487,-283"/>
|
||||
<polygon fill="none" stroke="black" points="280.5,-259.5 280.5,-282.5 487.5,-282.5 487.5,-259.5 280.5,-259.5"/>
|
||||
<text text-anchor="start" x="373" y="-267.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="280.5,-236.5 280.5,-259.5 314.5,-259.5 314.5,-236.5 280.5,-236.5"/>
|
||||
<text text-anchor="start" x="290" y="-244.3" font-family="arial" font-size="14.00">3x</text>
|
||||
<polygon fill="none" stroke="black" points="314.5,-236.5 314.5,-259.5 392.5,-259.5 392.5,-236.5 314.5,-236.5"/>
|
||||
<text text-anchor="start" x="324" y="-244.3" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="392.5,-236.5 392.5,-259.5 433.5,-259.5 433.5,-236.5 392.5,-236.5"/>
|
||||
<text text-anchor="start" x="402" y="-244.3" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="433.5,-236.5 433.5,-259.5 487.5,-259.5 487.5,-236.5 433.5,-236.5"/>
|
||||
<text text-anchor="start" x="443" y="-244.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="312" y="-223.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="282.5" y="-204.3" font-family="arial" font-size="14.00">X1:5:GND</text>
|
||||
<text text-anchor="start" x="349.5" y="-204.3" font-family="arial" font-size="14.00">     1:WH    </text>
|
||||
<text text-anchor="start" x="422.5" y="-204.3" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="280.5,-196.5 280.5,-198.5 487.5,-198.5 487.5,-196.5 280.5,-196.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="280.5,-194.5 280.5,-196.5 487.5,-196.5 487.5,-194.5 280.5,-194.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="280.5,-192.5 280.5,-194.5 487.5,-194.5 487.5,-192.5 280.5,-192.5"/>
|
||||
<text text-anchor="start" x="288.5" y="-179.3" font-family="arial" font-size="14.00">X1:2:RX</text>
|
||||
<text text-anchor="start" x="352" y="-179.3" font-family="arial" font-size="14.00">     2:BN    </text>
|
||||
<text text-anchor="start" x="429.5" y="-179.3" font-family="arial" font-size="14.00">X2:3:TX</text>
|
||||
<polygon fill="#000000" stroke="none" points="280.5,-171.5 280.5,-173.5 487.5,-173.5 487.5,-171.5 280.5,-171.5"/>
|
||||
<polygon fill="#895956" stroke="none" points="280.5,-169.5 280.5,-171.5 487.5,-171.5 487.5,-169.5 280.5,-169.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="280.5,-167.5 280.5,-169.5 487.5,-169.5 487.5,-167.5 280.5,-167.5"/>
|
||||
<text text-anchor="start" x="289.5" y="-154.3" font-family="arial" font-size="14.00">X1:3:TX</text>
|
||||
<text text-anchor="start" x="350.5" y="-154.3" font-family="arial" font-size="14.00">     3:GN    </text>
|
||||
<text text-anchor="start" x="428.5" y="-154.3" font-family="arial" font-size="14.00">X2:2:RX</text>
|
||||
<polygon fill="#000000" stroke="none" points="280.5,-146.5 280.5,-148.5 487.5,-148.5 487.5,-146.5 280.5,-146.5"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="280.5,-144.5 280.5,-146.5 487.5,-146.5 487.5,-144.5 280.5,-144.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="280.5,-142.5 280.5,-144.5 487.5,-144.5 487.5,-142.5 280.5,-142.5"/>
|
||||
<text text-anchor="start" x="312" y="-129.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="282.5" y="-110.3" font-family="arial" font-size="14.00">X1:5:GND</text>
|
||||
<text text-anchor="start" x="365" y="-110.3" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polygon fill="#000000" stroke="none" points="280.5,-102.5 280.5,-104.5 487.5,-104.5 487.5,-102.5 280.5,-102.5"/>
|
||||
<text text-anchor="start" x="312" 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,-84 486.5,-84 486.5,-297"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="283.5,-84 283.5,-297 486.5,-297 486.5,-84 283.5,-84"/>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<text text-anchor="start" x="318.12" y="-88.7" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<g id="edge2" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-100.5C214.18,-102.68 205.81,-195.68 280,-193.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M136,-102.5C212.19,-102.5 203.81,-195.5 280,-195.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-104.5C210.19,-102.32 201.82,-195.32 280,-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="M136,-170.5C199.76,-170.52 215.75,-168.52 280,-168.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M136,-172.5C200.01,-172.5 215.99,-170.5 280,-170.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-174.5C200.25,-174.48 216.24,-172.48 280,-172.5"/>
|
||||
<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.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="M136,-147.5C199.54,-147.56 215.49,-143.56 280,-143.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M136,-149.5C200.02,-149.5 215.98,-145.5 280,-145.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-151.5C200.51,-151.44 216.46,-147.44 280,-147.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M139.5,-108C203.5,-108 219.5,-107 283.5,-107"/>
|
||||
</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="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>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-102.5C200,-102.5 216,-103.5 280,-103.5"/>
|
||||
<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>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,-107C418.83,-107 351.17,-107 283.5,-107"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="813,-254 631,-254 631,-139 813,-139 813,-254"/>
|
||||
<polygon fill="none" stroke="black" points="631,-230.5 631,-253.5 813,-253.5 813,-230.5 631,-230.5"/>
|
||||
<text text-anchor="start" x="713.5" y="-238.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="631,-207.5 631,-230.5 724,-230.5 724,-207.5 631,-207.5"/>
|
||||
<text text-anchor="start" x="635" y="-215.3" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="724,-207.5 724,-230.5 774,-230.5 774,-207.5 724,-207.5"/>
|
||||
<text text-anchor="start" x="728" y="-215.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="774,-207.5 774,-230.5 813,-230.5 813,-207.5 774,-207.5"/>
|
||||
<text text-anchor="start" x="778" y="-215.3" font-family="arial" font-size="14.00">3-pin</text>
|
||||
<polygon fill="none" stroke="black" points="631,-184.5 631,-207.5 711,-207.5 711,-184.5 631,-184.5"/>
|
||||
<text text-anchor="start" x="667" y="-192.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="711,-184.5 711,-207.5 813,-207.5 813,-184.5 711,-184.5"/>
|
||||
<text text-anchor="start" x="746.5" y="-192.3" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="631,-161.5 631,-184.5 711,-184.5 711,-161.5 631,-161.5"/>
|
||||
<text text-anchor="start" x="667" y="-169.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="711,-161.5 711,-184.5 813,-184.5 813,-161.5 711,-161.5"/>
|
||||
<text text-anchor="start" x="752.5" y="-169.3" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="631,-138.5 631,-161.5 711,-161.5 711,-138.5 631,-138.5"/>
|
||||
<text text-anchor="start" x="667" y="-146.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="711,-138.5 711,-161.5 813,-161.5 813,-138.5 711,-138.5"/>
|
||||
<text text-anchor="start" x="753" 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="edge2" class="edge">
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-193.5C551,-193.5 567,-193.5 631,-193.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M487,-195.5C551,-195.5 567,-195.5 631,-195.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-197.5C551,-197.5 567,-197.5 631,-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="edge4" class="edge">
|
||||
<g id="edge11" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-168.5C550.04,-169.36 564.68,-148.36 631,-147.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M487,-170.5C551.68,-170.5 566.32,-149.5 631,-149.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-172.5C553.32,-171.64 567.96,-150.64 631,-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="edge6" class="edge">
|
||||
<g id="edge12" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-143.5C553.9,-144.59 567.67,-171.59 631,-170.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M487,-145.5C552.12,-145.5 565.88,-172.5 631,-172.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-147.5C550.33,-146.41 564.1,-173.41 631,-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: 13 KiB After Width: | Height: | Size: 15 KiB |
@ -1,8 +1,13 @@
|
||||
metadata:
|
||||
title: demo01
|
||||
|
||||
connectors:
|
||||
X1:
|
||||
type: D-Sub
|
||||
subtype: female
|
||||
pinlabels: [DCD, RX, TX, DTR, GND, DSR, RTS, CTS, RI]
|
||||
loops:
|
||||
L1: [7,8]
|
||||
X2:
|
||||
type: Molex KK 254
|
||||
subtype: female
|
||||
@ -17,10 +22,8 @@ cables:
|
||||
shield: true
|
||||
|
||||
connections:
|
||||
-
|
||||
- X1: [5,2,3]
|
||||
- W1: [1,2,3]
|
||||
- X2: [1,3,2]
|
||||
-
|
||||
- X1: 5
|
||||
- - X1: [5, 2, 3]
|
||||
- W1: [1, 2, 3]
|
||||
- X2: [1, 3, 2]
|
||||
- - X1: 5
|
||||
- W1: s
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
26
examples/demo02.bom.tsv
generated
@ -1,13 +1,13 @@
|
||||
Id Description Qty Unit Designators
|
||||
1 Cable, 2 x 0.25 mm² 0.3 m W4
|
||||
2 Connector, Crimp ferrule, 0.25 mm², YE 2
|
||||
3 Connector, Molex KK 254, female, 4 pins 2 X2, X3
|
||||
4 Connector, Molex KK 254, female, 5 pins 1 X4
|
||||
5 Connector, Molex KK 254, female, 8 pins 1 X1
|
||||
6 Wire, 0.14 mm², BK 0.9 m W1, W2, W3
|
||||
7 Wire, 0.14 mm², BU 0.3 m W3
|
||||
8 Wire, 0.14 mm², GN 0.6 m W1, W2
|
||||
9 Wire, 0.14 mm², OG 0.3 m W3
|
||||
10 Wire, 0.14 mm², RD 0.6 m W1, W2
|
||||
11 Wire, 0.14 mm², VT 0.3 m W3
|
||||
12 Wire, 0.14 mm², YE 0.6 m W1, W2
|
||||
# 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
|
||||
|
||||
|
1052
examples/demo02.gv
generated
1129
examples/demo02.html
generated
BIN
examples/demo02.png
generated
|
Before Width: | Height: | Size: 207 KiB After Width: | Height: | Size: 169 KiB |
970
examples/demo02.svg
generated
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 43 KiB |
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
6
examples/ex01.bom.tsv
generated
@ -1,3 +1,3 @@
|
||||
Id Description Qty Unit Designators
|
||||
1 Cable, Serial, 4 x 0.25 mm² shielded 0.2 m W1
|
||||
2 Connector, Molex KK 254, female, 4 pins 2 X1, X2
|
||||
# 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
|
||||
|
||||
|
359
examples/ex01.gv
generated
@ -1,188 +1,209 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4
|
||||
// https://github.com/formatc1702/WireViz
|
||||
// Graph generated by WireViz 0.5-dev+refactor
|
||||
// https://github.com/wireviz/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"></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"></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"></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"></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="6" port="w5"></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]
|
||||
}
|
||||
|
||||
326
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 - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.5-dev+refactor - https://github.com/wireviz/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,212 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="931pt" height="232pt"
|
||||
viewBox="0.00 0.00 931.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="none" points="-4,4 -4,-228 927,-228 927,4 -4,4"/>
|
||||
<svg width="950pt" height="247pt"
|
||||
viewBox="0.00 0.00 950.25 247.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 243)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-243 946.25,-243 946.25,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="182,-191 0,-191 0,-53 182,-53 182,-191"/>
|
||||
<polygon fill="none" stroke="black" points="0,-168 0,-191 182,-191 182,-168 0,-168"/>
|
||||
<text text-anchor="start" x="82.5" y="-175.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-145 0,-168 93,-168 93,-145 0,-145"/>
|
||||
<text text-anchor="start" x="4" y="-152.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="93,-145 93,-168 143,-168 143,-145 93,-145"/>
|
||||
<text text-anchor="start" x="97" y="-152.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="143,-145 143,-168 182,-168 182,-145 143,-145"/>
|
||||
<text text-anchor="start" x="147" y="-152.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-122 0,-145 103,-145 103,-122 0,-122"/>
|
||||
<text text-anchor="start" x="36" y="-129.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="103,-122 103,-145 182,-145 182,-122 103,-122"/>
|
||||
<text text-anchor="start" x="138.5" y="-129.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-99 0,-122 103,-122 103,-99 0,-99"/>
|
||||
<text text-anchor="start" x="37" y="-106.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="103,-99 103,-122 182,-122 182,-99 103,-99"/>
|
||||
<text text-anchor="start" x="138.5" y="-106.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-76 0,-99 103,-99 103,-76 0,-76"/>
|
||||
<text text-anchor="start" x="42" y="-83.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="103,-76 103,-99 182,-99 182,-76 103,-76"/>
|
||||
<text text-anchor="start" x="138.5" y="-83.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-53 0,-76 103,-76 103,-53 0,-53"/>
|
||||
<text text-anchor="start" x="42.5" y="-60.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="103,-53 103,-76 182,-76 182,-53 103,-53"/>
|
||||
<text text-anchor="start" x="138.5" y="-60.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="188.25,-204 0,-204 0,-59 188.25,-59 188.25,-204"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-59 0,-204 188.25,-204 188.25,-59 0,-59"/>
|
||||
<polygon fill="none" stroke="black" points="0,-179.5 0,-204 188.25,-204 188.25,-179.5 0,-179.5"/>
|
||||
<text text-anchor="start" x="85.13" y="-186.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-155 0,-179.5 97.25,-179.5 97.25,-155 0,-155"/>
|
||||
<text text-anchor="start" x="4" y="-162.2" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="97.25,-155 97.25,-179.5 148.75,-179.5 148.75,-155 97.25,-155"/>
|
||||
<text text-anchor="start" x="101.25" y="-162.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="148.75,-155 148.75,-179.5 188.25,-179.5 188.25,-155 148.75,-155"/>
|
||||
<text text-anchor="start" x="152.75" y="-162.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-131 0,-155 105.63,-155 105.63,-131 0,-131"/>
|
||||
<text text-anchor="start" x="37.06" y="-137.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-131 105.63,-155 188.25,-155 188.25,-131 105.63,-131"/>
|
||||
<text text-anchor="start" x="142.81" y="-137.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-107 0,-131 105.63,-131 105.63,-107 0,-107"/>
|
||||
<text text-anchor="start" x="37.44" y="-113.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-107 105.63,-131 188.25,-131 188.25,-107 105.63,-107"/>
|
||||
<text text-anchor="start" x="142.81" y="-113.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-83 0,-107 105.63,-107 105.63,-83 0,-83"/>
|
||||
<text text-anchor="start" x="42.69" y="-89.7" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-83 105.63,-107 188.25,-107 188.25,-83 105.63,-83"/>
|
||||
<text text-anchor="start" x="142.81" y="-89.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-59 0,-83 105.63,-83 105.63,-59 0,-59"/>
|
||||
<text text-anchor="start" x="43.44" y="-65.7" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-59 105.63,-83 188.25,-83 188.25,-59 105.63,-59"/>
|
||||
<text text-anchor="start" x="142.81" y="-65.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="597,-224 326,-224 326,0 597,0 597,-224"/>
|
||||
<polygon fill="none" stroke="black" points="326.5,-201 326.5,-224 597.5,-224 597.5,-201 326.5,-201"/>
|
||||
<text text-anchor="start" x="451" y="-208.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="326.5,-178 326.5,-201 369.5,-201 369.5,-178 326.5,-178"/>
|
||||
<text text-anchor="start" x="330.5" y="-185.8" font-family="arial" font-size="14.00">Serial</text>
|
||||
<polygon fill="none" stroke="black" points="369.5,-178 369.5,-201 392.5,-201 392.5,-178 369.5,-178"/>
|
||||
<text text-anchor="start" x="373.5" y="-185.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="392.5,-178 392.5,-201 524.5,-201 524.5,-178 392.5,-178"/>
|
||||
<text text-anchor="start" x="396.5" y="-185.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="524.5,-178 524.5,-201 554.5,-201 554.5,-178 524.5,-178"/>
|
||||
<text text-anchor="start" x="528.5" y="-185.8" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="554.5,-178 554.5,-201 597.5,-201 597.5,-178 554.5,-178"/>
|
||||
<text text-anchor="start" x="558.5" y="-185.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="369" y="-164.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="339.5" y="-145.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="430.5" y="-145.8" font-family="arial" font-size="14.00">     1:BN    </text>
|
||||
<text text-anchor="start" x="522" y="-145.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-138 326.5,-140 597.5,-140 597.5,-138 326.5,-138"/>
|
||||
<polygon fill="#895956" stroke="none" points="326.5,-136 326.5,-138 597.5,-138 597.5,-136 326.5,-136"/>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-134 326.5,-136 597.5,-136 597.5,-134 326.5,-134"/>
|
||||
<text text-anchor="start" x="340.5" y="-120.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="430" y="-120.8" font-family="arial" font-size="14.00">     2:RD    </text>
|
||||
<text text-anchor="start" x="523" y="-120.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-113 326.5,-115 597.5,-115 597.5,-113 326.5,-113"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="326.5,-111 326.5,-113 597.5,-113 597.5,-111 326.5,-111"/>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-109 326.5,-111 597.5,-111 597.5,-109 326.5,-109"/>
|
||||
<text text-anchor="start" x="345.5" y="-95.8" font-family="arial" font-size="14.00">X1:3:RX</text>
|
||||
<text text-anchor="start" x="428.5" y="-95.8" font-family="arial" font-size="14.00">     3:OG    </text>
|
||||
<text text-anchor="start" x="529" y="-95.8" font-family="arial" font-size="14.00">X2:4:TX</text>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-88 326.5,-90 597.5,-90 597.5,-88 326.5,-88"/>
|
||||
<polygon fill="#ff8000" stroke="none" points="326.5,-86 326.5,-88 597.5,-88 597.5,-86 326.5,-86"/>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-84 326.5,-86 597.5,-86 597.5,-84 326.5,-84"/>
|
||||
<text text-anchor="start" x="346.5" y="-70.8" font-family="arial" font-size="14.00">X1:4:TX</text>
|
||||
<text text-anchor="start" x="430.5" y="-70.8" font-family="arial" font-size="14.00">     4:YE    </text>
|
||||
<text text-anchor="start" x="528" y="-70.8" font-family="arial" font-size="14.00">X2:3:RX</text>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-63 326.5,-65 597.5,-65 597.5,-63 326.5,-63"/>
|
||||
<polygon fill="#ffff00" stroke="none" points="326.5,-61 326.5,-63 597.5,-63 597.5,-61 326.5,-61"/>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-59 326.5,-61 597.5,-61 597.5,-59 326.5,-59"/>
|
||||
<text text-anchor="start" x="369" y="-45.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="339.5" y="-26.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="443.5" y="-26.8" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-19 326.5,-21 597.5,-21 597.5,-19 326.5,-19"/>
|
||||
<text text-anchor="start" x="369" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="610,-239 332.25,-239 332.25,0 610,0 610,-239"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,0 332.25,-239 610,-239 610,0 332.25,0"/>
|
||||
<polygon fill="none" stroke="black" points="332.25,-214.5 332.25,-239 610,-239 610,-214.5 332.25,-214.5"/>
|
||||
<text text-anchor="start" x="459.87" y="-221.7" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="332.25,-190 332.25,-214.5 376.25,-214.5 376.25,-190 332.25,-190"/>
|
||||
<text text-anchor="start" x="336.25" y="-197.2" font-family="arial" font-size="14.00">Serial</text>
|
||||
<polygon fill="none" stroke="black" points="376.25,-190 376.25,-214.5 399.25,-214.5 399.25,-190 376.25,-190"/>
|
||||
<text text-anchor="start" x="380.25" y="-197.2" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="399.25,-190 399.25,-214.5 536.25,-214.5 536.25,-190 399.25,-190"/>
|
||||
<text text-anchor="start" x="403.25" y="-197.2" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="536.25,-190 536.25,-214.5 566,-214.5 566,-190 536.25,-190"/>
|
||||
<text text-anchor="start" x="540.25" y="-197.2" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="566,-190 566,-214.5 610,-214.5 610,-190 566,-190"/>
|
||||
<text text-anchor="start" x="570" y="-197.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="374.35" y="-174.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="334.25" y="-154.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="429.3" y="-154.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="455.37" y="-154.7" font-family="arial" font-size="14.00">1:BN</text>
|
||||
<text text-anchor="start" x="509.2" y="-154.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="539" y="-154.7" font-family="arial" font-size="14.00">X2:1:GND </text>
|
||||
<text text-anchor="start" x="334.25" y="-128.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="429.3" y="-128.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="454.62" y="-128.7" font-family="arial" font-size="14.00">2:RD</text>
|
||||
<text text-anchor="start" x="509.2" y="-128.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="539.75" y="-128.7" font-family="arial" font-size="14.00">X2:2:VCC </text>
|
||||
<text text-anchor="start" x="334.25" y="-102.7" font-family="arial" font-size="14.00"> X1:3:RX</text>
|
||||
<text text-anchor="start" x="429.3" y="-102.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="453.87" y="-102.7" font-family="arial" font-size="14.00">3:OG</text>
|
||||
<text text-anchor="start" x="509.2" y="-102.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="551.75" y="-102.7" font-family="arial" font-size="14.00">X2:4:TX </text>
|
||||
<text text-anchor="start" x="334.25" y="-76.7" font-family="arial" font-size="14.00"> X1:4:TX</text>
|
||||
<text text-anchor="start" x="429.3" y="-76.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="455.75" y="-76.7" font-family="arial" font-size="14.00">4:YE</text>
|
||||
<text text-anchor="start" x="509.2" y="-76.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="550.25" y="-76.7" font-family="arial" font-size="14.00">X2:3:RX </text>
|
||||
<text text-anchor="start" x="374.35" y="-50.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="334.25" y="-30.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="429.3" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="451.25" y="-30.7" font-family="arial" font-size="14.00">Shield</text>
|
||||
<text text-anchor="start" x="509.2" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="604.25" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<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="M182,-132C246.38,-132.03 262.36,-135.03 326,-135"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M182,-134C246.01,-134 261.99,-137 326,-137"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-136C245.64,-135.97 261.62,-138.97 326,-139"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-141C252.76,-141.06 268.72,-145.06 332.25,-145"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M188.25,-143C252.27,-143 268.23,-147 332.25,-147"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-145C251.78,-144.94 267.74,-148.94 332.25,-149"/>
|
||||
</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,-117C252.51,-117.02 268.49,-119.02 332.25,-119"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M188.25,-119C252.26,-119 268.24,-121 332.25,-121"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-121C252.01,-120.98 267.99,-122.98 332.25,-123"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-108C246.25,-108.02 262.24,-110.02 326,-110"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182,-110C246.01,-110 261.99,-112 326,-112"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-112C245.76,-111.98 261.75,-113.98 326,-114"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-93C252.25,-93 268.25,-93 332.25,-93"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M188.25,-95C252.25,-95 268.25,-95 332.25,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-97C252.25,-97 268.25,-97 332.25,-97"/>
|
||||
</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,-69C252.01,-69.02 267.99,-67.02 332.25,-67"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M188.25,-71C252.26,-71 268.24,-69 332.25,-69"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-73C252.51,-72.98 268.49,-70.98 332.25,-71"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-85C246,-85 262,-85 326,-85"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M182,-87C246,-87 262,-87 326,-87"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-89C246,-89 262,-89 326,-89"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-143C271.56,-143 248.94,-23 332.25,-23"/>
|
||||
</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,-149C517.42,-149 424.83,-149 332.25,-149"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M610,-147C517.42,-147 424.83,-147 332.25,-147"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-145C517.42,-145 424.83,-145 332.25,-145"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-62C245.76,-62.02 261.75,-60.02 326,-60"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-64C246.01,-64 261.99,-62 326,-62"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-66C246.25,-65.98 262.24,-63.98 326,-64"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-123C517.42,-123 424.83,-123 332.25,-123"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M610,-121C517.42,-121 424.83,-121 332.25,-121"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-119C517.42,-119 424.83,-119 332.25,-119"/>
|
||||
</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,-97C517.42,-97 424.83,-97 332.25,-97"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M610,-95C517.42,-95 424.83,-95 332.25,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-93C517.42,-93 424.83,-93 332.25,-93"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-134C263.63,-134 244.37,-20 326,-20"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-71C517.42,-71 424.83,-71 332.25,-71"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M610,-69C517.42,-69 424.83,-69 332.25,-69"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-67C517.42,-67 424.83,-67 332.25,-67"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-23C517.42,-23 424.83,-23 332.25,-23"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="923,-193 741,-193 741,-55 923,-55 923,-193"/>
|
||||
<polygon fill="none" stroke="black" points="741,-170 741,-193 923,-193 923,-170 741,-170"/>
|
||||
<text text-anchor="start" x="823.5" y="-177.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="741,-147 741,-170 834,-170 834,-147 741,-147"/>
|
||||
<text text-anchor="start" x="745" y="-154.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="834,-147 834,-170 884,-170 884,-147 834,-147"/>
|
||||
<text text-anchor="start" x="838" y="-154.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="884,-147 884,-170 923,-170 923,-147 884,-147"/>
|
||||
<text text-anchor="start" x="888" y="-154.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="741,-124 741,-147 821,-147 821,-124 741,-124"/>
|
||||
<text text-anchor="start" x="777" y="-131.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="821,-124 821,-147 923,-147 923,-124 821,-124"/>
|
||||
<text text-anchor="start" x="856.5" y="-131.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="741,-101 741,-124 821,-124 821,-101 741,-101"/>
|
||||
<text text-anchor="start" x="777" y="-108.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="821,-101 821,-124 923,-124 923,-101 821,-101"/>
|
||||
<text text-anchor="start" x="857.5" y="-108.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="741,-78 741,-101 821,-101 821,-78 741,-78"/>
|
||||
<text text-anchor="start" x="777" y="-85.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="821,-78 821,-101 923,-101 923,-78 821,-78"/>
|
||||
<text text-anchor="start" x="862.5" y="-85.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="741,-55 741,-78 821,-78 821,-55 741,-55"/>
|
||||
<text text-anchor="start" x="777" y="-62.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="821,-55 821,-78 923,-78 923,-55 821,-55"/>
|
||||
<text text-anchor="start" x="863" y="-62.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="942.25,-207 754,-207 754,-62 942.25,-62 942.25,-207"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="754,-62 754,-207 942.25,-207 942.25,-62 754,-62"/>
|
||||
<polygon fill="none" stroke="black" points="754,-182.5 754,-207 942.25,-207 942.25,-182.5 754,-182.5"/>
|
||||
<text text-anchor="start" x="839.12" y="-189.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="754,-158 754,-182.5 851.25,-182.5 851.25,-158 754,-158"/>
|
||||
<text text-anchor="start" x="758" y="-165.2" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="851.25,-158 851.25,-182.5 902.75,-182.5 902.75,-158 851.25,-158"/>
|
||||
<text text-anchor="start" x="855.25" y="-165.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="902.75,-158 902.75,-182.5 942.25,-182.5 942.25,-158 902.75,-158"/>
|
||||
<text text-anchor="start" x="906.75" y="-165.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="754,-134 754,-158 836.62,-158 836.62,-134 754,-134"/>
|
||||
<text text-anchor="start" x="791.18" y="-140.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="836.62,-134 836.62,-158 942.25,-158 942.25,-134 836.62,-134"/>
|
||||
<text text-anchor="start" x="873.68" y="-140.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="754,-110 754,-134 836.62,-134 836.62,-110 754,-110"/>
|
||||
<text text-anchor="start" x="791.18" y="-116.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="836.62,-110 836.62,-134 942.25,-134 942.25,-110 836.62,-110"/>
|
||||
<text text-anchor="start" x="874.06" y="-116.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="754,-86 754,-110 836.62,-110 836.62,-86 754,-86"/>
|
||||
<text text-anchor="start" x="791.18" y="-92.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="836.62,-86 836.62,-110 942.25,-110 942.25,-86 836.62,-86"/>
|
||||
<text text-anchor="start" x="879.31" y="-92.7" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="754,-62 754,-86 836.62,-86 836.62,-62 754,-62"/>
|
||||
<text text-anchor="start" x="791.18" y="-68.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="836.62,-62 836.62,-86 942.25,-86 942.25,-62 836.62,-62"/>
|
||||
<text text-anchor="start" x="880.06" y="-68.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="M597,-135C660.88,-135 676.87,-134 741,-134"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M597,-137C661,-137 677,-136 741,-136"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-139C661.13,-139 677.12,-138 741,-138"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-145C673.88,-145 689.88,-144 754,-144"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M610,-147C674,-147 690,-146 754,-146"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-149C674.13,-149 690.13,-148 754,-148"/>
|
||||
</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="M597,-110C661,-110 677,-110 741,-110"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M597,-112C661,-112 677,-112 741,-112"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-114C661,-114 677,-114 741,-114"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-119C674.13,-119 690.13,-120 754,-120"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M610,-121C674,-121 690,-122 754,-122"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-123C673.88,-123 689.88,-124 754,-124"/>
|
||||
</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="M597,-85C660.04,-85.86 674.68,-64.86 741,-64"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M597,-87C661.68,-87 676.32,-66 741,-66"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-89C663.32,-88.14 677.96,-67.14 741,-68"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-93C673.04,-93.86 687.68,-72.86 754,-72"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M610,-95C674.68,-95 689.32,-74 754,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-97C676.32,-96.14 690.96,-75.14 754,-76"/>
|
||||
</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="M597,-60C663.9,-61.09 677.67,-88.09 741,-87"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M597,-62C662.12,-62 675.88,-89 741,-89"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-64C660.33,-62.91 674.1,-89.91 741,-91"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-67C677.1,-68.16 690.54,-97.16 754,-96"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M610,-69C675.28,-69 688.72,-98 754,-98"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-71C673.47,-69.84 686.91,-98.84 754,-100"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
@ -217,26 +251,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 |
300
examples/ex01.svg
generated
@ -1,178 +1,212 @@
|
||||
<?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 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="931pt" height="232pt"
|
||||
viewBox="0.00 0.00 931.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="none" points="-4,4 -4,-228 927,-228 927,4 -4,4"/>
|
||||
<svg width="950pt" height="247pt"
|
||||
viewBox="0.00 0.00 950.25 247.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 243)">
|
||||
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-243 946.25,-243 946.25,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="182,-191 0,-191 0,-53 182,-53 182,-191"/>
|
||||
<polygon fill="none" stroke="black" points="0,-168 0,-191 182,-191 182,-168 0,-168"/>
|
||||
<text text-anchor="start" x="82.5" y="-175.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-145 0,-168 93,-168 93,-145 0,-145"/>
|
||||
<text text-anchor="start" x="4" y="-152.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="93,-145 93,-168 143,-168 143,-145 93,-145"/>
|
||||
<text text-anchor="start" x="97" y="-152.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="143,-145 143,-168 182,-168 182,-145 143,-145"/>
|
||||
<text text-anchor="start" x="147" y="-152.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-122 0,-145 103,-145 103,-122 0,-122"/>
|
||||
<text text-anchor="start" x="36" y="-129.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="103,-122 103,-145 182,-145 182,-122 103,-122"/>
|
||||
<text text-anchor="start" x="138.5" y="-129.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-99 0,-122 103,-122 103,-99 0,-99"/>
|
||||
<text text-anchor="start" x="37" y="-106.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="103,-99 103,-122 182,-122 182,-99 103,-99"/>
|
||||
<text text-anchor="start" x="138.5" y="-106.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-76 0,-99 103,-99 103,-76 0,-76"/>
|
||||
<text text-anchor="start" x="42" y="-83.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="103,-76 103,-99 182,-99 182,-76 103,-76"/>
|
||||
<text text-anchor="start" x="138.5" y="-83.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-53 0,-76 103,-76 103,-53 0,-53"/>
|
||||
<text text-anchor="start" x="42.5" y="-60.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="103,-53 103,-76 182,-76 182,-53 103,-53"/>
|
||||
<text text-anchor="start" x="138.5" y="-60.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="188.25,-204 0,-204 0,-59 188.25,-59 188.25,-204"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-59 0,-204 188.25,-204 188.25,-59 0,-59"/>
|
||||
<polygon fill="none" stroke="black" points="0,-179.5 0,-204 188.25,-204 188.25,-179.5 0,-179.5"/>
|
||||
<text text-anchor="start" x="85.13" y="-186.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-155 0,-179.5 97.25,-179.5 97.25,-155 0,-155"/>
|
||||
<text text-anchor="start" x="4" y="-162.2" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="97.25,-155 97.25,-179.5 148.75,-179.5 148.75,-155 97.25,-155"/>
|
||||
<text text-anchor="start" x="101.25" y="-162.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="148.75,-155 148.75,-179.5 188.25,-179.5 188.25,-155 148.75,-155"/>
|
||||
<text text-anchor="start" x="152.75" y="-162.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-131 0,-155 105.63,-155 105.63,-131 0,-131"/>
|
||||
<text text-anchor="start" x="37.06" y="-137.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-131 105.63,-155 188.25,-155 188.25,-131 105.63,-131"/>
|
||||
<text text-anchor="start" x="142.81" y="-137.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-107 0,-131 105.63,-131 105.63,-107 0,-107"/>
|
||||
<text text-anchor="start" x="37.44" y="-113.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-107 105.63,-131 188.25,-131 188.25,-107 105.63,-107"/>
|
||||
<text text-anchor="start" x="142.81" y="-113.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-83 0,-107 105.63,-107 105.63,-83 0,-83"/>
|
||||
<text text-anchor="start" x="42.69" y="-89.7" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-83 105.63,-107 188.25,-107 188.25,-83 105.63,-83"/>
|
||||
<text text-anchor="start" x="142.81" y="-89.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-59 0,-83 105.63,-83 105.63,-59 0,-59"/>
|
||||
<text text-anchor="start" x="43.44" y="-65.7" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="none" stroke="black" points="105.63,-59 105.63,-83 188.25,-83 188.25,-59 105.63,-59"/>
|
||||
<text text-anchor="start" x="142.81" y="-65.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="597,-224 326,-224 326,0 597,0 597,-224"/>
|
||||
<polygon fill="none" stroke="black" points="326.5,-201 326.5,-224 597.5,-224 597.5,-201 326.5,-201"/>
|
||||
<text text-anchor="start" x="451" y="-208.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="326.5,-178 326.5,-201 369.5,-201 369.5,-178 326.5,-178"/>
|
||||
<text text-anchor="start" x="330.5" y="-185.8" font-family="arial" font-size="14.00">Serial</text>
|
||||
<polygon fill="none" stroke="black" points="369.5,-178 369.5,-201 392.5,-201 392.5,-178 369.5,-178"/>
|
||||
<text text-anchor="start" x="373.5" y="-185.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="392.5,-178 392.5,-201 524.5,-201 524.5,-178 392.5,-178"/>
|
||||
<text text-anchor="start" x="396.5" y="-185.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="524.5,-178 524.5,-201 554.5,-201 554.5,-178 524.5,-178"/>
|
||||
<text text-anchor="start" x="528.5" y="-185.8" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="554.5,-178 554.5,-201 597.5,-201 597.5,-178 554.5,-178"/>
|
||||
<text text-anchor="start" x="558.5" y="-185.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="369" y="-164.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="339.5" y="-145.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="430.5" y="-145.8" font-family="arial" font-size="14.00">     1:BN    </text>
|
||||
<text text-anchor="start" x="522" y="-145.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-138 326.5,-140 597.5,-140 597.5,-138 326.5,-138"/>
|
||||
<polygon fill="#895956" stroke="none" points="326.5,-136 326.5,-138 597.5,-138 597.5,-136 326.5,-136"/>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-134 326.5,-136 597.5,-136 597.5,-134 326.5,-134"/>
|
||||
<text text-anchor="start" x="340.5" y="-120.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="430" y="-120.8" font-family="arial" font-size="14.00">     2:RD    </text>
|
||||
<text text-anchor="start" x="523" y="-120.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-113 326.5,-115 597.5,-115 597.5,-113 326.5,-113"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="326.5,-111 326.5,-113 597.5,-113 597.5,-111 326.5,-111"/>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-109 326.5,-111 597.5,-111 597.5,-109 326.5,-109"/>
|
||||
<text text-anchor="start" x="345.5" y="-95.8" font-family="arial" font-size="14.00">X1:3:RX</text>
|
||||
<text text-anchor="start" x="428.5" y="-95.8" font-family="arial" font-size="14.00">     3:OG    </text>
|
||||
<text text-anchor="start" x="529" y="-95.8" font-family="arial" font-size="14.00">X2:4:TX</text>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-88 326.5,-90 597.5,-90 597.5,-88 326.5,-88"/>
|
||||
<polygon fill="#ff8000" stroke="none" points="326.5,-86 326.5,-88 597.5,-88 597.5,-86 326.5,-86"/>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-84 326.5,-86 597.5,-86 597.5,-84 326.5,-84"/>
|
||||
<text text-anchor="start" x="346.5" y="-70.8" font-family="arial" font-size="14.00">X1:4:TX</text>
|
||||
<text text-anchor="start" x="430.5" y="-70.8" font-family="arial" font-size="14.00">     4:YE    </text>
|
||||
<text text-anchor="start" x="528" y="-70.8" font-family="arial" font-size="14.00">X2:3:RX</text>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-63 326.5,-65 597.5,-65 597.5,-63 326.5,-63"/>
|
||||
<polygon fill="#ffff00" stroke="none" points="326.5,-61 326.5,-63 597.5,-63 597.5,-61 326.5,-61"/>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-59 326.5,-61 597.5,-61 597.5,-59 326.5,-59"/>
|
||||
<text text-anchor="start" x="369" y="-45.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="339.5" y="-26.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="443.5" y="-26.8" font-family="arial" font-size="14.00">Shield</text>
|
||||
<polygon fill="#000000" stroke="none" points="326.5,-19 326.5,-21 597.5,-21 597.5,-19 326.5,-19"/>
|
||||
<text text-anchor="start" x="369" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="610,-239 332.25,-239 332.25,0 610,0 610,-239"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="332.25,0 332.25,-239 610,-239 610,0 332.25,0"/>
|
||||
<polygon fill="none" stroke="black" points="332.25,-214.5 332.25,-239 610,-239 610,-214.5 332.25,-214.5"/>
|
||||
<text text-anchor="start" x="459.87" y="-221.7" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="332.25,-190 332.25,-214.5 376.25,-214.5 376.25,-190 332.25,-190"/>
|
||||
<text text-anchor="start" x="336.25" y="-197.2" font-family="arial" font-size="14.00">Serial</text>
|
||||
<polygon fill="none" stroke="black" points="376.25,-190 376.25,-214.5 399.25,-214.5 399.25,-190 376.25,-190"/>
|
||||
<text text-anchor="start" x="380.25" y="-197.2" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="399.25,-190 399.25,-214.5 536.25,-214.5 536.25,-190 399.25,-190"/>
|
||||
<text text-anchor="start" x="403.25" y="-197.2" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="536.25,-190 536.25,-214.5 566,-214.5 566,-190 536.25,-190"/>
|
||||
<text text-anchor="start" x="540.25" y="-197.2" font-family="arial" font-size="14.00">+ S</text>
|
||||
<polygon fill="none" stroke="black" points="566,-190 566,-214.5 610,-214.5 610,-190 566,-190"/>
|
||||
<text text-anchor="start" x="570" y="-197.2" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="374.35" y="-174.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="334.25" y="-154.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="429.3" y="-154.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="455.37" y="-154.7" font-family="arial" font-size="14.00">1:BN</text>
|
||||
<text text-anchor="start" x="509.2" y="-154.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="539" y="-154.7" font-family="arial" font-size="14.00">X2:1:GND </text>
|
||||
<text text-anchor="start" x="334.25" y="-128.7" font-family="arial" font-size="14.00"> X1:2:VCC</text>
|
||||
<text text-anchor="start" x="429.3" y="-128.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="454.62" y="-128.7" font-family="arial" font-size="14.00">2:RD</text>
|
||||
<text text-anchor="start" x="509.2" y="-128.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="539.75" y="-128.7" font-family="arial" font-size="14.00">X2:2:VCC </text>
|
||||
<text text-anchor="start" x="334.25" y="-102.7" font-family="arial" font-size="14.00"> X1:3:RX</text>
|
||||
<text text-anchor="start" x="429.3" y="-102.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="453.87" y="-102.7" font-family="arial" font-size="14.00">3:OG</text>
|
||||
<text text-anchor="start" x="509.2" y="-102.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="551.75" y="-102.7" font-family="arial" font-size="14.00">X2:4:TX </text>
|
||||
<text text-anchor="start" x="334.25" y="-76.7" font-family="arial" font-size="14.00"> X1:4:TX</text>
|
||||
<text text-anchor="start" x="429.3" y="-76.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="455.75" y="-76.7" font-family="arial" font-size="14.00">4:YE</text>
|
||||
<text text-anchor="start" x="509.2" y="-76.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="550.25" y="-76.7" font-family="arial" font-size="14.00">X2:3:RX </text>
|
||||
<text text-anchor="start" x="374.35" y="-50.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="334.25" y="-30.7" font-family="arial" font-size="14.00"> X1:1:GND</text>
|
||||
<text text-anchor="start" x="429.3" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="451.25" y="-30.7" font-family="arial" font-size="14.00">Shield</text>
|
||||
<text text-anchor="start" x="509.2" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="604.25" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<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="M182,-132C246.38,-132.03 262.36,-135.03 326,-135"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M182,-134C246.01,-134 261.99,-137 326,-137"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-136C245.64,-135.97 261.62,-138.97 326,-139"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-141C252.76,-141.06 268.72,-145.06 332.25,-145"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M188.25,-143C252.27,-143 268.23,-147 332.25,-147"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-145C251.78,-144.94 267.74,-148.94 332.25,-149"/>
|
||||
</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,-117C252.51,-117.02 268.49,-119.02 332.25,-119"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M188.25,-119C252.26,-119 268.24,-121 332.25,-121"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-121C252.01,-120.98 267.99,-122.98 332.25,-123"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-108C246.25,-108.02 262.24,-110.02 326,-110"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182,-110C246.01,-110 261.99,-112 326,-112"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-112C245.76,-111.98 261.75,-113.98 326,-114"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-93C252.25,-93 268.25,-93 332.25,-93"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M188.25,-95C252.25,-95 268.25,-95 332.25,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-97C252.25,-97 268.25,-97 332.25,-97"/>
|
||||
</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,-69C252.01,-69.02 267.99,-67.02 332.25,-67"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M188.25,-71C252.26,-71 268.24,-69 332.25,-69"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-73C252.51,-72.98 268.49,-70.98 332.25,-71"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-85C246,-85 262,-85 326,-85"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M182,-87C246,-87 262,-87 326,-87"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-89C246,-89 262,-89 326,-89"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M188.25,-143C271.56,-143 248.94,-23 332.25,-23"/>
|
||||
</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,-149C517.42,-149 424.83,-149 332.25,-149"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M610,-147C517.42,-147 424.83,-147 332.25,-147"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-145C517.42,-145 424.83,-145 332.25,-145"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-62C245.76,-62.02 261.75,-60.02 326,-60"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-64C246.01,-64 261.99,-62 326,-62"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-66C246.25,-65.98 262.24,-63.98 326,-64"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-123C517.42,-123 424.83,-123 332.25,-123"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M610,-121C517.42,-121 424.83,-121 332.25,-121"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-119C517.42,-119 424.83,-119 332.25,-119"/>
|
||||
</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,-97C517.42,-97 424.83,-97 332.25,-97"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M610,-95C517.42,-95 424.83,-95 332.25,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-93C517.42,-93 424.83,-93 332.25,-93"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-134C263.63,-134 244.37,-20 326,-20"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-71C517.42,-71 424.83,-71 332.25,-71"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M610,-69C517.42,-69 424.83,-69 332.25,-69"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-67C517.42,-67 424.83,-67 332.25,-67"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-23C517.42,-23 424.83,-23 332.25,-23"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="923,-193 741,-193 741,-55 923,-55 923,-193"/>
|
||||
<polygon fill="none" stroke="black" points="741,-170 741,-193 923,-193 923,-170 741,-170"/>
|
||||
<text text-anchor="start" x="823.5" y="-177.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="741,-147 741,-170 834,-170 834,-147 741,-147"/>
|
||||
<text text-anchor="start" x="745" y="-154.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="834,-147 834,-170 884,-170 884,-147 834,-147"/>
|
||||
<text text-anchor="start" x="838" y="-154.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="884,-147 884,-170 923,-170 923,-147 884,-147"/>
|
||||
<text text-anchor="start" x="888" y="-154.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="741,-124 741,-147 821,-147 821,-124 741,-124"/>
|
||||
<text text-anchor="start" x="777" y="-131.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="821,-124 821,-147 923,-147 923,-124 821,-124"/>
|
||||
<text text-anchor="start" x="856.5" y="-131.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="741,-101 741,-124 821,-124 821,-101 741,-101"/>
|
||||
<text text-anchor="start" x="777" y="-108.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="821,-101 821,-124 923,-124 923,-101 821,-101"/>
|
||||
<text text-anchor="start" x="857.5" y="-108.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="741,-78 741,-101 821,-101 821,-78 741,-78"/>
|
||||
<text text-anchor="start" x="777" y="-85.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="821,-78 821,-101 923,-101 923,-78 821,-78"/>
|
||||
<text text-anchor="start" x="862.5" y="-85.8" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="741,-55 741,-78 821,-78 821,-55 741,-55"/>
|
||||
<text text-anchor="start" x="777" y="-62.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="821,-55 821,-78 923,-78 923,-55 821,-55"/>
|
||||
<text text-anchor="start" x="863" y="-62.8" font-family="arial" font-size="14.00">TX</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="942.25,-207 754,-207 754,-62 942.25,-62 942.25,-207"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="754,-62 754,-207 942.25,-207 942.25,-62 754,-62"/>
|
||||
<polygon fill="none" stroke="black" points="754,-182.5 754,-207 942.25,-207 942.25,-182.5 754,-182.5"/>
|
||||
<text text-anchor="start" x="839.12" y="-189.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="754,-158 754,-182.5 851.25,-182.5 851.25,-158 754,-158"/>
|
||||
<text text-anchor="start" x="758" y="-165.2" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="851.25,-158 851.25,-182.5 902.75,-182.5 902.75,-158 851.25,-158"/>
|
||||
<text text-anchor="start" x="855.25" y="-165.2" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="902.75,-158 902.75,-182.5 942.25,-182.5 942.25,-158 902.75,-158"/>
|
||||
<text text-anchor="start" x="906.75" y="-165.2" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="754,-134 754,-158 836.62,-158 836.62,-134 754,-134"/>
|
||||
<text text-anchor="start" x="791.18" y="-140.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="836.62,-134 836.62,-158 942.25,-158 942.25,-134 836.62,-134"/>
|
||||
<text text-anchor="start" x="873.68" y="-140.7" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="754,-110 754,-134 836.62,-134 836.62,-110 754,-110"/>
|
||||
<text text-anchor="start" x="791.18" y="-116.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="836.62,-110 836.62,-134 942.25,-134 942.25,-110 836.62,-110"/>
|
||||
<text text-anchor="start" x="874.06" y="-116.7" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="754,-86 754,-110 836.62,-110 836.62,-86 754,-86"/>
|
||||
<text text-anchor="start" x="791.18" y="-92.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="836.62,-86 836.62,-110 942.25,-110 942.25,-86 836.62,-86"/>
|
||||
<text text-anchor="start" x="879.31" y="-92.7" font-family="arial" font-size="14.00">RX</text>
|
||||
<polygon fill="none" stroke="black" points="754,-62 754,-86 836.62,-86 836.62,-62 754,-62"/>
|
||||
<text text-anchor="start" x="791.18" y="-68.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="836.62,-62 836.62,-86 942.25,-86 942.25,-62 836.62,-62"/>
|
||||
<text text-anchor="start" x="880.06" y="-68.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="M597,-135C660.88,-135 676.87,-134 741,-134"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M597,-137C661,-137 677,-136 741,-136"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-139C661.13,-139 677.12,-138 741,-138"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-145C673.88,-145 689.88,-144 754,-144"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M610,-147C674,-147 690,-146 754,-146"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-149C674.13,-149 690.13,-148 754,-148"/>
|
||||
</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="M597,-110C661,-110 677,-110 741,-110"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M597,-112C661,-112 677,-112 741,-112"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-114C661,-114 677,-114 741,-114"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-119C674.13,-119 690.13,-120 754,-120"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M610,-121C674,-121 690,-122 754,-122"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-123C673.88,-123 689.88,-124 754,-124"/>
|
||||
</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="M597,-85C660.04,-85.86 674.68,-64.86 741,-64"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M597,-87C661.68,-87 676.32,-66 741,-66"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-89C663.32,-88.14 677.96,-67.14 741,-68"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-93C673.04,-93.86 687.68,-72.86 754,-72"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M610,-95C674.68,-95 689.32,-74 754,-74"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-97C676.32,-96.14 690.96,-75.14 754,-76"/>
|
||||
</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="M597,-60C663.9,-61.09 677.67,-88.09 741,-87"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M597,-62C662.12,-62 675.88,-89 741,-89"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-64C660.33,-62.91 674.1,-89.91 741,-91"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-67C677.1,-68.16 690.54,-97.16 754,-96"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M610,-69C675.28,-69 688.72,-98 754,-98"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M610,-71C673.47,-69.84 686.91,-98.84 754,-100"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 15 KiB |
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
10
examples/ex02.bom.tsv
generated
@ -1,5 +1,5 @@
|
||||
Id Description Qty Unit Designators
|
||||
1 Cable, 2 x 0.25 mm² 0.4 m W1, W2
|
||||
2 Cable, 2 x 20 AWG 0.2 m W3
|
||||
3 Connector, Molex Micro-Fit, female, 2 pins 3 X2, X3, X4
|
||||
4 Connector, Molex Micro-Fit, male, 2 pins 1 X1
|
||||
# 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
|
||||
|
||||
|
590
examples/ex02.gv
generated
@ -1,299 +1,351 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4
|
||||
// https://github.com/formatc1702/WireViz
|
||||
// Graph generated by WireViz 0.5-dev+refactor
|
||||
// https://github.com/wireviz/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"></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"></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"></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"></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"></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"></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]
|
||||
}
|
||||
|
||||
501
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 - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.5-dev+refactor - https://github.com/wireviz/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,304 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="870pt" height="458pt"
|
||||
viewBox="0.00 0.00 870.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="none" points="-4,4 -4,-454 866,-454 866,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="180,-262 0,-262 0,-170 180,-170 180,-262"/>
|
||||
<polygon fill="none" stroke="black" points="0,-239 0,-262 180,-262 180,-239 0,-239"/>
|
||||
<text text-anchor="start" x="81.5" y="-246.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-216 0,-239 102,-239 102,-216 0,-216"/>
|
||||
<text text-anchor="start" x="4" y="-223.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="102,-216 102,-239 141,-239 141,-216 102,-216"/>
|
||||
<text text-anchor="start" x="106" y="-223.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="141,-216 141,-239 180,-239 180,-216 141,-216"/>
|
||||
<text text-anchor="start" x="145" y="-223.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-193 0,-216 102,-216 102,-193 0,-193"/>
|
||||
<text text-anchor="start" x="35.5" y="-200.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="102,-193 102,-216 180,-216 180,-193 102,-193"/>
|
||||
<text text-anchor="start" x="137" y="-200.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-170 0,-193 102,-193 102,-170 0,-170"/>
|
||||
<text text-anchor="start" x="36.5" y="-177.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="102,-170 102,-193 180,-193 180,-170 102,-170"/>
|
||||
<text text-anchor="start" x="137" 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="527,-450 324,-450 324,-316 527,-316 527,-450"/>
|
||||
<polygon fill="none" stroke="black" points="324.5,-427 324.5,-450 527.5,-450 527.5,-427 324.5,-427"/>
|
||||
<text text-anchor="start" x="415" y="-434.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="324.5,-404 324.5,-427 349.5,-427 349.5,-404 324.5,-404"/>
|
||||
<text text-anchor="start" x="329.5" y="-411.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="349.5,-404 349.5,-427 483.5,-427 483.5,-404 349.5,-404"/>
|
||||
<text text-anchor="start" x="354.5" y="-411.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="483.5,-404 483.5,-427 527.5,-427 527.5,-404 483.5,-404"/>
|
||||
<text text-anchor="start" x="488" y="-411.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="356" y="-390.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="326.5" y="-371.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="394" y="-371.8" font-family="arial" font-size="14.00">     1:BK    </text>
|
||||
<text text-anchor="start" x="462.5" y="-371.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-364 324.5,-366 527.5,-366 527.5,-364 324.5,-364"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-362 324.5,-364 527.5,-364 527.5,-362 324.5,-362"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-360 324.5,-362 527.5,-362 527.5,-360 324.5,-360"/>
|
||||
<text text-anchor="start" x="327.5" y="-346.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="393.5" y="-346.8" font-family="arial" font-size="14.00">     2:RD    </text>
|
||||
<text text-anchor="start" x="463.5" y="-346.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-339 324.5,-341 527.5,-341 527.5,-339 324.5,-339"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="324.5,-337 324.5,-339 527.5,-339 527.5,-337 324.5,-337"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-335 324.5,-337 527.5,-337 527.5,-335 324.5,-335"/>
|
||||
<text text-anchor="start" x="356" 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>
|
||||
<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>
|
||||
<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="M180,-202C277.26,-204.56 230.58,-363.56 324,-361"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-204C275.34,-204 228.66,-363 324,-363"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-206C273.42,-203.44 226.74,-362.44 324,-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="M180,-179C276.6,-181.56 231.24,-338.56 324,-336"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-181C274.68,-181 229.32,-338 324,-338"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-183C272.76,-180.44 227.4,-337.44 324,-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="527,-292 324,-292 324,-158 527,-158 527,-292"/>
|
||||
<polygon fill="none" stroke="black" points="324.5,-269 324.5,-292 527.5,-292 527.5,-269 324.5,-269"/>
|
||||
<text text-anchor="start" x="415" y="-276.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="324.5,-246 324.5,-269 349.5,-269 349.5,-246 324.5,-246"/>
|
||||
<text text-anchor="start" x="329.5" y="-253.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="349.5,-246 349.5,-269 483.5,-269 483.5,-246 349.5,-246"/>
|
||||
<text text-anchor="start" x="354.5" y="-253.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="483.5,-246 483.5,-269 527.5,-269 527.5,-246 483.5,-246"/>
|
||||
<text text-anchor="start" x="488" y="-253.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="356" y="-232.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="326.5" y="-213.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="394" y="-213.8" font-family="arial" font-size="14.00">     1:BK    </text>
|
||||
<text text-anchor="start" x="462.5" y="-213.8" font-family="arial" font-size="14.00">X3:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-206 324.5,-208 527.5,-208 527.5,-206 324.5,-206"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-204 324.5,-206 527.5,-206 527.5,-204 324.5,-204"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-202 324.5,-204 527.5,-204 527.5,-202 324.5,-202"/>
|
||||
<text text-anchor="start" x="327.5" y="-188.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="393.5" y="-188.8" font-family="arial" font-size="14.00">     2:RD    </text>
|
||||
<text text-anchor="start" x="463.5" y="-188.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-181 324.5,-183 527.5,-183 527.5,-181 324.5,-181"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="324.5,-179 324.5,-181 527.5,-181 527.5,-179 324.5,-179"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-177 324.5,-179 527.5,-179 527.5,-177 324.5,-177"/>
|
||||
<text text-anchor="start" x="356" 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>
|
||||
<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>
|
||||
<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="M180,-202C244.13,-202 260.12,-203 324,-203"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-204C244,-204 260,-205 324,-205"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-206C243.88,-206 259.87,-207 324,-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="M180,-179C243.88,-179 259.87,-178 324,-178"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-181C244,-181 260,-180 324,-180"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-183C244.13,-183 260.12,-182 324,-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="527,-134 324,-134 324,0 527,0 527,-134"/>
|
||||
<polygon fill="none" stroke="black" points="324.5,-111 324.5,-134 527.5,-134 527.5,-111 324.5,-111"/>
|
||||
<text text-anchor="start" x="415" y="-118.8" font-family="arial" font-size="14.00">W3</text>
|
||||
<polygon fill="none" stroke="black" points="324.5,-88 324.5,-111 349.5,-111 349.5,-88 324.5,-88"/>
|
||||
<text text-anchor="start" x="329.5" y="-95.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="349.5,-88 349.5,-111 483.5,-111 483.5,-88 349.5,-88"/>
|
||||
<text text-anchor="start" x="354.5" y="-95.8" font-family="arial" font-size="14.00">20 AWG (0.75 mm²)</text>
|
||||
<polygon fill="none" stroke="black" points="483.5,-88 483.5,-111 527.5,-111 527.5,-88 483.5,-88"/>
|
||||
<text text-anchor="start" x="488" y="-95.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="356" y="-74.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="326.5" y="-55.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="394" y="-55.8" font-family="arial" font-size="14.00">     1:BK    </text>
|
||||
<text text-anchor="start" x="462.5" y="-55.8" font-family="arial" font-size="14.00">X4:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-48 324.5,-50 527.5,-50 527.5,-48 324.5,-48"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-46 324.5,-48 527.5,-48 527.5,-46 324.5,-46"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-44 324.5,-46 527.5,-46 527.5,-44 324.5,-44"/>
|
||||
<text text-anchor="start" x="327.5" y="-30.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="393.5" y="-30.8" font-family="arial" font-size="14.00">     2:RD    </text>
|
||||
<text text-anchor="start" x="463.5" y="-30.8" font-family="arial" font-size="14.00">X4:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-23 324.5,-25 527.5,-25 527.5,-23 324.5,-23"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="324.5,-21 324.5,-23 527.5,-23 527.5,-21 324.5,-21"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-19 324.5,-21 527.5,-21 527.5,-19 324.5,-19"/>
|
||||
<text text-anchor="start" x="356" 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>
|
||||
<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>
|
||||
<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="M180,-202C272.76,-204.56 227.4,-47.56 324,-45"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-204C274.68,-204 229.32,-47 324,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-206C276.6,-203.44 231.24,-46.44 324,-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="M180,-179C273.42,-181.56 226.74,-22.56 324,-20"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-181C275.34,-181 228.66,-22 324,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-183C277.26,-180.44 230.58,-21.44 324,-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="862,-420 671,-420 671,-328 862,-328 862,-420"/>
|
||||
<polygon fill="none" stroke="black" points="671.5,-397 671.5,-420 862.5,-420 862.5,-397 671.5,-397"/>
|
||||
<text text-anchor="start" x="758.5" y="-404.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-374 671.5,-397 773.5,-397 773.5,-374 671.5,-374"/>
|
||||
<text text-anchor="start" x="675.5" y="-381.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="773.5,-374 773.5,-397 823.5,-397 823.5,-374 773.5,-374"/>
|
||||
<text text-anchor="start" x="777.5" y="-381.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="823.5,-374 823.5,-397 862.5,-397 862.5,-374 823.5,-374"/>
|
||||
<text text-anchor="start" x="827.5" y="-381.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-351 671.5,-374 755.5,-374 755.5,-351 671.5,-351"/>
|
||||
<text text-anchor="start" x="709.5" y="-358.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="755.5,-351 755.5,-374 862.5,-374 862.5,-351 755.5,-351"/>
|
||||
<text text-anchor="start" x="793.5" y="-358.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-328 671.5,-351 755.5,-351 755.5,-328 671.5,-328"/>
|
||||
<text text-anchor="start" x="709.5" y="-335.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="755.5,-328 755.5,-351 862.5,-351 862.5,-328 755.5,-328"/>
|
||||
<text text-anchor="start" x="794.5" 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="862,-262 671,-262 671,-170 862,-170 862,-262"/>
|
||||
<polygon fill="none" stroke="black" points="671.5,-239 671.5,-262 862.5,-262 862.5,-239 671.5,-239"/>
|
||||
<text text-anchor="start" x="758.5" y="-246.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-216 671.5,-239 773.5,-239 773.5,-216 671.5,-216"/>
|
||||
<text text-anchor="start" x="675.5" y="-223.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="773.5,-216 773.5,-239 823.5,-239 823.5,-216 773.5,-216"/>
|
||||
<text text-anchor="start" x="777.5" y="-223.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="823.5,-216 823.5,-239 862.5,-239 862.5,-216 823.5,-216"/>
|
||||
<text text-anchor="start" x="827.5" y="-223.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-193 671.5,-216 755.5,-216 755.5,-193 671.5,-193"/>
|
||||
<text text-anchor="start" x="709.5" y="-200.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="755.5,-193 755.5,-216 862.5,-216 862.5,-193 755.5,-193"/>
|
||||
<text text-anchor="start" x="793.5" y="-200.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-170 671.5,-193 755.5,-193 755.5,-170 671.5,-170"/>
|
||||
<text text-anchor="start" x="709.5" y="-177.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="755.5,-170 755.5,-193 862.5,-193 862.5,-170 755.5,-170"/>
|
||||
<text text-anchor="start" x="794.5" 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="862,-104 671,-104 671,-12 862,-12 862,-104"/>
|
||||
<polygon fill="none" stroke="black" points="671.5,-81 671.5,-104 862.5,-104 862.5,-81 671.5,-81"/>
|
||||
<text text-anchor="start" x="758.5" y="-88.8" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-58 671.5,-81 773.5,-81 773.5,-58 671.5,-58"/>
|
||||
<text text-anchor="start" x="675.5" y="-65.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="773.5,-58 773.5,-81 823.5,-81 823.5,-58 773.5,-58"/>
|
||||
<text text-anchor="start" x="777.5" y="-65.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="823.5,-58 823.5,-81 862.5,-81 862.5,-58 823.5,-58"/>
|
||||
<text text-anchor="start" x="827.5" y="-65.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-35 671.5,-58 755.5,-58 755.5,-35 671.5,-35"/>
|
||||
<text text-anchor="start" x="709.5" y="-42.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="755.5,-35 755.5,-58 862.5,-58 862.5,-35 755.5,-35"/>
|
||||
<text text-anchor="start" x="793.5" y="-42.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-12 671.5,-35 755.5,-35 755.5,-12 671.5,-12"/>
|
||||
<text text-anchor="start" x="709.5" y="-19.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="755.5,-12 755.5,-35 862.5,-35 862.5,-12 755.5,-12"/>
|
||||
<text text-anchor="start" x="794.5" 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="M527,-361C590.88,-361 606.87,-360 671,-360"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-363C591,-363 607,-362 671,-362"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-365C591.13,-365 607.12,-364 671,-364"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-336C591.13,-336 607.12,-337 671,-337"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M527,-338C591,-338 607,-339 671,-339"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-340C590.88,-340 606.87,-341 671,-341"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-203C590.88,-203 606.87,-202 671,-202"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-205C591,-205 607,-204 671,-204"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-207C591.13,-207 607.12,-206 671,-206"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-178C591.13,-178 607.12,-179 671,-179"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M527,-180C591,-180 607,-181 671,-181"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-182C590.88,-182 606.87,-183 671,-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="M527,-45C590.88,-45 606.87,-44 671,-44"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-47C591,-47 607,-46 671,-46"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-49C591.13,-49 607.12,-48 671,-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="M527,-20C591.13,-20 607.12,-21 671,-21"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M527,-22C591,-22 607,-23 671,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-24C590.88,-24 606.87,-25 671,-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 +343,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: 86 KiB After Width: | Height: | Size: 68 KiB |
457
examples/ex02.svg
generated
@ -1,261 +1,304 @@
|
||||
<?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 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="870pt" height="458pt"
|
||||
viewBox="0.00 0.00 870.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="none" points="-4,4 -4,-454 866,-454 866,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="180,-262 0,-262 0,-170 180,-170 180,-262"/>
|
||||
<polygon fill="none" stroke="black" points="0,-239 0,-262 180,-262 180,-239 0,-239"/>
|
||||
<text text-anchor="start" x="81.5" y="-246.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-216 0,-239 102,-239 102,-216 0,-216"/>
|
||||
<text text-anchor="start" x="4" y="-223.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="102,-216 102,-239 141,-239 141,-216 102,-216"/>
|
||||
<text text-anchor="start" x="106" y="-223.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="141,-216 141,-239 180,-239 180,-216 141,-216"/>
|
||||
<text text-anchor="start" x="145" y="-223.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-193 0,-216 102,-216 102,-193 0,-193"/>
|
||||
<text text-anchor="start" x="35.5" y="-200.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="102,-193 102,-216 180,-216 180,-193 102,-193"/>
|
||||
<text text-anchor="start" x="137" y="-200.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-170 0,-193 102,-193 102,-170 0,-170"/>
|
||||
<text text-anchor="start" x="36.5" y="-177.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="102,-170 102,-193 180,-193 180,-170 102,-170"/>
|
||||
<text text-anchor="start" x="137" 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="527,-450 324,-450 324,-316 527,-316 527,-450"/>
|
||||
<polygon fill="none" stroke="black" points="324.5,-427 324.5,-450 527.5,-450 527.5,-427 324.5,-427"/>
|
||||
<text text-anchor="start" x="415" y="-434.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="324.5,-404 324.5,-427 349.5,-427 349.5,-404 324.5,-404"/>
|
||||
<text text-anchor="start" x="329.5" y="-411.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="349.5,-404 349.5,-427 483.5,-427 483.5,-404 349.5,-404"/>
|
||||
<text text-anchor="start" x="354.5" y="-411.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="483.5,-404 483.5,-427 527.5,-427 527.5,-404 483.5,-404"/>
|
||||
<text text-anchor="start" x="488" y="-411.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="356" y="-390.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="326.5" y="-371.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="394" y="-371.8" font-family="arial" font-size="14.00">     1:BK    </text>
|
||||
<text text-anchor="start" x="462.5" y="-371.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-364 324.5,-366 527.5,-366 527.5,-364 324.5,-364"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-362 324.5,-364 527.5,-364 527.5,-362 324.5,-362"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-360 324.5,-362 527.5,-362 527.5,-360 324.5,-360"/>
|
||||
<text text-anchor="start" x="327.5" y="-346.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="393.5" y="-346.8" font-family="arial" font-size="14.00">     2:RD    </text>
|
||||
<text text-anchor="start" x="463.5" y="-346.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-339 324.5,-341 527.5,-341 527.5,-339 324.5,-339"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="324.5,-337 324.5,-339 527.5,-339 527.5,-337 324.5,-337"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-335 324.5,-337 527.5,-337 527.5,-335 324.5,-335"/>
|
||||
<text text-anchor="start" x="356" 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>
|
||||
<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>
|
||||
<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="M180,-202C277.26,-204.56 230.58,-363.56 324,-361"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-204C275.34,-204 228.66,-363 324,-363"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-206C273.42,-203.44 226.74,-362.44 324,-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="M180,-179C276.6,-181.56 231.24,-338.56 324,-336"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-181C274.68,-181 229.32,-338 324,-338"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-183C272.76,-180.44 227.4,-337.44 324,-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="527,-292 324,-292 324,-158 527,-158 527,-292"/>
|
||||
<polygon fill="none" stroke="black" points="324.5,-269 324.5,-292 527.5,-292 527.5,-269 324.5,-269"/>
|
||||
<text text-anchor="start" x="415" y="-276.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="324.5,-246 324.5,-269 349.5,-269 349.5,-246 324.5,-246"/>
|
||||
<text text-anchor="start" x="329.5" y="-253.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="349.5,-246 349.5,-269 483.5,-269 483.5,-246 349.5,-246"/>
|
||||
<text text-anchor="start" x="354.5" y="-253.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="483.5,-246 483.5,-269 527.5,-269 527.5,-246 483.5,-246"/>
|
||||
<text text-anchor="start" x="488" y="-253.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="356" y="-232.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="326.5" y="-213.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="394" y="-213.8" font-family="arial" font-size="14.00">     1:BK    </text>
|
||||
<text text-anchor="start" x="462.5" y="-213.8" font-family="arial" font-size="14.00">X3:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-206 324.5,-208 527.5,-208 527.5,-206 324.5,-206"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-204 324.5,-206 527.5,-206 527.5,-204 324.5,-204"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-202 324.5,-204 527.5,-204 527.5,-202 324.5,-202"/>
|
||||
<text text-anchor="start" x="327.5" y="-188.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="393.5" y="-188.8" font-family="arial" font-size="14.00">     2:RD    </text>
|
||||
<text text-anchor="start" x="463.5" y="-188.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-181 324.5,-183 527.5,-183 527.5,-181 324.5,-181"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="324.5,-179 324.5,-181 527.5,-181 527.5,-179 324.5,-179"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-177 324.5,-179 527.5,-179 527.5,-177 324.5,-177"/>
|
||||
<text text-anchor="start" x="356" 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>
|
||||
<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>
|
||||
<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="M180,-202C244.13,-202 260.12,-203 324,-203"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-204C244,-204 260,-205 324,-205"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-206C243.88,-206 259.87,-207 324,-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="M180,-179C243.88,-179 259.87,-178 324,-178"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-181C244,-181 260,-180 324,-180"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-183C244.13,-183 260.12,-182 324,-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="527,-134 324,-134 324,0 527,0 527,-134"/>
|
||||
<polygon fill="none" stroke="black" points="324.5,-111 324.5,-134 527.5,-134 527.5,-111 324.5,-111"/>
|
||||
<text text-anchor="start" x="415" y="-118.8" font-family="arial" font-size="14.00">W3</text>
|
||||
<polygon fill="none" stroke="black" points="324.5,-88 324.5,-111 349.5,-111 349.5,-88 324.5,-88"/>
|
||||
<text text-anchor="start" x="329.5" y="-95.8" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="349.5,-88 349.5,-111 483.5,-111 483.5,-88 349.5,-88"/>
|
||||
<text text-anchor="start" x="354.5" y="-95.8" font-family="arial" font-size="14.00">20 AWG (0.75 mm²)</text>
|
||||
<polygon fill="none" stroke="black" points="483.5,-88 483.5,-111 527.5,-111 527.5,-88 483.5,-88"/>
|
||||
<text text-anchor="start" x="488" y="-95.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="356" y="-74.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="326.5" y="-55.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="394" y="-55.8" font-family="arial" font-size="14.00">     1:BK    </text>
|
||||
<text text-anchor="start" x="462.5" y="-55.8" font-family="arial" font-size="14.00">X4:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-48 324.5,-50 527.5,-50 527.5,-48 324.5,-48"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-46 324.5,-48 527.5,-48 527.5,-46 324.5,-46"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-44 324.5,-46 527.5,-46 527.5,-44 324.5,-44"/>
|
||||
<text text-anchor="start" x="327.5" y="-30.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="393.5" y="-30.8" font-family="arial" font-size="14.00">     2:RD    </text>
|
||||
<text text-anchor="start" x="463.5" y="-30.8" font-family="arial" font-size="14.00">X4:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-23 324.5,-25 527.5,-25 527.5,-23 324.5,-23"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="324.5,-21 324.5,-23 527.5,-23 527.5,-21 324.5,-21"/>
|
||||
<polygon fill="#000000" stroke="none" points="324.5,-19 324.5,-21 527.5,-21 527.5,-19 324.5,-19"/>
|
||||
<text text-anchor="start" x="356" 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>
|
||||
<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>
|
||||
<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="M180,-202C272.76,-204.56 227.4,-47.56 324,-45"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-204C274.68,-204 229.32,-47 324,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-206C276.6,-203.44 231.24,-46.44 324,-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="M180,-179C273.42,-181.56 226.74,-22.56 324,-20"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-181C275.34,-181 228.66,-22 324,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-183C277.26,-180.44 230.58,-21.44 324,-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="862,-420 671,-420 671,-328 862,-328 862,-420"/>
|
||||
<polygon fill="none" stroke="black" points="671.5,-397 671.5,-420 862.5,-420 862.5,-397 671.5,-397"/>
|
||||
<text text-anchor="start" x="758.5" y="-404.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-374 671.5,-397 773.5,-397 773.5,-374 671.5,-374"/>
|
||||
<text text-anchor="start" x="675.5" y="-381.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="773.5,-374 773.5,-397 823.5,-397 823.5,-374 773.5,-374"/>
|
||||
<text text-anchor="start" x="777.5" y="-381.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="823.5,-374 823.5,-397 862.5,-397 862.5,-374 823.5,-374"/>
|
||||
<text text-anchor="start" x="827.5" y="-381.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-351 671.5,-374 755.5,-374 755.5,-351 671.5,-351"/>
|
||||
<text text-anchor="start" x="709.5" y="-358.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="755.5,-351 755.5,-374 862.5,-374 862.5,-351 755.5,-351"/>
|
||||
<text text-anchor="start" x="793.5" y="-358.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-328 671.5,-351 755.5,-351 755.5,-328 671.5,-328"/>
|
||||
<text text-anchor="start" x="709.5" y="-335.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="755.5,-328 755.5,-351 862.5,-351 862.5,-328 755.5,-328"/>
|
||||
<text text-anchor="start" x="794.5" 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="862,-262 671,-262 671,-170 862,-170 862,-262"/>
|
||||
<polygon fill="none" stroke="black" points="671.5,-239 671.5,-262 862.5,-262 862.5,-239 671.5,-239"/>
|
||||
<text text-anchor="start" x="758.5" y="-246.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-216 671.5,-239 773.5,-239 773.5,-216 671.5,-216"/>
|
||||
<text text-anchor="start" x="675.5" y="-223.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="773.5,-216 773.5,-239 823.5,-239 823.5,-216 773.5,-216"/>
|
||||
<text text-anchor="start" x="777.5" y="-223.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="823.5,-216 823.5,-239 862.5,-239 862.5,-216 823.5,-216"/>
|
||||
<text text-anchor="start" x="827.5" y="-223.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-193 671.5,-216 755.5,-216 755.5,-193 671.5,-193"/>
|
||||
<text text-anchor="start" x="709.5" y="-200.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="755.5,-193 755.5,-216 862.5,-216 862.5,-193 755.5,-193"/>
|
||||
<text text-anchor="start" x="793.5" y="-200.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-170 671.5,-193 755.5,-193 755.5,-170 671.5,-170"/>
|
||||
<text text-anchor="start" x="709.5" y="-177.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="755.5,-170 755.5,-193 862.5,-193 862.5,-170 755.5,-170"/>
|
||||
<text text-anchor="start" x="794.5" 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="862,-104 671,-104 671,-12 862,-12 862,-104"/>
|
||||
<polygon fill="none" stroke="black" points="671.5,-81 671.5,-104 862.5,-104 862.5,-81 671.5,-81"/>
|
||||
<text text-anchor="start" x="758.5" y="-88.8" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-58 671.5,-81 773.5,-81 773.5,-58 671.5,-58"/>
|
||||
<text text-anchor="start" x="675.5" y="-65.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="773.5,-58 773.5,-81 823.5,-81 823.5,-58 773.5,-58"/>
|
||||
<text text-anchor="start" x="777.5" y="-65.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="823.5,-58 823.5,-81 862.5,-81 862.5,-58 823.5,-58"/>
|
||||
<text text-anchor="start" x="827.5" y="-65.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-35 671.5,-58 755.5,-58 755.5,-35 671.5,-35"/>
|
||||
<text text-anchor="start" x="709.5" y="-42.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="755.5,-35 755.5,-58 862.5,-58 862.5,-35 755.5,-35"/>
|
||||
<text text-anchor="start" x="793.5" y="-42.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="671.5,-12 671.5,-35 755.5,-35 755.5,-12 671.5,-12"/>
|
||||
<text text-anchor="start" x="709.5" y="-19.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="755.5,-12 755.5,-35 862.5,-35 862.5,-12 755.5,-12"/>
|
||||
<text text-anchor="start" x="794.5" 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="M527,-361C590.88,-361 606.87,-360 671,-360"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-363C591,-363 607,-362 671,-362"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-365C591.13,-365 607.12,-364 671,-364"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-336C591.13,-336 607.12,-337 671,-337"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M527,-338C591,-338 607,-339 671,-339"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-340C590.88,-340 606.87,-341 671,-341"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-203C590.88,-203 606.87,-202 671,-202"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-205C591,-205 607,-204 671,-204"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-207C591.13,-207 607.12,-206 671,-206"/>
|
||||
</g>
|
||||
<!-- W2--X3 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W2:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-178C591.13,-178 607.12,-179 671,-179"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M527,-180C591,-180 607,-181 671,-181"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-182C590.88,-182 606.87,-183 671,-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="M527,-45C590.88,-45 606.87,-44 671,-44"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-47C591,-47 607,-46 671,-46"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-49C591.13,-49 607.12,-48 671,-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="M527,-20C591.13,-20 607.12,-21 671,-21"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M527,-22C591,-22 607,-23 671,-23"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-24C590.88,-24 606.87,-25 671,-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: 22 KiB |
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
10
examples/ex03.bom.tsv
generated
@ -1,5 +1,5 @@
|
||||
Id Description Qty Unit Designators
|
||||
1 Connector, Molex Micro-Fit, female, 2 pins 3 X2, X3, X4
|
||||
2 Connector, Molex Micro-Fit, male, 2 pins 1 X1
|
||||
3 Wire, 0.25 mm², BK 0.6 m W1
|
||||
4 Wire, 0.25 mm², RD 0.6 m W1
|
||||
# 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
|
||||
|
||||
|
484
examples/ex03.gv
generated
@ -1,255 +1,285 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4
|
||||
// https://github.com/formatc1702/WireViz
|
||||
// Graph generated by WireViz 0.5-dev+refactor
|
||||
// https://github.com/wireviz/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"></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"></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"></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"></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"></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"></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]
|
||||
}
|
||||
|
||||
435
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 - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.5-dev+refactor - https://github.com/wireviz/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,272 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="865pt" height="332pt"
|
||||
viewBox="0.00 0.00 865.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="none" points="-4,4 -4,-328 861,-328 861,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="180,-208 0,-208 0,-116 180,-116 180,-208"/>
|
||||
<polygon fill="none" stroke="black" points="0,-185 0,-208 180,-208 180,-185 0,-185"/>
|
||||
<text text-anchor="start" x="81.5" y="-192.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-162 0,-185 102,-185 102,-162 0,-162"/>
|
||||
<text text-anchor="start" x="4" y="-169.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="102,-162 102,-185 141,-185 141,-162 102,-162"/>
|
||||
<text text-anchor="start" x="106" y="-169.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="141,-162 141,-185 180,-185 180,-162 141,-162"/>
|
||||
<text text-anchor="start" x="145" y="-169.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-139 0,-162 102,-162 102,-139 0,-139"/>
|
||||
<text text-anchor="start" x="35.5" y="-146.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="102,-139 102,-162 180,-162 180,-139 102,-139"/>
|
||||
<text text-anchor="start" x="137" y="-146.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-116 0,-139 102,-139 102,-116 0,-116"/>
|
||||
<text text-anchor="start" x="36.5" y="-123.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="102,-116 102,-139 180,-139 180,-116 102,-116"/>
|
||||
<text text-anchor="start" x="137" 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="522,-288 324,-288 324,-54 522,-54 522,-288"/>
|
||||
<polygon fill="none" stroke="black" points="324,-265 324,-288 522,-288 522,-265 324,-265"/>
|
||||
<text text-anchor="start" x="412" y="-272.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="324,-242 324,-265 347,-265 347,-242 324,-242"/>
|
||||
<text text-anchor="start" x="328" y="-249.8" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="347,-242 347,-265 479,-265 479,-242 347,-242"/>
|
||||
<text text-anchor="start" x="351" y="-249.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="479,-242 479,-265 522,-265 522,-242 479,-242"/>
|
||||
<text text-anchor="start" x="483" y="-249.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="356.5" y="-228.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="327" y="-209.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="397" y="-209.8" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<text text-anchor="start" x="456" y="-209.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="324,-202 324,-204 522,-204 522,-202 324,-202"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-200 324,-202 522,-202 522,-200 324,-200"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-198 324,-200 522,-200 522,-198 324,-198"/>
|
||||
<text text-anchor="start" x="328" y="-184.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="396" y="-184.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<text text-anchor="start" x="457" y="-184.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="324,-177 324,-179 522,-179 522,-177 324,-177"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="324,-175 324,-177 522,-177 522,-175 324,-175"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-173 324,-175 522,-175 522,-173 324,-173"/>
|
||||
<text text-anchor="start" x="327" y="-159.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="397" y="-159.8" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<text text-anchor="start" x="456" y="-159.8" font-family="arial" font-size="14.00">X3:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="324,-152 324,-154 522,-154 522,-152 324,-152"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-150 324,-152 522,-152 522,-150 324,-150"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-148 324,-150 522,-150 522,-148 324,-148"/>
|
||||
<text text-anchor="start" x="328" y="-134.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="396" y="-134.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<text text-anchor="start" x="457" y="-134.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="324,-127 324,-129 522,-129 522,-127 324,-127"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="324,-125 324,-127 522,-127 522,-125 324,-125"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-123 324,-125 522,-125 522,-123 324,-123"/>
|
||||
<text text-anchor="start" x="327" y="-109.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="397" y="-109.8" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<text text-anchor="start" x="456" y="-109.8" font-family="arial" font-size="14.00">X4:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="324,-102 324,-104 522,-104 522,-102 324,-102"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-100 324,-102 522,-102 522,-100 324,-100"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-98 324,-100 522,-100 522,-98 324,-98"/>
|
||||
<text text-anchor="start" x="328" y="-84.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="396" y="-84.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<text text-anchor="start" x="457" y="-84.8" font-family="arial" font-size="14.00">X4:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="324,-77 324,-79 522,-79 522,-77 324,-77"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="324,-75 324,-77 522,-77 522,-75 324,-75"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-73 324,-75 522,-75 522,-73 324,-73"/>
|
||||
<text text-anchor="start" x="356.5" 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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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="M180,-148C249.87,-149.68 258.08,-200.68 324,-199"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C247.9,-150 256.1,-201 324,-201"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C245.92,-150.32 254.13,-201.32 324,-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="M180,-125C249.57,-126.65 258.36,-175.65 324,-174"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C247.6,-127 256.4,-176 324,-176"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C245.64,-127.35 254.43,-176.35 324,-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="M180,-148C244.13,-148 260.12,-149 324,-149"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C244,-150 260,-151 324,-151"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C243.88,-152 259.87,-153 324,-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="M180,-125C243.88,-125 259.87,-124 324,-124"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C244,-127 260,-126 324,-126"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C244.13,-129 260.12,-128 324,-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="M180,-148C245.64,-149.65 254.43,-100.65 324,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C247.6,-150 256.4,-101 324,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C249.57,-150.35 258.36,-101.35 324,-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="M180,-125C245.92,-126.68 254.13,-75.68 324,-74"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C247.9,-127 256.1,-76 324,-76"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C249.87,-127.32 258.08,-76.32 324,-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="857,-324 666,-324 666,-232 857,-232 857,-324"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-301 666.5,-324 857.5,-324 857.5,-301 666.5,-301"/>
|
||||
<text text-anchor="start" x="753.5" y="-308.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-278 666.5,-301 768.5,-301 768.5,-278 666.5,-278"/>
|
||||
<text text-anchor="start" x="670.5" y="-285.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-278 768.5,-301 818.5,-301 818.5,-278 768.5,-278"/>
|
||||
<text text-anchor="start" x="772.5" y="-285.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-278 818.5,-301 857.5,-301 857.5,-278 818.5,-278"/>
|
||||
<text text-anchor="start" x="822.5" y="-285.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-255 666.5,-278 750.5,-278 750.5,-255 666.5,-255"/>
|
||||
<text text-anchor="start" x="704.5" y="-262.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-255 750.5,-278 857.5,-278 857.5,-255 750.5,-255"/>
|
||||
<text text-anchor="start" x="788.5" y="-262.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-232 666.5,-255 750.5,-255 750.5,-232 666.5,-232"/>
|
||||
<text text-anchor="start" x="704.5" y="-239.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-232 750.5,-255 857.5,-255 857.5,-232 750.5,-232"/>
|
||||
<text text-anchor="start" x="789.5" 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="857,-208 666,-208 666,-116 857,-116 857,-208"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-185 666.5,-208 857.5,-208 857.5,-185 666.5,-185"/>
|
||||
<text text-anchor="start" x="753.5" y="-192.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-162 666.5,-185 768.5,-185 768.5,-162 666.5,-162"/>
|
||||
<text text-anchor="start" x="670.5" y="-169.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-162 768.5,-185 818.5,-185 818.5,-162 768.5,-162"/>
|
||||
<text text-anchor="start" x="772.5" y="-169.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-162 818.5,-185 857.5,-185 857.5,-162 818.5,-162"/>
|
||||
<text text-anchor="start" x="822.5" y="-169.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-139 666.5,-162 750.5,-162 750.5,-139 666.5,-139"/>
|
||||
<text text-anchor="start" x="704.5" y="-146.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-139 750.5,-162 857.5,-162 857.5,-139 750.5,-139"/>
|
||||
<text text-anchor="start" x="788.5" y="-146.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-116 666.5,-139 750.5,-139 750.5,-116 666.5,-116"/>
|
||||
<text text-anchor="start" x="704.5" y="-123.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-116 750.5,-139 857.5,-139 857.5,-116 750.5,-116"/>
|
||||
<text text-anchor="start" x="789.5" 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="857,-92 666,-92 666,0 857,0 857,-92"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-69 666.5,-92 857.5,-92 857.5,-69 666.5,-69"/>
|
||||
<text text-anchor="start" x="753.5" y="-76.8" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-46 666.5,-69 768.5,-69 768.5,-46 666.5,-46"/>
|
||||
<text text-anchor="start" x="670.5" y="-53.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-46 768.5,-69 818.5,-69 818.5,-46 768.5,-46"/>
|
||||
<text text-anchor="start" x="772.5" y="-53.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-46 818.5,-69 857.5,-69 857.5,-46 818.5,-46"/>
|
||||
<text text-anchor="start" x="822.5" y="-53.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-23 666.5,-46 750.5,-46 750.5,-23 666.5,-23"/>
|
||||
<text text-anchor="start" x="704.5" y="-30.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-23 750.5,-46 857.5,-46 857.5,-23 750.5,-23"/>
|
||||
<text text-anchor="start" x="788.5" y="-30.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,0 666.5,-23 750.5,-23 750.5,0 666.5,0"/>
|
||||
<text text-anchor="start" x="704.5" y="-7.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,0 750.5,-23 857.5,-23 857.5,0 750.5,0"/>
|
||||
<text text-anchor="start" x="789.5" 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="M522,-199C594.22,-200.89 597.78,-265.89 666,-264"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-201C592.22,-201 595.78,-266 666,-266"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-203C590.22,-201.11 593.78,-266.11 666,-268"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-174C594.59,-175.92 597.41,-242.92 666,-241"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-176C592.59,-176 595.41,-243 666,-243"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-178C590.59,-176.08 593.41,-243.08 666,-245"/>
|
||||
</g>
|
||||
<!-- W1--X3 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-149C585.88,-149 601.87,-148 666,-148"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-151C586,-151 602,-150 666,-150"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-153C586.13,-153 602.12,-152 666,-152"/>
|
||||
</g>
|
||||
<!-- W1--X3 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-124C586.13,-124 602.12,-125 666,-125"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-126C586,-126 602,-127 666,-127"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-128C585.88,-128 601.87,-129 666,-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="M522,-99C590.59,-100.92 593.41,-33.92 666,-32"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-101C592.59,-101 595.41,-34 666,-34"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-103C594.59,-101.08 597.41,-34.08 666,-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="M522,-74C590.22,-75.89 593.78,-10.89 666,-9"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-76C592.22,-76 595.78,-11 666,-11"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-78C594.22,-76.11 597.78,-11.11 666,-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 +311,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 |
407
examples/ex03.svg
generated
@ -1,231 +1,272 @@
|
||||
<?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 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="865pt" height="332pt"
|
||||
viewBox="0.00 0.00 865.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="none" points="-4,4 -4,-328 861,-328 861,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="180,-208 0,-208 0,-116 180,-116 180,-208"/>
|
||||
<polygon fill="none" stroke="black" points="0,-185 0,-208 180,-208 180,-185 0,-185"/>
|
||||
<text text-anchor="start" x="81.5" y="-192.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-162 0,-185 102,-185 102,-162 0,-162"/>
|
||||
<text text-anchor="start" x="4" y="-169.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="102,-162 102,-185 141,-185 141,-162 102,-162"/>
|
||||
<text text-anchor="start" x="106" y="-169.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="141,-162 141,-185 180,-185 180,-162 141,-162"/>
|
||||
<text text-anchor="start" x="145" y="-169.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-139 0,-162 102,-162 102,-139 0,-139"/>
|
||||
<text text-anchor="start" x="35.5" y="-146.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="102,-139 102,-162 180,-162 180,-139 102,-139"/>
|
||||
<text text-anchor="start" x="137" y="-146.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-116 0,-139 102,-139 102,-116 0,-116"/>
|
||||
<text text-anchor="start" x="36.5" y="-123.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="102,-116 102,-139 180,-139 180,-116 102,-116"/>
|
||||
<text text-anchor="start" x="137" 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="522,-288 324,-288 324,-54 522,-54 522,-288"/>
|
||||
<polygon fill="none" stroke="black" points="324,-265 324,-288 522,-288 522,-265 324,-265"/>
|
||||
<text text-anchor="start" x="412" y="-272.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="324,-242 324,-265 347,-265 347,-242 324,-242"/>
|
||||
<text text-anchor="start" x="328" y="-249.8" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="347,-242 347,-265 479,-265 479,-242 347,-242"/>
|
||||
<text text-anchor="start" x="351" y="-249.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="479,-242 479,-265 522,-265 522,-242 479,-242"/>
|
||||
<text text-anchor="start" x="483" y="-249.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="356.5" y="-228.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="327" y="-209.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="397" y="-209.8" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<text text-anchor="start" x="456" y="-209.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="324,-202 324,-204 522,-204 522,-202 324,-202"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-200 324,-202 522,-202 522,-200 324,-200"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-198 324,-200 522,-200 522,-198 324,-198"/>
|
||||
<text text-anchor="start" x="328" y="-184.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="396" y="-184.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<text text-anchor="start" x="457" y="-184.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="324,-177 324,-179 522,-179 522,-177 324,-177"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="324,-175 324,-177 522,-177 522,-175 324,-175"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-173 324,-175 522,-175 522,-173 324,-173"/>
|
||||
<text text-anchor="start" x="327" y="-159.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="397" y="-159.8" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<text text-anchor="start" x="456" y="-159.8" font-family="arial" font-size="14.00">X3:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="324,-152 324,-154 522,-154 522,-152 324,-152"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-150 324,-152 522,-152 522,-150 324,-150"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-148 324,-150 522,-150 522,-148 324,-148"/>
|
||||
<text text-anchor="start" x="328" y="-134.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="396" y="-134.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<text text-anchor="start" x="457" y="-134.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="324,-127 324,-129 522,-129 522,-127 324,-127"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="324,-125 324,-127 522,-127 522,-125 324,-125"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-123 324,-125 522,-125 522,-123 324,-123"/>
|
||||
<text text-anchor="start" x="327" y="-109.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="397" y="-109.8" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<text text-anchor="start" x="456" y="-109.8" font-family="arial" font-size="14.00">X4:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="324,-102 324,-104 522,-104 522,-102 324,-102"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-100 324,-102 522,-102 522,-100 324,-100"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-98 324,-100 522,-100 522,-98 324,-98"/>
|
||||
<text text-anchor="start" x="328" y="-84.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="396" y="-84.8" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<text text-anchor="start" x="457" y="-84.8" font-family="arial" font-size="14.00">X4:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="324,-77 324,-79 522,-79 522,-77 324,-77"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="324,-75 324,-77 522,-77 522,-75 324,-75"/>
|
||||
<polygon fill="#000000" stroke="none" points="324,-73 324,-75 522,-75 522,-73 324,-73"/>
|
||||
<text text-anchor="start" x="356.5" 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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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="M180,-148C249.87,-149.68 258.08,-200.68 324,-199"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C247.9,-150 256.1,-201 324,-201"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C245.92,-150.32 254.13,-201.32 324,-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="M180,-125C249.57,-126.65 258.36,-175.65 324,-174"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C247.6,-127 256.4,-176 324,-176"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C245.64,-127.35 254.43,-176.35 324,-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="M180,-148C244.13,-148 260.12,-149 324,-149"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C244,-150 260,-151 324,-151"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C243.88,-152 259.87,-153 324,-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="M180,-125C243.88,-125 259.87,-124 324,-124"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C244,-127 260,-126 324,-126"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C244.13,-129 260.12,-128 324,-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="M180,-148C245.64,-149.65 254.43,-100.65 324,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C247.6,-150 256.4,-101 324,-101"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C249.57,-150.35 258.36,-101.35 324,-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="M180,-125C245.92,-126.68 254.13,-75.68 324,-74"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C247.9,-127 256.1,-76 324,-76"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C249.87,-127.32 258.08,-76.32 324,-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="857,-324 666,-324 666,-232 857,-232 857,-324"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-301 666.5,-324 857.5,-324 857.5,-301 666.5,-301"/>
|
||||
<text text-anchor="start" x="753.5" y="-308.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-278 666.5,-301 768.5,-301 768.5,-278 666.5,-278"/>
|
||||
<text text-anchor="start" x="670.5" y="-285.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-278 768.5,-301 818.5,-301 818.5,-278 768.5,-278"/>
|
||||
<text text-anchor="start" x="772.5" y="-285.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-278 818.5,-301 857.5,-301 857.5,-278 818.5,-278"/>
|
||||
<text text-anchor="start" x="822.5" y="-285.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-255 666.5,-278 750.5,-278 750.5,-255 666.5,-255"/>
|
||||
<text text-anchor="start" x="704.5" y="-262.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-255 750.5,-278 857.5,-278 857.5,-255 750.5,-255"/>
|
||||
<text text-anchor="start" x="788.5" y="-262.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-232 666.5,-255 750.5,-255 750.5,-232 666.5,-232"/>
|
||||
<text text-anchor="start" x="704.5" y="-239.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-232 750.5,-255 857.5,-255 857.5,-232 750.5,-232"/>
|
||||
<text text-anchor="start" x="789.5" 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="857,-208 666,-208 666,-116 857,-116 857,-208"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-185 666.5,-208 857.5,-208 857.5,-185 666.5,-185"/>
|
||||
<text text-anchor="start" x="753.5" y="-192.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-162 666.5,-185 768.5,-185 768.5,-162 666.5,-162"/>
|
||||
<text text-anchor="start" x="670.5" y="-169.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-162 768.5,-185 818.5,-185 818.5,-162 768.5,-162"/>
|
||||
<text text-anchor="start" x="772.5" y="-169.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-162 818.5,-185 857.5,-185 857.5,-162 818.5,-162"/>
|
||||
<text text-anchor="start" x="822.5" y="-169.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-139 666.5,-162 750.5,-162 750.5,-139 666.5,-139"/>
|
||||
<text text-anchor="start" x="704.5" y="-146.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-139 750.5,-162 857.5,-162 857.5,-139 750.5,-139"/>
|
||||
<text text-anchor="start" x="788.5" y="-146.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-116 666.5,-139 750.5,-139 750.5,-116 666.5,-116"/>
|
||||
<text text-anchor="start" x="704.5" y="-123.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-116 750.5,-139 857.5,-139 857.5,-116 750.5,-116"/>
|
||||
<text text-anchor="start" x="789.5" 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="857,-92 666,-92 666,0 857,0 857,-92"/>
|
||||
<polygon fill="none" stroke="black" points="666.5,-69 666.5,-92 857.5,-92 857.5,-69 666.5,-69"/>
|
||||
<text text-anchor="start" x="753.5" y="-76.8" font-family="arial" font-size="14.00">X4</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-46 666.5,-69 768.5,-69 768.5,-46 666.5,-46"/>
|
||||
<text text-anchor="start" x="670.5" y="-53.8" font-family="arial" font-size="14.00">Molex Micro-Fit</text>
|
||||
<polygon fill="none" stroke="black" points="768.5,-46 768.5,-69 818.5,-69 818.5,-46 768.5,-46"/>
|
||||
<text text-anchor="start" x="772.5" y="-53.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="818.5,-46 818.5,-69 857.5,-69 857.5,-46 818.5,-46"/>
|
||||
<text text-anchor="start" x="822.5" y="-53.8" font-family="arial" font-size="14.00">2-pin</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,-23 666.5,-46 750.5,-46 750.5,-23 666.5,-23"/>
|
||||
<text text-anchor="start" x="704.5" y="-30.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,-23 750.5,-46 857.5,-46 857.5,-23 750.5,-23"/>
|
||||
<text text-anchor="start" x="788.5" y="-30.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="666.5,0 666.5,-23 750.5,-23 750.5,0 666.5,0"/>
|
||||
<text text-anchor="start" x="704.5" y="-7.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="750.5,0 750.5,-23 857.5,-23 857.5,0 750.5,0"/>
|
||||
<text text-anchor="start" x="789.5" 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="M522,-199C594.22,-200.89 597.78,-265.89 666,-264"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-201C592.22,-201 595.78,-266 666,-266"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-203C590.22,-201.11 593.78,-266.11 666,-268"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-174C594.59,-175.92 597.41,-242.92 666,-241"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-176C592.59,-176 595.41,-243 666,-243"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-178C590.59,-176.08 593.41,-243.08 666,-245"/>
|
||||
</g>
|
||||
<!-- W1--X3 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-149C585.88,-149 601.87,-148 666,-148"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-151C586,-151 602,-150 666,-150"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-153C586.13,-153 602.12,-152 666,-152"/>
|
||||
</g>
|
||||
<!-- W1--X3 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-124C586.13,-124 602.12,-125 666,-125"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-126C586,-126 602,-127 666,-127"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-128C585.88,-128 601.87,-129 666,-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="M522,-99C590.59,-100.92 593.41,-33.92 666,-32"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-101C592.59,-101 595.41,-34 666,-34"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-103C594.59,-101.08 597.41,-34.08 666,-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="M522,-74C590.22,-75.89 593.78,-10.89 666,-9"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-76C592.22,-76 595.78,-11 666,-11"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-78C594.22,-76.11 597.78,-11.11 666,-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: 20 KiB |
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
16
examples/ex04.bom.tsv
generated
@ -1,8 +1,8 @@
|
||||
Id Description Qty Unit Designators
|
||||
1 Connector, Crimp ferrule 12
|
||||
2 Wire, 0.25 mm², BN 0.2 m W1
|
||||
3 Wire, 0.25 mm², BU 0.2 m W1
|
||||
4 Wire, 0.25 mm², GN 0.2 m W1
|
||||
5 Wire, 0.25 mm², OG 0.2 m W1
|
||||
6 Wire, 0.25 mm², RD 0.2 m W1
|
||||
7 Wire, 0.25 mm², YE 0.2 m W1
|
||||
# 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
|
||||
|
||||
|
502
examples/ex04.gv
generated
@ -1,251 +1,289 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4
|
||||
// https://github.com/formatc1702/WireViz
|
||||
// Graph generated by WireViz 0.5-dev+refactor
|
||||
// https://github.com/wireviz/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]
|
||||
__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>
|
||||
AUTOGENERATED_F_1 [label=<
|
||||
<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]
|
||||
__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>
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_2 [label=<
|
||||
<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]
|
||||
__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>
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_3 [label=<
|
||||
<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]
|
||||
__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>
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_4 [label=<
|
||||
<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]
|
||||
__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>
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_5 [label=<
|
||||
<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]
|
||||
__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>
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_6 [label=<
|
||||
<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]
|
||||
__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>
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_7 [label=<
|
||||
<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]
|
||||
__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>
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_8 [label=<
|
||||
<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]
|
||||
__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>
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_9 [label=<
|
||||
<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]
|
||||
__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>
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_10 [label=<
|
||||
<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]
|
||||
__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>
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_11 [label=<
|
||||
<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]
|
||||
__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>
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_12 [label=<
|
||||
<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]
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
__F_1:e -- W1:w1:w
|
||||
W1:w1:e -- __F_7:w
|
||||
edge [color="#000000:#ff0000:#000000"]
|
||||
__F_2:e -- W1:w2:w
|
||||
W1:w2:e -- __F_8:w
|
||||
edge [color="#000000:#ff8000:#000000"]
|
||||
__F_3:e -- W1:w3:w
|
||||
W1:w3:e -- __F_9:w
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
__F_4:e -- W1:w4:w
|
||||
W1:w4:e -- __F_10:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
__F_5:e -- W1:w5:w
|
||||
W1:w5:e -- __F_11:w
|
||||
edge [color="#000000:#0066ff:#000000"]
|
||||
__F_6:e -- W1:w6:w
|
||||
W1:w6:e -- __F_12:w
|
||||
> shape=box style=filled]
|
||||
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 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"></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"></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"></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"></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"></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"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style="filled,dashed"]
|
||||
> 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"]
|
||||
AUTOGENERATED_F_2:e -- W1:w2:w
|
||||
W1:w2:e -- AUTOGENERATED_F_8:w
|
||||
edge [color="#000000:#FF8000:#000000"]
|
||||
AUTOGENERATED_F_3:e -- W1:w3:w
|
||||
W1:w3:e -- AUTOGENERATED_F_9:w
|
||||
edge [color="#000000:#FFFF00:#000000"]
|
||||
AUTOGENERATED_F_4:e -- W1:w4:w
|
||||
W1:w4:e -- AUTOGENERATED_F_10:w
|
||||
edge [color="#000000:#00AA00:#000000"]
|
||||
AUTOGENERATED_F_5:e -- W1:w5:w
|
||||
W1:w5:e -- AUTOGENERATED_F_11:w
|
||||
edge [color="#000000:#0066FF:#000000"]
|
||||
AUTOGENERATED_F_6:e -- W1:w6:w
|
||||
W1:w6:e -- AUTOGENERATED_F_12: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:#00AA00:#000000" straight=straight]
|
||||
W1:w6:e -- W1:w6:w [color="#000000:#0066FF:#000000" straight=straight]
|
||||
}
|
||||
|
||||
497
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 - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.5-dev+refactor - https://github.com/wireviz/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,280 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="668pt" height="287pt"
|
||||
viewBox="0.00 0.00 668.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="none" points="-4,4 -4,-282.5 664,-282.5 664,4 -4,4"/>
|
||||
<!-- __F_1 -->
|
||||
<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>__F_1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="87,-258 0,-258 0,-235 87,-235 87,-258"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-234.5 0.5,-257.5 87.5,-257.5 87.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>
|
||||
<title>AUTOGENERATED_F_1</title>
|
||||
<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">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="429,-278.5 231,-278.5 231,-44.5 429,-44.5 429,-278.5"/>
|
||||
<polygon fill="none" stroke="black" points="231,-255.5 231,-278.5 429,-278.5 429,-255.5 231,-255.5"/>
|
||||
<text text-anchor="start" x="319" y="-263.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="231,-232.5 231,-255.5 254,-255.5 254,-232.5 231,-232.5"/>
|
||||
<text text-anchor="start" x="235" y="-240.3" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="254,-232.5 254,-255.5 386,-255.5 386,-232.5 254,-232.5"/>
|
||||
<text text-anchor="start" x="258" y="-240.3" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="386,-232.5 386,-255.5 429,-255.5 429,-232.5 386,-232.5"/>
|
||||
<text text-anchor="start" x="390" y="-240.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="254" y="-219.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="306" y="-200.3" font-family="arial" font-size="14.00">     BN    </text>
|
||||
<polygon fill="#000000" stroke="none" points="231,-192.5 231,-194.5 429,-194.5 429,-192.5 231,-192.5"/>
|
||||
<polygon fill="#895956" stroke="none" points="231,-190.5 231,-192.5 429,-192.5 429,-190.5 231,-190.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="231,-188.5 231,-190.5 429,-190.5 429,-188.5 231,-188.5"/>
|
||||
<text text-anchor="start" x="305.5" y="-175.3" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<polygon fill="#000000" stroke="none" points="231,-167.5 231,-169.5 429,-169.5 429,-167.5 231,-167.5"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="231,-165.5 231,-167.5 429,-167.5 429,-165.5 231,-165.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="231,-163.5 231,-165.5 429,-165.5 429,-163.5 231,-163.5"/>
|
||||
<text text-anchor="start" x="304" y="-150.3" font-family="arial" font-size="14.00">     OG    </text>
|
||||
<polygon fill="#000000" stroke="none" points="231,-142.5 231,-144.5 429,-144.5 429,-142.5 231,-142.5"/>
|
||||
<polygon fill="#ff8000" stroke="none" points="231,-140.5 231,-142.5 429,-142.5 429,-140.5 231,-140.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="231,-138.5 231,-140.5 429,-140.5 429,-138.5 231,-138.5"/>
|
||||
<text text-anchor="start" x="306.5" y="-125.3" font-family="arial" font-size="14.00">     YE    </text>
|
||||
<polygon fill="#000000" stroke="none" points="231,-117.5 231,-119.5 429,-119.5 429,-117.5 231,-117.5"/>
|
||||
<polygon fill="#ffff00" stroke="none" points="231,-115.5 231,-117.5 429,-117.5 429,-115.5 231,-115.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="231,-113.5 231,-115.5 429,-115.5 429,-113.5 231,-113.5"/>
|
||||
<text text-anchor="start" x="305" y="-100.3" font-family="arial" font-size="14.00">     GN    </text>
|
||||
<polygon fill="#000000" stroke="none" points="231,-92.5 231,-94.5 429,-94.5 429,-92.5 231,-92.5"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="231,-90.5 231,-92.5 429,-92.5 429,-90.5 231,-90.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="231,-88.5 231,-90.5 429,-90.5 429,-88.5 231,-88.5"/>
|
||||
<text text-anchor="start" x="306" y="-75.3" font-family="arial" font-size="14.00">     BU    </text>
|
||||
<polygon fill="#000000" stroke="none" points="231,-67.5 231,-69.5 429,-69.5 429,-67.5 231,-67.5"/>
|
||||
<polygon fill="#0066ff" stroke="none" points="231,-65.5 231,-67.5 429,-67.5 429,-65.5 231,-65.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="231,-63.5 231,-65.5 429,-65.5 429,-63.5 231,-63.5"/>
|
||||
<text text-anchor="start" x="254" y="-50.3" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- __F_1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>__F_1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-244.5C153.53,-246.25 160.51,-191.25 231,-189.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M87,-246.5C155.51,-246.5 162.49,-191.5 231,-191.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-248.5C157.49,-246.75 164.47,-191.75 231,-193.5"/>
|
||||
</g>
|
||||
<!-- __F_2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>__F_2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="87,-211 0,-211 0,-188 87,-188 87,-211"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-187.5 0.5,-210.5 87.5,-210.5 87.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>
|
||||
<title>W1</title>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<text text-anchor="start" x="248.29" y="-50.45" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- __F_2--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>__F_2:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-197.5C150.79,-198.78 163.47,-165.78 231,-164.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M87,-199.5C152.66,-199.5 165.34,-166.5 231,-166.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-201.5C154.53,-200.22 167.21,-167.22 231,-168.5"/>
|
||||
<!-- 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="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>
|
||||
<!-- __F_3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>__F_3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="87,-164 0,-164 0,-141 87,-141 87,-164"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-140.5 0.5,-163.5 87.5,-163.5 87.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>
|
||||
</g>
|
||||
<!-- __F_3--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>__F_3:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-150.5C150.04,-150.86 165.66,-139.86 231,-139.5"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M87,-152.5C151.19,-152.5 166.81,-141.5 231,-141.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-154.5C152.34,-154.14 167.96,-143.14 231,-143.5"/>
|
||||
</g>
|
||||
<!-- __F_4 -->
|
||||
<g id="node4" class="node">
|
||||
<title>__F_4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="87,-117 0,-117 0,-94 87,-94 87,-117"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-93.5 0.5,-116.5 87.5,-116.5 87.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>
|
||||
</g>
|
||||
<!-- __F_4--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>__F_4:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-103.5C152.34,-103.86 167.96,-114.86 231,-114.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M87,-105.5C151.19,-105.5 166.81,-116.5 231,-116.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-107.5C150.04,-107.14 165.66,-118.14 231,-118.5"/>
|
||||
</g>
|
||||
<!-- __F_5 -->
|
||||
<g id="node5" class="node">
|
||||
<title>__F_5</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="87,-70 0,-70 0,-47 87,-47 87,-70"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-46.5 0.5,-69.5 87.5,-69.5 87.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>
|
||||
<!-- __F_5--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>__F_5:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-56.5C154.53,-57.78 167.21,-90.78 231,-89.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M87,-58.5C152.66,-58.5 165.34,-91.5 231,-91.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-60.5C150.79,-59.22 163.47,-92.22 231,-93.5"/>
|
||||
</g>
|
||||
<!-- __F_6 -->
|
||||
<g id="node6" class="node">
|
||||
<title>__F_6</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="87,-23 0,-23 0,0 87,0 87,-23"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,0.5 0.5,-22.5 87.5,-22.5 87.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>
|
||||
<!-- __F_6--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>__F_6:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-9.5C157.49,-11.25 164.47,-66.25 231,-64.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M87,-11.5C155.51,-11.5 162.49,-66.5 231,-66.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-13.5C153.53,-11.75 160.51,-66.75 231,-68.5"/>
|
||||
</g>
|
||||
<!-- __F_7 -->
|
||||
<g id="node7" class="node">
|
||||
<title>__F_7</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="660,-258 573,-258 573,-235 660,-235 660,-258"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-234.5 573.5,-257.5 660.5,-257.5 660.5,-234.5 573.5,-234.5"/>
|
||||
<text text-anchor="start" x="577.5" y="-242.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- __F_8 -->
|
||||
<g id="node8" class="node">
|
||||
<title>__F_8</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="660,-211 573,-211 573,-188 660,-188 660,-211"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-187.5 573.5,-210.5 660.5,-210.5 660.5,-187.5 573.5,-187.5"/>
|
||||
<text text-anchor="start" x="577.5" y="-195.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- __F_9 -->
|
||||
<g id="node9" class="node">
|
||||
<title>__F_9</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="660,-164 573,-164 573,-141 660,-141 660,-164"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-140.5 573.5,-163.5 660.5,-163.5 660.5,-140.5 573.5,-140.5"/>
|
||||
<text text-anchor="start" x="577.5" y="-148.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- __F_10 -->
|
||||
<g id="node10" class="node">
|
||||
<title>__F_10</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="660,-117 573,-117 573,-94 660,-94 660,-117"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-93.5 573.5,-116.5 660.5,-116.5 660.5,-93.5 573.5,-93.5"/>
|
||||
<text text-anchor="start" x="577.5" y="-101.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- __F_11 -->
|
||||
<g id="node11" class="node">
|
||||
<title>__F_11</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="660,-70 573,-70 573,-47 660,-47 660,-70"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-46.5 573.5,-69.5 660.5,-69.5 660.5,-46.5 573.5,-46.5"/>
|
||||
<text text-anchor="start" x="577.5" y="-54.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- __F_12 -->
|
||||
<g id="node12" class="node">
|
||||
<title>__F_12</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="660,-23 573,-23 573,0 660,0 660,-23"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,0.5 573.5,-22.5 660.5,-22.5 660.5,0.5 573.5,0.5"/>
|
||||
<text text-anchor="start" x="577.5" y="-7.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--__F_7 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--__F_7:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-189.5C499.49,-191.25 506.47,-246.25 573,-244.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M429,-191.5C497.51,-191.5 504.49,-246.5 573,-246.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-193.5C495.53,-191.75 502.51,-246.75 573,-248.5"/>
|
||||
<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>
|
||||
<!-- W1--__F_8 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<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>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--__F_8:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-164.5C496.53,-165.78 509.21,-198.78 573,-197.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M429,-166.5C494.66,-166.5 507.34,-199.5 573,-199.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-168.5C492.79,-167.22 505.47,-200.22 573,-201.5"/>
|
||||
<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>
|
||||
<!-- W1--__F_9 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<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>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--__F_9:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-139.5C494.34,-139.86 509.96,-150.86 573,-150.5"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M429,-141.5C493.19,-141.5 508.81,-152.5 573,-152.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-143.5C492.04,-143.14 507.66,-154.14 573,-154.5"/>
|
||||
<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>
|
||||
<!-- W1--__F_10 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<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="node3" class="node">
|
||||
<title>AUTOGENERATED_F_7</title>
|
||||
<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="edge8" class="edge">
|
||||
<title>W1:e--__F_10:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-114.5C492.04,-114.86 507.66,-103.86 573,-103.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M429,-116.5C493.19,-116.5 508.81,-105.5 573,-105.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-118.5C494.34,-118.14 509.96,-107.14 573,-107.5"/>
|
||||
<title>W1:e--AUTOGENERATED_F_7:w</title>
|
||||
<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>
|
||||
<!-- W1--__F_11 -->
|
||||
<!-- 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="edge9" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_8:w</title>
|
||||
<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="edge10" class="edge">
|
||||
<title>W1:e--__F_11:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-89.5C492.79,-90.78 505.47,-57.78 573,-56.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M429,-91.5C494.66,-91.5 507.34,-58.5 573,-58.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-93.5C496.53,-92.22 509.21,-59.22 573,-60.5"/>
|
||||
<title>W1:e--AUTOGENERATED_F_9:w</title>
|
||||
<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>
|
||||
<!-- W1--__F_12 -->
|
||||
<!-- 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="edge11" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_10:w</title>
|
||||
<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="edge12" class="edge">
|
||||
<title>W1:e--__F_12:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-64.5C495.53,-66.25 502.51,-11.25 573,-9.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M429,-66.5C497.51,-66.5 504.49,-11.5 573,-11.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-68.5C499.49,-66.75 506.47,-11.75 573,-13.5"/>
|
||||
<title>W1:e--AUTOGENERATED_F_11:w</title>
|
||||
<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="edge13" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_12:w</title>
|
||||
<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 +319,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: 69 KiB After Width: | Height: | Size: 54 KiB |
449
examples/ex04.svg
generated
@ -1,219 +1,280 @@
|
||||
<?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 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="668pt" height="287pt"
|
||||
viewBox="0.00 0.00 668.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="none" points="-4,4 -4,-282.5 664,-282.5 664,4 -4,4"/>
|
||||
<!-- __F_1 -->
|
||||
<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>__F_1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="87,-258 0,-258 0,-235 87,-235 87,-258"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-234.5 0.5,-257.5 87.5,-257.5 87.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>
|
||||
<title>AUTOGENERATED_F_1</title>
|
||||
<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">
|
||||
<title>W1</title>
|
||||
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="429,-278.5 231,-278.5 231,-44.5 429,-44.5 429,-278.5"/>
|
||||
<polygon fill="none" stroke="black" points="231,-255.5 231,-278.5 429,-278.5 429,-255.5 231,-255.5"/>
|
||||
<text text-anchor="start" x="319" y="-263.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="231,-232.5 231,-255.5 254,-255.5 254,-232.5 231,-232.5"/>
|
||||
<text text-anchor="start" x="235" y="-240.3" font-family="arial" font-size="14.00">6x</text>
|
||||
<polygon fill="none" stroke="black" points="254,-232.5 254,-255.5 386,-255.5 386,-232.5 254,-232.5"/>
|
||||
<text text-anchor="start" x="258" y="-240.3" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
|
||||
<polygon fill="none" stroke="black" points="386,-232.5 386,-255.5 429,-255.5 429,-232.5 386,-232.5"/>
|
||||
<text text-anchor="start" x="390" y="-240.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="254" y="-219.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="306" y="-200.3" font-family="arial" font-size="14.00">     BN    </text>
|
||||
<polygon fill="#000000" stroke="none" points="231,-192.5 231,-194.5 429,-194.5 429,-192.5 231,-192.5"/>
|
||||
<polygon fill="#895956" stroke="none" points="231,-190.5 231,-192.5 429,-192.5 429,-190.5 231,-190.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="231,-188.5 231,-190.5 429,-190.5 429,-188.5 231,-188.5"/>
|
||||
<text text-anchor="start" x="305.5" y="-175.3" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<polygon fill="#000000" stroke="none" points="231,-167.5 231,-169.5 429,-169.5 429,-167.5 231,-167.5"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="231,-165.5 231,-167.5 429,-167.5 429,-165.5 231,-165.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="231,-163.5 231,-165.5 429,-165.5 429,-163.5 231,-163.5"/>
|
||||
<text text-anchor="start" x="304" y="-150.3" font-family="arial" font-size="14.00">     OG    </text>
|
||||
<polygon fill="#000000" stroke="none" points="231,-142.5 231,-144.5 429,-144.5 429,-142.5 231,-142.5"/>
|
||||
<polygon fill="#ff8000" stroke="none" points="231,-140.5 231,-142.5 429,-142.5 429,-140.5 231,-140.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="231,-138.5 231,-140.5 429,-140.5 429,-138.5 231,-138.5"/>
|
||||
<text text-anchor="start" x="306.5" y="-125.3" font-family="arial" font-size="14.00">     YE    </text>
|
||||
<polygon fill="#000000" stroke="none" points="231,-117.5 231,-119.5 429,-119.5 429,-117.5 231,-117.5"/>
|
||||
<polygon fill="#ffff00" stroke="none" points="231,-115.5 231,-117.5 429,-117.5 429,-115.5 231,-115.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="231,-113.5 231,-115.5 429,-115.5 429,-113.5 231,-113.5"/>
|
||||
<text text-anchor="start" x="305" y="-100.3" font-family="arial" font-size="14.00">     GN    </text>
|
||||
<polygon fill="#000000" stroke="none" points="231,-92.5 231,-94.5 429,-94.5 429,-92.5 231,-92.5"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="231,-90.5 231,-92.5 429,-92.5 429,-90.5 231,-90.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="231,-88.5 231,-90.5 429,-90.5 429,-88.5 231,-88.5"/>
|
||||
<text text-anchor="start" x="306" y="-75.3" font-family="arial" font-size="14.00">     BU    </text>
|
||||
<polygon fill="#000000" stroke="none" points="231,-67.5 231,-69.5 429,-69.5 429,-67.5 231,-67.5"/>
|
||||
<polygon fill="#0066ff" stroke="none" points="231,-65.5 231,-67.5 429,-67.5 429,-65.5 231,-65.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="231,-63.5 231,-65.5 429,-65.5 429,-63.5 231,-63.5"/>
|
||||
<text text-anchor="start" x="254" y="-50.3" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- __F_1--W1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>__F_1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-244.5C153.53,-246.25 160.51,-191.25 231,-189.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M87,-246.5C155.51,-246.5 162.49,-191.5 231,-191.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-248.5C157.49,-246.75 164.47,-191.75 231,-193.5"/>
|
||||
</g>
|
||||
<!-- __F_2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>__F_2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="87,-211 0,-211 0,-188 87,-188 87,-211"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-187.5 0.5,-210.5 87.5,-210.5 87.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>
|
||||
<title>W1</title>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<text text-anchor="start" x="248.29" y="-50.45" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- __F_2--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>__F_2:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-197.5C150.79,-198.78 163.47,-165.78 231,-164.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M87,-199.5C152.66,-199.5 165.34,-166.5 231,-166.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-201.5C154.53,-200.22 167.21,-167.22 231,-168.5"/>
|
||||
<!-- 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="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>
|
||||
<!-- __F_3 -->
|
||||
<g id="node3" class="node">
|
||||
<title>__F_3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="87,-164 0,-164 0,-141 87,-141 87,-164"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-140.5 0.5,-163.5 87.5,-163.5 87.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>
|
||||
</g>
|
||||
<!-- __F_3--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>__F_3:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-150.5C150.04,-150.86 165.66,-139.86 231,-139.5"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M87,-152.5C151.19,-152.5 166.81,-141.5 231,-141.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-154.5C152.34,-154.14 167.96,-143.14 231,-143.5"/>
|
||||
</g>
|
||||
<!-- __F_4 -->
|
||||
<g id="node4" class="node">
|
||||
<title>__F_4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="87,-117 0,-117 0,-94 87,-94 87,-117"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-93.5 0.5,-116.5 87.5,-116.5 87.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>
|
||||
</g>
|
||||
<!-- __F_4--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>__F_4:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-103.5C152.34,-103.86 167.96,-114.86 231,-114.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M87,-105.5C151.19,-105.5 166.81,-116.5 231,-116.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-107.5C150.04,-107.14 165.66,-118.14 231,-118.5"/>
|
||||
</g>
|
||||
<!-- __F_5 -->
|
||||
<g id="node5" class="node">
|
||||
<title>__F_5</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="87,-70 0,-70 0,-47 87,-47 87,-70"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-46.5 0.5,-69.5 87.5,-69.5 87.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>
|
||||
<!-- __F_5--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>__F_5:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-56.5C154.53,-57.78 167.21,-90.78 231,-89.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M87,-58.5C152.66,-58.5 165.34,-91.5 231,-91.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-60.5C150.79,-59.22 163.47,-92.22 231,-93.5"/>
|
||||
</g>
|
||||
<!-- __F_6 -->
|
||||
<g id="node6" class="node">
|
||||
<title>__F_6</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="87,-23 0,-23 0,0 87,0 87,-23"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,0.5 0.5,-22.5 87.5,-22.5 87.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>
|
||||
<!-- __F_6--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>__F_6:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-9.5C157.49,-11.25 164.47,-66.25 231,-64.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M87,-11.5C155.51,-11.5 162.49,-66.5 231,-66.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-13.5C153.53,-11.75 160.51,-66.75 231,-68.5"/>
|
||||
</g>
|
||||
<!-- __F_7 -->
|
||||
<g id="node7" class="node">
|
||||
<title>__F_7</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="660,-258 573,-258 573,-235 660,-235 660,-258"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-234.5 573.5,-257.5 660.5,-257.5 660.5,-234.5 573.5,-234.5"/>
|
||||
<text text-anchor="start" x="577.5" y="-242.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- __F_8 -->
|
||||
<g id="node8" class="node">
|
||||
<title>__F_8</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="660,-211 573,-211 573,-188 660,-188 660,-211"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-187.5 573.5,-210.5 660.5,-210.5 660.5,-187.5 573.5,-187.5"/>
|
||||
<text text-anchor="start" x="577.5" y="-195.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- __F_9 -->
|
||||
<g id="node9" class="node">
|
||||
<title>__F_9</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="660,-164 573,-164 573,-141 660,-141 660,-164"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-140.5 573.5,-163.5 660.5,-163.5 660.5,-140.5 573.5,-140.5"/>
|
||||
<text text-anchor="start" x="577.5" y="-148.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- __F_10 -->
|
||||
<g id="node10" class="node">
|
||||
<title>__F_10</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="660,-117 573,-117 573,-94 660,-94 660,-117"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-93.5 573.5,-116.5 660.5,-116.5 660.5,-93.5 573.5,-93.5"/>
|
||||
<text text-anchor="start" x="577.5" y="-101.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- __F_11 -->
|
||||
<g id="node11" class="node">
|
||||
<title>__F_11</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="660,-70 573,-70 573,-47 660,-47 660,-70"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,-46.5 573.5,-69.5 660.5,-69.5 660.5,-46.5 573.5,-46.5"/>
|
||||
<text text-anchor="start" x="577.5" y="-54.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- __F_12 -->
|
||||
<g id="node12" class="node">
|
||||
<title>__F_12</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="660,-23 573,-23 573,0 660,0 660,-23"/>
|
||||
<polygon fill="none" stroke="black" points="573.5,0.5 573.5,-22.5 660.5,-22.5 660.5,0.5 573.5,0.5"/>
|
||||
<text text-anchor="start" x="577.5" y="-7.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
|
||||
</g>
|
||||
<!-- W1--__F_7 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--__F_7:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-189.5C499.49,-191.25 506.47,-246.25 573,-244.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M429,-191.5C497.51,-191.5 504.49,-246.5 573,-246.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-193.5C495.53,-191.75 502.51,-246.75 573,-248.5"/>
|
||||
<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>
|
||||
<!-- W1--__F_8 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<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>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--__F_8:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-164.5C496.53,-165.78 509.21,-198.78 573,-197.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M429,-166.5C494.66,-166.5 507.34,-199.5 573,-199.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-168.5C492.79,-167.22 505.47,-200.22 573,-201.5"/>
|
||||
<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>
|
||||
<!-- W1--__F_9 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<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>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--__F_9:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-139.5C494.34,-139.86 509.96,-150.86 573,-150.5"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M429,-141.5C493.19,-141.5 508.81,-152.5 573,-152.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-143.5C492.04,-143.14 507.66,-154.14 573,-154.5"/>
|
||||
<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>
|
||||
<!-- W1--__F_10 -->
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<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="node3" class="node">
|
||||
<title>AUTOGENERATED_F_7</title>
|
||||
<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="edge8" class="edge">
|
||||
<title>W1:e--__F_10:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-114.5C492.04,-114.86 507.66,-103.86 573,-103.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M429,-116.5C493.19,-116.5 508.81,-105.5 573,-105.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-118.5C494.34,-118.14 509.96,-107.14 573,-107.5"/>
|
||||
<title>W1:e--AUTOGENERATED_F_7:w</title>
|
||||
<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>
|
||||
<!-- W1--__F_11 -->
|
||||
<!-- 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="edge9" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_8:w</title>
|
||||
<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="edge10" class="edge">
|
||||
<title>W1:e--__F_11:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-89.5C492.79,-90.78 505.47,-57.78 573,-56.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M429,-91.5C494.66,-91.5 507.34,-58.5 573,-58.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-93.5C496.53,-92.22 509.21,-59.22 573,-60.5"/>
|
||||
<title>W1:e--AUTOGENERATED_F_9:w</title>
|
||||
<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>
|
||||
<!-- W1--__F_12 -->
|
||||
<!-- 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="edge11" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_10:w</title>
|
||||
<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="edge12" class="edge">
|
||||
<title>W1:e--__F_12:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-64.5C495.53,-66.25 502.51,-11.25 573,-9.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M429,-66.5C497.51,-66.5 504.49,-11.5 573,-11.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-68.5C499.49,-66.75 506.47,-11.75 573,-13.5"/>
|
||||
<title>W1:e--AUTOGENERATED_F_11:w</title>
|
||||
<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="edge13" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_12:w</title>
|
||||
<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: 18 KiB |
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
12
examples/ex05.bom.tsv
generated
@ -1,6 +1,6 @@
|
||||
Id Description Qty Unit Designators
|
||||
1 Connector, Molex KK 254, female, 4 pins 3 X1, X2, X3
|
||||
2 Wire, I2C, 0.25 mm², PK 0.4 m W1, W2
|
||||
3 Wire, I2C, 0.25 mm², TQ 0.4 m W1, W2
|
||||
4 Wire, I2C, 0.25 mm², VT 0.4 m W1, W2
|
||||
5 Wire, I2C, 0.25 mm², YE 0.4 m W1, W2
|
||||
# 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
|
||||
|
||||
|
604
examples/ex05.gv
generated
@ -1,317 +1,343 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4
|
||||
// https://github.com/formatc1702/WireViz
|
||||
// Graph generated by WireViz 0.5-dev+refactor
|
||||
// https://github.com/wireviz/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"></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"></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"></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"></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"></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"></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"></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"></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]
|
||||
}
|
||||
|
||||
579
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 - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.5-dev+refactor - https://github.com/wireviz/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,354 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1514pt" height="192pt"
|
||||
viewBox="0.00 0.00 1514.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="none" points="-4,4 -4,-188 1510,-188 1510,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="182,-152 0,-152 0,-14 182,-14 182,-152"/>
|
||||
<polygon fill="none" stroke="black" points="0,-129 0,-152 182,-152 182,-129 0,-129"/>
|
||||
<text text-anchor="start" x="82.5" y="-136.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-106 0,-129 93,-129 93,-106 0,-106"/>
|
||||
<text text-anchor="start" x="4" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="93,-106 93,-129 143,-129 143,-106 93,-106"/>
|
||||
<text text-anchor="start" x="97" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="143,-106 143,-129 182,-129 182,-106 143,-106"/>
|
||||
<text text-anchor="start" x="147" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-83 0,-106 103,-106 103,-83 0,-83"/>
|
||||
<text text-anchor="start" x="36" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="103,-83 103,-106 182,-106 182,-83 103,-83"/>
|
||||
<text text-anchor="start" x="138.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-60 0,-83 103,-83 103,-60 0,-60"/>
|
||||
<text text-anchor="start" x="37" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="103,-60 103,-83 182,-83 182,-60 103,-60"/>
|
||||
<text text-anchor="start" x="138.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-37 0,-60 103,-60 103,-37 0,-37"/>
|
||||
<text text-anchor="start" x="38" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="103,-37 103,-60 182,-60 182,-37 103,-37"/>
|
||||
<text text-anchor="start" x="138.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-14 0,-37 103,-37 103,-14 0,-14"/>
|
||||
<text text-anchor="start" x="37.5" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="103,-14 103,-37 182,-37 182,-14 103,-14"/>
|
||||
<text text-anchor="start" x="138.5" 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="518,-184 326,-184 326,0 518,0 518,-184"/>
|
||||
<polygon fill="none" stroke="black" points="326,-161 326,-184 518,-184 518,-161 326,-161"/>
|
||||
<text text-anchor="start" x="411" y="-168.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="326,-138 326,-161 364,-161 364,-138 326,-138"/>
|
||||
<text text-anchor="start" x="334" y="-145.8" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="364,-138 364,-161 394,-161 394,-138 364,-138"/>
|
||||
<text text-anchor="start" x="371.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="394,-138 394,-161 468,-161 468,-138 394,-138"/>
|
||||
<text text-anchor="start" x="401.5" y="-145.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="468,-138 468,-161 518,-161 518,-138 468,-138"/>
|
||||
<text text-anchor="start" x="475.5" y="-145.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="357.5" y="-124.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="328" y="-105.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="396" y="-105.8" font-family="arial" font-size="14.00">     PK    </text>
|
||||
<text text-anchor="start" x="453" y="-105.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="326,-98 326,-100 518,-100 518,-98 326,-98"/>
|
||||
<polygon fill="#ff66cc" stroke="none" points="326,-96 326,-98 518,-98 518,-96 326,-96"/>
|
||||
<polygon fill="#000000" stroke="none" points="326,-94 326,-96 518,-96 518,-94 326,-94"/>
|
||||
<text text-anchor="start" x="329" y="-80.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="395" y="-80.8" font-family="arial" font-size="14.00">     TQ    </text>
|
||||
<text text-anchor="start" x="454" y="-80.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="326,-73 326,-75 518,-75 518,-73 326,-73"/>
|
||||
<polygon fill="#00ffff" stroke="none" points="326,-71 326,-73 518,-73 518,-71 326,-71"/>
|
||||
<polygon fill="#000000" stroke="none" points="326,-69 326,-71 518,-71 518,-69 326,-69"/>
|
||||
<text text-anchor="start" x="330.5" y="-55.8" font-family="arial" font-size="14.00">X1:3:SCL</text>
|
||||
<text text-anchor="start" x="396" y="-55.8" font-family="arial" font-size="14.00">     YE    </text>
|
||||
<text text-anchor="start" x="455.5" y="-55.8" font-family="arial" font-size="14.00">X2:3:SCL</text>
|
||||
<polygon fill="#000000" stroke="none" points="326,-48 326,-50 518,-50 518,-48 326,-48"/>
|
||||
<polygon fill="#ffff00" stroke="none" points="326,-46 326,-48 518,-48 518,-46 326,-46"/>
|
||||
<polygon fill="#000000" stroke="none" points="326,-44 326,-46 518,-46 518,-44 326,-44"/>
|
||||
<text text-anchor="start" x="329.5" y="-30.8" font-family="arial" font-size="14.00">X1:4:SDA</text>
|
||||
<text text-anchor="start" x="396" y="-30.8" font-family="arial" font-size="14.00">     VT    </text>
|
||||
<text text-anchor="start" x="454.5" y="-30.8" font-family="arial" font-size="14.00">X2:4:SDA</text>
|
||||
<polygon fill="#000000" stroke="none" points="326,-23 326,-25 518,-25 518,-23 326,-23"/>
|
||||
<polygon fill="#8000ff" stroke="none" points="326,-21 326,-23 518,-23 518,-21 326,-21"/>
|
||||
<polygon fill="#000000" stroke="none" points="326,-19 326,-21 518,-21 518,-19 326,-19"/>
|
||||
<text text-anchor="start" x="357.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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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="M182,-93C246.25,-93.02 262.24,-95.02 326,-95"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M182,-95C246.01,-95 261.99,-97 326,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-97C245.76,-96.98 261.75,-98.98 326,-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="M182,-69C246.13,-69 262.12,-70 326,-70"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M182,-71C246,-71 262,-72 326,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-73C245.88,-73 261.87,-74 326,-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="M182,-46C245.88,-46 261.87,-45 326,-45"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-48C246,-48 262,-47 326,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-50C246.13,-50 262.12,-49 326,-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="M182,-23C245.64,-23.03 261.62,-20.03 326,-20"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M182,-25C246.01,-25 261.99,-22 326,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-27C246.38,-26.97 262.36,-23.97 326,-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="844,-152 662,-152 662,-14 844,-14 844,-152"/>
|
||||
<polygon fill="none" stroke="black" points="662,-129 662,-152 844,-152 844,-129 662,-129"/>
|
||||
<text text-anchor="start" x="744.5" y="-136.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="662,-106 662,-129 755,-129 755,-106 662,-106"/>
|
||||
<text text-anchor="start" x="666" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="755,-106 755,-129 805,-129 805,-106 755,-106"/>
|
||||
<text text-anchor="start" x="759" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="805,-106 805,-129 844,-129 844,-106 805,-106"/>
|
||||
<text text-anchor="start" x="809" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="662,-83 662,-106 715,-106 715,-83 662,-83"/>
|
||||
<text text-anchor="start" x="684.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="715,-83 715,-106 791,-106 791,-83 715,-83"/>
|
||||
<text text-anchor="start" x="737.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="791,-83 791,-106 844,-106 844,-83 791,-83"/>
|
||||
<text text-anchor="start" x="813.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="662,-60 662,-83 715,-83 715,-60 662,-60"/>
|
||||
<text text-anchor="start" x="684.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="715,-60 715,-83 791,-83 791,-60 715,-60"/>
|
||||
<text text-anchor="start" x="738.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="791,-60 791,-83 844,-83 844,-60 791,-60"/>
|
||||
<text text-anchor="start" x="813.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="662,-37 662,-60 715,-60 715,-37 662,-37"/>
|
||||
<text text-anchor="start" x="684.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="715,-37 715,-60 791,-60 791,-37 715,-37"/>
|
||||
<text text-anchor="start" x="739.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="791,-37 791,-60 844,-60 844,-37 791,-37"/>
|
||||
<text text-anchor="start" x="813.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="662,-14 662,-37 715,-37 715,-14 662,-14"/>
|
||||
<text text-anchor="start" x="684.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="715,-14 715,-37 791,-37 791,-14 715,-14"/>
|
||||
<text text-anchor="start" x="739" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="791,-14 791,-37 844,-37 844,-14 791,-14"/>
|
||||
<text text-anchor="start" x="813.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="1180,-184 988,-184 988,0 1180,0 1180,-184"/>
|
||||
<polygon fill="none" stroke="black" points="988,-161 988,-184 1180,-184 1180,-161 988,-161"/>
|
||||
<text text-anchor="start" x="1073" y="-168.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="988,-138 988,-161 1026,-161 1026,-138 988,-138"/>
|
||||
<text text-anchor="start" x="996" y="-145.8" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="1026,-138 1026,-161 1056,-161 1056,-138 1026,-138"/>
|
||||
<text text-anchor="start" x="1033.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1056,-138 1056,-161 1130,-161 1130,-138 1056,-138"/>
|
||||
<text text-anchor="start" x="1063.5" y="-145.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="1130,-138 1130,-161 1180,-161 1180,-138 1130,-138"/>
|
||||
<text text-anchor="start" x="1137.5" y="-145.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="1019.5" y="-124.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="990" y="-105.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<text text-anchor="start" x="1058" y="-105.8" font-family="arial" font-size="14.00">     PK    </text>
|
||||
<text text-anchor="start" x="1115" y="-105.8" font-family="arial" font-size="14.00">X3:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="988,-98 988,-100 1180,-100 1180,-98 988,-98"/>
|
||||
<polygon fill="#ff66cc" stroke="none" points="988,-96 988,-98 1180,-98 1180,-96 988,-96"/>
|
||||
<polygon fill="#000000" stroke="none" points="988,-94 988,-96 1180,-96 1180,-94 988,-94"/>
|
||||
<text text-anchor="start" x="991" y="-80.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<text text-anchor="start" x="1057" y="-80.8" font-family="arial" font-size="14.00">     TQ    </text>
|
||||
<text text-anchor="start" x="1116" y="-80.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="988,-73 988,-75 1180,-75 1180,-73 988,-73"/>
|
||||
<polygon fill="#00ffff" stroke="none" points="988,-71 988,-73 1180,-73 1180,-71 988,-71"/>
|
||||
<polygon fill="#000000" stroke="none" points="988,-69 988,-71 1180,-71 1180,-69 988,-69"/>
|
||||
<text text-anchor="start" x="992.5" y="-55.8" font-family="arial" font-size="14.00">X2:3:SCL</text>
|
||||
<text text-anchor="start" x="1058" y="-55.8" font-family="arial" font-size="14.00">     YE    </text>
|
||||
<text text-anchor="start" x="1117.5" y="-55.8" font-family="arial" font-size="14.00">X3:3:SCL</text>
|
||||
<polygon fill="#000000" stroke="none" points="988,-48 988,-50 1180,-50 1180,-48 988,-48"/>
|
||||
<polygon fill="#ffff00" stroke="none" points="988,-46 988,-48 1180,-48 1180,-46 988,-46"/>
|
||||
<polygon fill="#000000" stroke="none" points="988,-44 988,-46 1180,-46 1180,-44 988,-44"/>
|
||||
<text text-anchor="start" x="991.5" y="-30.8" font-family="arial" font-size="14.00">X2:4:SDA</text>
|
||||
<text text-anchor="start" x="1058" y="-30.8" font-family="arial" font-size="14.00">     VT    </text>
|
||||
<text text-anchor="start" x="1116.5" y="-30.8" font-family="arial" font-size="14.00">X3:4:SDA</text>
|
||||
<polygon fill="#000000" stroke="none" points="988,-23 988,-25 1180,-25 1180,-23 988,-23"/>
|
||||
<polygon fill="#8000ff" stroke="none" points="988,-21 988,-23 1180,-23 1180,-21 988,-21"/>
|
||||
<polygon fill="#000000" stroke="none" points="988,-19 988,-21 1180,-21 1180,-19 988,-19"/>
|
||||
<text text-anchor="start" x="1019.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="M844,-93C908.25,-93.02 924.24,-95.02 988,-95"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M844,-95C908.01,-95 923.99,-97 988,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-97C907.76,-96.98 923.75,-98.98 988,-99"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-69C908.13,-69 924.12,-70 988,-70"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M844,-71C908,-71 924,-72 988,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-73C907.88,-73 923.87,-74 988,-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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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="M844,-46C907.88,-46 923.87,-45 988,-45"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M844,-48C908,-48 924,-47 988,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-50C908.13,-50 924.12,-49 988,-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="M844,-23C907.64,-23.03 923.62,-20.03 988,-20"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M844,-25C908.01,-25 923.99,-22 988,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-27C908.38,-26.97 924.36,-23.97 988,-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="1506,-152 1324,-152 1324,-14 1506,-14 1506,-152"/>
|
||||
<polygon fill="none" stroke="black" points="1324,-129 1324,-152 1506,-152 1506,-129 1324,-129"/>
|
||||
<text text-anchor="start" x="1406.5" y="-136.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="1324,-106 1324,-129 1417,-129 1417,-106 1324,-106"/>
|
||||
<text text-anchor="start" x="1328" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="1417,-106 1417,-129 1467,-129 1467,-106 1417,-106"/>
|
||||
<text text-anchor="start" x="1421" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="1467,-106 1467,-129 1506,-129 1506,-106 1467,-106"/>
|
||||
<text text-anchor="start" x="1471" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="1324,-83 1324,-106 1404,-106 1404,-83 1324,-83"/>
|
||||
<text text-anchor="start" x="1360" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="1404,-83 1404,-106 1506,-106 1506,-83 1404,-83"/>
|
||||
<text text-anchor="start" x="1439.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="1324,-60 1324,-83 1404,-83 1404,-60 1324,-60"/>
|
||||
<text text-anchor="start" x="1360" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="1404,-60 1404,-83 1506,-83 1506,-60 1404,-60"/>
|
||||
<text text-anchor="start" x="1440.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="1324,-37 1324,-60 1404,-60 1404,-37 1324,-37"/>
|
||||
<text text-anchor="start" x="1360" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="1404,-37 1404,-60 1506,-60 1506,-37 1404,-37"/>
|
||||
<text text-anchor="start" x="1441.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="1324,-14 1324,-37 1404,-37 1404,-14 1324,-14"/>
|
||||
<text text-anchor="start" x="1360" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="1404,-14 1404,-37 1506,-37 1506,-14 1404,-14"/>
|
||||
<text text-anchor="start" x="1441" 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="M518,-95C581.76,-95.02 597.75,-93.02 662,-93"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M518,-97C582.01,-97 597.99,-95 662,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-99C582.25,-98.98 598.24,-96.98 662,-97"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-70C581.88,-70 597.87,-69 662,-69"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M518,-72C582,-72 598,-71 662,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-74C582.13,-74 598.12,-73 662,-73"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-45C582.13,-45 598.12,-46 662,-46"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M518,-47C582,-47 598,-48 662,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-49C581.88,-49 597.87,-50 662,-50"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-20C582.38,-20.03 598.36,-23.03 662,-23"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M518,-22C582.01,-22 597.99,-25 662,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-24C581.64,-23.97 597.62,-26.97 662,-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="M1180,-95C1243.76,-95.02 1259.75,-93.02 1324,-93"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1180,-97C1244.01,-97 1259.99,-95 1324,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-99C1244.25,-98.98 1260.24,-96.98 1324,-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="M1180,-70C1243.88,-70 1259.87,-69 1324,-69"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M1180,-72C1244,-72 1260,-71 1324,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-74C1244.13,-74 1260.12,-73 1324,-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="M1180,-45C1244.13,-45 1260.12,-46 1324,-46"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1180,-47C1244,-47 1260,-48 1324,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-49C1243.88,-49 1259.87,-50 1324,-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="M1180,-20C1244.38,-20.03 1260.36,-23.03 1324,-23"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M1180,-22C1244.01,-22 1259.99,-25 1324,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-24C1243.64,-23.97 1259.62,-26.97 1324,-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 +393,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: 50 KiB After Width: | Height: | Size: 44 KiB |
543
examples/ex05.svg
generated
@ -1,301 +1,354 @@
|
||||
<?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 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1514pt" height="192pt"
|
||||
viewBox="0.00 0.00 1514.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="none" points="-4,4 -4,-188 1510,-188 1510,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="182,-152 0,-152 0,-14 182,-14 182,-152"/>
|
||||
<polygon fill="none" stroke="black" points="0,-129 0,-152 182,-152 182,-129 0,-129"/>
|
||||
<text text-anchor="start" x="82.5" y="-136.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-106 0,-129 93,-129 93,-106 0,-106"/>
|
||||
<text text-anchor="start" x="4" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="93,-106 93,-129 143,-129 143,-106 93,-106"/>
|
||||
<text text-anchor="start" x="97" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="143,-106 143,-129 182,-129 182,-106 143,-106"/>
|
||||
<text text-anchor="start" x="147" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-83 0,-106 103,-106 103,-83 0,-83"/>
|
||||
<text text-anchor="start" x="36" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="103,-83 103,-106 182,-106 182,-83 103,-83"/>
|
||||
<text text-anchor="start" x="138.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-60 0,-83 103,-83 103,-60 0,-60"/>
|
||||
<text text-anchor="start" x="37" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="103,-60 103,-83 182,-83 182,-60 103,-60"/>
|
||||
<text text-anchor="start" x="138.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-37 0,-60 103,-60 103,-37 0,-37"/>
|
||||
<text text-anchor="start" x="38" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="103,-37 103,-60 182,-60 182,-37 103,-37"/>
|
||||
<text text-anchor="start" x="138.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-14 0,-37 103,-37 103,-14 0,-14"/>
|
||||
<text text-anchor="start" x="37.5" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="103,-14 103,-37 182,-37 182,-14 103,-14"/>
|
||||
<text text-anchor="start" x="138.5" 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="518,-184 326,-184 326,0 518,0 518,-184"/>
|
||||
<polygon fill="none" stroke="black" points="326,-161 326,-184 518,-184 518,-161 326,-161"/>
|
||||
<text text-anchor="start" x="411" y="-168.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="326,-138 326,-161 364,-161 364,-138 326,-138"/>
|
||||
<text text-anchor="start" x="334" y="-145.8" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="364,-138 364,-161 394,-161 394,-138 364,-138"/>
|
||||
<text text-anchor="start" x="371.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="394,-138 394,-161 468,-161 468,-138 394,-138"/>
|
||||
<text text-anchor="start" x="401.5" y="-145.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="468,-138 468,-161 518,-161 518,-138 468,-138"/>
|
||||
<text text-anchor="start" x="475.5" y="-145.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="357.5" y="-124.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="328" y="-105.8" font-family="arial" font-size="14.00">X1:1:GND</text>
|
||||
<text text-anchor="start" x="396" y="-105.8" font-family="arial" font-size="14.00">     PK    </text>
|
||||
<text text-anchor="start" x="453" y="-105.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="326,-98 326,-100 518,-100 518,-98 326,-98"/>
|
||||
<polygon fill="#ff66cc" stroke="none" points="326,-96 326,-98 518,-98 518,-96 326,-96"/>
|
||||
<polygon fill="#000000" stroke="none" points="326,-94 326,-96 518,-96 518,-94 326,-94"/>
|
||||
<text text-anchor="start" x="329" y="-80.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
|
||||
<text text-anchor="start" x="395" y="-80.8" font-family="arial" font-size="14.00">     TQ    </text>
|
||||
<text text-anchor="start" x="454" y="-80.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="326,-73 326,-75 518,-75 518,-73 326,-73"/>
|
||||
<polygon fill="#00ffff" stroke="none" points="326,-71 326,-73 518,-73 518,-71 326,-71"/>
|
||||
<polygon fill="#000000" stroke="none" points="326,-69 326,-71 518,-71 518,-69 326,-69"/>
|
||||
<text text-anchor="start" x="330.5" y="-55.8" font-family="arial" font-size="14.00">X1:3:SCL</text>
|
||||
<text text-anchor="start" x="396" y="-55.8" font-family="arial" font-size="14.00">     YE    </text>
|
||||
<text text-anchor="start" x="455.5" y="-55.8" font-family="arial" font-size="14.00">X2:3:SCL</text>
|
||||
<polygon fill="#000000" stroke="none" points="326,-48 326,-50 518,-50 518,-48 326,-48"/>
|
||||
<polygon fill="#ffff00" stroke="none" points="326,-46 326,-48 518,-48 518,-46 326,-46"/>
|
||||
<polygon fill="#000000" stroke="none" points="326,-44 326,-46 518,-46 518,-44 326,-44"/>
|
||||
<text text-anchor="start" x="329.5" y="-30.8" font-family="arial" font-size="14.00">X1:4:SDA</text>
|
||||
<text text-anchor="start" x="396" y="-30.8" font-family="arial" font-size="14.00">     VT    </text>
|
||||
<text text-anchor="start" x="454.5" y="-30.8" font-family="arial" font-size="14.00">X2:4:SDA</text>
|
||||
<polygon fill="#000000" stroke="none" points="326,-23 326,-25 518,-25 518,-23 326,-23"/>
|
||||
<polygon fill="#8000ff" stroke="none" points="326,-21 326,-23 518,-23 518,-21 326,-21"/>
|
||||
<polygon fill="#000000" stroke="none" points="326,-19 326,-21 518,-21 518,-19 326,-19"/>
|
||||
<text text-anchor="start" x="357.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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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="M182,-93C246.25,-93.02 262.24,-95.02 326,-95"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M182,-95C246.01,-95 261.99,-97 326,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-97C245.76,-96.98 261.75,-98.98 326,-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="M182,-69C246.13,-69 262.12,-70 326,-70"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M182,-71C246,-71 262,-72 326,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-73C245.88,-73 261.87,-74 326,-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="M182,-46C245.88,-46 261.87,-45 326,-45"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-48C246,-48 262,-47 326,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-50C246.13,-50 262.12,-49 326,-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="M182,-23C245.64,-23.03 261.62,-20.03 326,-20"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M182,-25C246.01,-25 261.99,-22 326,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-27C246.38,-26.97 262.36,-23.97 326,-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="844,-152 662,-152 662,-14 844,-14 844,-152"/>
|
||||
<polygon fill="none" stroke="black" points="662,-129 662,-152 844,-152 844,-129 662,-129"/>
|
||||
<text text-anchor="start" x="744.5" y="-136.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="662,-106 662,-129 755,-129 755,-106 662,-106"/>
|
||||
<text text-anchor="start" x="666" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="755,-106 755,-129 805,-129 805,-106 755,-106"/>
|
||||
<text text-anchor="start" x="759" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="805,-106 805,-129 844,-129 844,-106 805,-106"/>
|
||||
<text text-anchor="start" x="809" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="662,-83 662,-106 715,-106 715,-83 662,-83"/>
|
||||
<text text-anchor="start" x="684.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="715,-83 715,-106 791,-106 791,-83 715,-83"/>
|
||||
<text text-anchor="start" x="737.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="791,-83 791,-106 844,-106 844,-83 791,-83"/>
|
||||
<text text-anchor="start" x="813.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="662,-60 662,-83 715,-83 715,-60 662,-60"/>
|
||||
<text text-anchor="start" x="684.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="715,-60 715,-83 791,-83 791,-60 715,-60"/>
|
||||
<text text-anchor="start" x="738.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="791,-60 791,-83 844,-83 844,-60 791,-60"/>
|
||||
<text text-anchor="start" x="813.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="662,-37 662,-60 715,-60 715,-37 662,-37"/>
|
||||
<text text-anchor="start" x="684.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="715,-37 715,-60 791,-60 791,-37 715,-37"/>
|
||||
<text text-anchor="start" x="739.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="791,-37 791,-60 844,-60 844,-37 791,-37"/>
|
||||
<text text-anchor="start" x="813.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="662,-14 662,-37 715,-37 715,-14 662,-14"/>
|
||||
<text text-anchor="start" x="684.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="715,-14 715,-37 791,-37 791,-14 715,-14"/>
|
||||
<text text-anchor="start" x="739" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
|
||||
<polygon fill="none" stroke="black" points="791,-14 791,-37 844,-37 844,-14 791,-14"/>
|
||||
<text text-anchor="start" x="813.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="1180,-184 988,-184 988,0 1180,0 1180,-184"/>
|
||||
<polygon fill="none" stroke="black" points="988,-161 988,-184 1180,-184 1180,-161 988,-161"/>
|
||||
<text text-anchor="start" x="1073" y="-168.8" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="988,-138 988,-161 1026,-161 1026,-138 988,-138"/>
|
||||
<text text-anchor="start" x="996" y="-145.8" font-family="arial" font-size="14.00">I2C</text>
|
||||
<polygon fill="none" stroke="black" points="1026,-138 1026,-161 1056,-161 1056,-138 1026,-138"/>
|
||||
<text text-anchor="start" x="1033.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1056,-138 1056,-161 1130,-161 1130,-138 1056,-138"/>
|
||||
<text text-anchor="start" x="1063.5" y="-145.8" font-family="arial" font-size="14.00">0.25 mm²</text>
|
||||
<polygon fill="none" stroke="black" points="1130,-138 1130,-161 1180,-161 1180,-138 1130,-138"/>
|
||||
<text text-anchor="start" x="1137.5" y="-145.8" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="1019.5" y="-124.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="990" y="-105.8" font-family="arial" font-size="14.00">X2:1:GND</text>
|
||||
<text text-anchor="start" x="1058" y="-105.8" font-family="arial" font-size="14.00">     PK    </text>
|
||||
<text text-anchor="start" x="1115" y="-105.8" font-family="arial" font-size="14.00">X3:1:GND</text>
|
||||
<polygon fill="#000000" stroke="none" points="988,-98 988,-100 1180,-100 1180,-98 988,-98"/>
|
||||
<polygon fill="#ff66cc" stroke="none" points="988,-96 988,-98 1180,-98 1180,-96 988,-96"/>
|
||||
<polygon fill="#000000" stroke="none" points="988,-94 988,-96 1180,-96 1180,-94 988,-94"/>
|
||||
<text text-anchor="start" x="991" y="-80.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
|
||||
<text text-anchor="start" x="1057" y="-80.8" font-family="arial" font-size="14.00">     TQ    </text>
|
||||
<text text-anchor="start" x="1116" y="-80.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
|
||||
<polygon fill="#000000" stroke="none" points="988,-73 988,-75 1180,-75 1180,-73 988,-73"/>
|
||||
<polygon fill="#00ffff" stroke="none" points="988,-71 988,-73 1180,-73 1180,-71 988,-71"/>
|
||||
<polygon fill="#000000" stroke="none" points="988,-69 988,-71 1180,-71 1180,-69 988,-69"/>
|
||||
<text text-anchor="start" x="992.5" y="-55.8" font-family="arial" font-size="14.00">X2:3:SCL</text>
|
||||
<text text-anchor="start" x="1058" y="-55.8" font-family="arial" font-size="14.00">     YE    </text>
|
||||
<text text-anchor="start" x="1117.5" y="-55.8" font-family="arial" font-size="14.00">X3:3:SCL</text>
|
||||
<polygon fill="#000000" stroke="none" points="988,-48 988,-50 1180,-50 1180,-48 988,-48"/>
|
||||
<polygon fill="#ffff00" stroke="none" points="988,-46 988,-48 1180,-48 1180,-46 988,-46"/>
|
||||
<polygon fill="#000000" stroke="none" points="988,-44 988,-46 1180,-46 1180,-44 988,-44"/>
|
||||
<text text-anchor="start" x="991.5" y="-30.8" font-family="arial" font-size="14.00">X2:4:SDA</text>
|
||||
<text text-anchor="start" x="1058" y="-30.8" font-family="arial" font-size="14.00">     VT    </text>
|
||||
<text text-anchor="start" x="1116.5" y="-30.8" font-family="arial" font-size="14.00">X3:4:SDA</text>
|
||||
<polygon fill="#000000" stroke="none" points="988,-23 988,-25 1180,-25 1180,-23 988,-23"/>
|
||||
<polygon fill="#8000ff" stroke="none" points="988,-21 988,-23 1180,-23 1180,-21 988,-21"/>
|
||||
<polygon fill="#000000" stroke="none" points="988,-19 988,-21 1180,-21 1180,-19 988,-19"/>
|
||||
<text text-anchor="start" x="1019.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="M844,-93C908.25,-93.02 924.24,-95.02 988,-95"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M844,-95C908.01,-95 923.99,-97 988,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-97C907.76,-96.98 923.75,-98.98 988,-99"/>
|
||||
</g>
|
||||
<!-- X2--W2 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X2:e--W2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-69C908.13,-69 924.12,-70 988,-70"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M844,-71C908,-71 924,-72 988,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-73C907.88,-73 923.87,-74 988,-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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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="M844,-46C907.88,-46 923.87,-45 988,-45"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M844,-48C908,-48 924,-47 988,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-50C908.13,-50 924.12,-49 988,-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="M844,-23C907.64,-23.03 923.62,-20.03 988,-20"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M844,-25C908.01,-25 923.99,-22 988,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-27C908.38,-26.97 924.36,-23.97 988,-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="1506,-152 1324,-152 1324,-14 1506,-14 1506,-152"/>
|
||||
<polygon fill="none" stroke="black" points="1324,-129 1324,-152 1506,-152 1506,-129 1324,-129"/>
|
||||
<text text-anchor="start" x="1406.5" y="-136.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="1324,-106 1324,-129 1417,-129 1417,-106 1324,-106"/>
|
||||
<text text-anchor="start" x="1328" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
|
||||
<polygon fill="none" stroke="black" points="1417,-106 1417,-129 1467,-129 1467,-106 1417,-106"/>
|
||||
<text text-anchor="start" x="1421" y="-113.8" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="1467,-106 1467,-129 1506,-129 1506,-106 1467,-106"/>
|
||||
<text text-anchor="start" x="1471" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="1324,-83 1324,-106 1404,-106 1404,-83 1324,-83"/>
|
||||
<text text-anchor="start" x="1360" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="1404,-83 1404,-106 1506,-106 1506,-83 1404,-83"/>
|
||||
<text text-anchor="start" x="1439.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
|
||||
<polygon fill="none" stroke="black" points="1324,-60 1324,-83 1404,-83 1404,-60 1324,-60"/>
|
||||
<text text-anchor="start" x="1360" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="1404,-60 1404,-83 1506,-83 1506,-60 1404,-60"/>
|
||||
<text text-anchor="start" x="1440.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
|
||||
<polygon fill="none" stroke="black" points="1324,-37 1324,-60 1404,-60 1404,-37 1324,-37"/>
|
||||
<text text-anchor="start" x="1360" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="1404,-37 1404,-60 1506,-60 1506,-37 1404,-37"/>
|
||||
<text text-anchor="start" x="1441.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
|
||||
<polygon fill="none" stroke="black" points="1324,-14 1324,-37 1404,-37 1404,-14 1324,-14"/>
|
||||
<text text-anchor="start" x="1360" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="1404,-14 1404,-37 1506,-37 1506,-14 1404,-14"/>
|
||||
<text text-anchor="start" x="1441" 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="M518,-95C581.76,-95.02 597.75,-93.02 662,-93"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M518,-97C582.01,-97 597.99,-95 662,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-99C582.25,-98.98 598.24,-96.98 662,-97"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-70C581.88,-70 597.87,-69 662,-69"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M518,-72C582,-72 598,-71 662,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-74C582.13,-74 598.12,-73 662,-73"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-45C582.13,-45 598.12,-46 662,-46"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M518,-47C582,-47 598,-48 662,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-49C581.88,-49 597.87,-50 662,-50"/>
|
||||
</g>
|
||||
<!-- W1--X2 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-20C582.38,-20.03 598.36,-23.03 662,-23"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M518,-22C582.01,-22 597.99,-25 662,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-24C581.64,-23.97 597.62,-26.97 662,-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="M1180,-95C1243.76,-95.02 1259.75,-93.02 1324,-93"/>
|
||||
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1180,-97C1244.01,-97 1259.99,-95 1324,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-99C1244.25,-98.98 1260.24,-96.98 1324,-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="M1180,-70C1243.88,-70 1259.87,-69 1324,-69"/>
|
||||
<path fill="none" stroke="#00ffff" stroke-width="2" d="M1180,-72C1244,-72 1260,-71 1324,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-74C1244.13,-74 1260.12,-73 1324,-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="M1180,-45C1244.13,-45 1260.12,-46 1324,-46"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1180,-47C1244,-47 1260,-48 1324,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-49C1243.88,-49 1259.87,-50 1324,-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="M1180,-20C1244.38,-20.03 1260.36,-23.03 1324,-23"/>
|
||||
<path fill="none" stroke="#8000ff" stroke-width="2" d="M1180,-22C1244.01,-22 1259.99,-25 1324,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-24C1243.64,-23.97 1259.62,-26.97 1324,-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: 22 KiB After Width: | Height: | Size: 26 KiB |
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
12
examples/ex06.bom.tsv
generated
@ -1,6 +1,6 @@
|
||||
Id Description Qty Unit Designators
|
||||
1 Connector, Molex KK 254, female, 4 pins 6 X1, X2, X3, X4, X5, X6
|
||||
2 Wire, 0.25 mm², PK 1.0 m W1, W2, W3, W4, W5
|
||||
3 Wire, 0.25 mm², TQ 1.0 m W1, W2, W3, W4, W5
|
||||
4 Wire, 0.25 mm², VT 1.0 m W1, W2, W3, W4, W5
|
||||
5 Wire, 0.25 mm², YE 1.0 m W1, W2, W3, W4, W5
|
||||
# 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
|
||||
|
||||
|
1354
examples/ex06.gv
generated
1267
examples/ex06.html
generated
BIN
examples/ex06.png
generated
|
Before Width: | Height: | Size: 292 KiB After Width: | Height: | Size: 286 KiB |
1231
examples/ex06.svg
generated
|
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 57 KiB |
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
8
examples/ex07.bom.tsv
generated
@ -1,4 +1,4 @@
|
||||
Id Description Qty Unit Designators
|
||||
1 Cable, 2 x 20 AWG 1 m C1
|
||||
2 Connector, D-Sub, female, 9 pins 1 X2
|
||||
3 Connector, TE 776164-1, female, 35 pins 1 X1
|
||||
# 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
|
||||
|
||||
|
268
examples/ex07.gv
generated
@ -1,129 +1,165 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4
|
||||
// https://github.com/formatc1702/WireViz
|
||||
// Graph generated by WireViz 0.5-dev+refactor
|
||||
// https://github.com/wireviz/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"></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"></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]
|
||||
}
|
||||
|
||||
195
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 - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.5-dev+refactor - https://github.com/wireviz/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,120 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="841pt" height="153pt"
|
||||
viewBox="0.00 0.00 841.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="none" points="-4,4 -4,-148.5 837,-148.5 837,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="205,-115 0,-115 0,0 205,0 205,-115"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-91.5 0.5,-114.5 205.5,-114.5 205.5,-91.5 0.5,-91.5"/>
|
||||
<text text-anchor="start" x="94.5" y="-99.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-68.5 0.5,-91.5 95.5,-91.5 95.5,-68.5 0.5,-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="95.5,-68.5 95.5,-91.5 152.5,-91.5 152.5,-68.5 95.5,-68.5"/>
|
||||
<text text-anchor="start" x="103" y="-76.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="152.5,-68.5 152.5,-91.5 205.5,-91.5 205.5,-68.5 152.5,-68.5"/>
|
||||
<text text-anchor="start" x="160" y="-76.3" font-family="arial" font-size="14.00">35-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-45.5 0.5,-68.5 205.5,-68.5 205.5,-45.5 0.5,-45.5"/>
|
||||
<text text-anchor="start" x="99" y="-53.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-22.5 0.5,-45.5 205.5,-45.5 205.5,-22.5 0.5,-22.5"/>
|
||||
<text text-anchor="start" x="99" y="-30.3" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,0.5 0.5,-22.5 205.5,-22.5 205.5,0.5 0.5,0.5"/>
|
||||
<text text-anchor="start" x="4.5" 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="484,-144.5 349,-144.5 349,-10.5 484,-10.5 484,-144.5"/>
|
||||
<polygon fill="none" stroke="black" points="349.5,-121.5 349.5,-144.5 484.5,-144.5 484.5,-121.5 349.5,-121.5"/>
|
||||
<text text-anchor="start" x="408" y="-129.3" font-family="arial" font-size="14.00">C1</text>
|
||||
<polygon fill="none" stroke="black" points="349.5,-98.5 349.5,-121.5 379.5,-121.5 379.5,-98.5 349.5,-98.5"/>
|
||||
<text text-anchor="start" x="357" y="-106.3" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="379.5,-98.5 379.5,-121.5 446.5,-121.5 446.5,-98.5 379.5,-98.5"/>
|
||||
<text text-anchor="start" x="387" y="-106.3" font-family="arial" font-size="14.00">20 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="446.5,-98.5 446.5,-121.5 484.5,-121.5 484.5,-98.5 446.5,-98.5"/>
|
||||
<text text-anchor="start" x="453.5" y="-106.3" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="363.5" y="-85.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="351.5" y="-66.3" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="385" y="-66.3" font-family="arial" font-size="14.00">     1:YE    </text>
|
||||
<text text-anchor="start" x="454.5" y="-66.3" font-family="arial" font-size="14.00">X2:7</text>
|
||||
<polygon fill="#000000" stroke="none" points="349.5,-58.5 349.5,-60.5 484.5,-60.5 484.5,-58.5 349.5,-58.5"/>
|
||||
<polygon fill="#ffff00" stroke="none" points="349.5,-56.5 349.5,-58.5 484.5,-58.5 484.5,-56.5 349.5,-56.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="349.5,-54.5 349.5,-56.5 484.5,-56.5 484.5,-54.5 349.5,-54.5"/>
|
||||
<text text-anchor="start" x="351.5" y="-41.3" font-family="arial" font-size="14.00">X1:6</text>
|
||||
<text text-anchor="start" x="383.5" y="-41.3" font-family="arial" font-size="14.00">     2:GN    </text>
|
||||
<text text-anchor="start" x="454.5" y="-41.3" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="none" points="349.5,-33.5 349.5,-35.5 484.5,-35.5 484.5,-33.5 349.5,-33.5"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="349.5,-31.5 349.5,-33.5 484.5,-33.5 484.5,-31.5 349.5,-31.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="349.5,-29.5 349.5,-31.5 484.5,-31.5 484.5,-29.5 349.5,-29.5"/>
|
||||
<text text-anchor="start" x="363.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>
|
||||
<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>
|
||||
<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="M205,-54.5C269.13,-54.5 285.12,-55.5 349,-55.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M205,-56.5C269,-56.5 285,-57.5 349,-57.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-58.5C268.88,-58.5 284.87,-59.5 349,-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="M205,-31.5C268.88,-31.5 284.87,-30.5 349,-30.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M205,-33.5C269,-33.5 285,-32.5 349,-32.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-35.5C269.13,-35.5 285.12,-34.5 349,-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="833,-115 628,-115 628,0 833,0 833,-115"/>
|
||||
<polygon fill="none" stroke="black" points="628.5,-91.5 628.5,-114.5 833.5,-114.5 833.5,-91.5 628.5,-91.5"/>
|
||||
<text text-anchor="start" x="722.5" y="-99.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="628.5,-68.5 628.5,-91.5 698.5,-91.5 698.5,-68.5 628.5,-68.5"/>
|
||||
<text text-anchor="start" x="644" y="-76.3" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="698.5,-68.5 698.5,-91.5 771.5,-91.5 771.5,-68.5 698.5,-68.5"/>
|
||||
<text text-anchor="start" x="714" y="-76.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="771.5,-68.5 771.5,-91.5 833.5,-91.5 833.5,-68.5 771.5,-68.5"/>
|
||||
<text text-anchor="start" x="787" y="-76.3" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polygon fill="none" stroke="black" points="628.5,-45.5 628.5,-68.5 833.5,-68.5 833.5,-45.5 628.5,-45.5"/>
|
||||
<text text-anchor="start" x="727" y="-53.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="628.5,-22.5 628.5,-45.5 833.5,-45.5 833.5,-22.5 628.5,-22.5"/>
|
||||
<text text-anchor="start" x="727" y="-30.3" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="628.5,0.5 628.5,-22.5 833.5,-22.5 833.5,0.5 628.5,0.5"/>
|
||||
<text text-anchor="start" x="632.5" 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="M484,-55.5C547.16,-56.48 561.4,-32.48 628,-31.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M484,-57.5C548.88,-57.5 563.12,-33.5 628,-33.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M484,-59.5C550.6,-58.52 564.84,-34.52 628,-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="M484,-30.5C550.6,-31.48 564.84,-55.48 628,-54.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M484,-32.5C548.88,-32.5 563.12,-56.5 628,-56.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M484,-34.5C547.16,-33.52 561.4,-57.52 628,-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 +159,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: 26 KiB After Width: | Height: | Size: 23 KiB |
165
examples/ex07.svg
generated
@ -1,105 +1,120 @@
|
||||
<?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 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="841pt" height="153pt"
|
||||
viewBox="0.00 0.00 841.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="none" points="-4,4 -4,-148.5 837,-148.5 837,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="205,-115 0,-115 0,0 205,0 205,-115"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-91.5 0.5,-114.5 205.5,-114.5 205.5,-91.5 0.5,-91.5"/>
|
||||
<text text-anchor="start" x="94.5" y="-99.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-68.5 0.5,-91.5 95.5,-91.5 95.5,-68.5 0.5,-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="95.5,-68.5 95.5,-91.5 152.5,-91.5 152.5,-68.5 95.5,-68.5"/>
|
||||
<text text-anchor="start" x="103" y="-76.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="152.5,-68.5 152.5,-91.5 205.5,-91.5 205.5,-68.5 152.5,-68.5"/>
|
||||
<text text-anchor="start" x="160" y="-76.3" font-family="arial" font-size="14.00">35-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-45.5 0.5,-68.5 205.5,-68.5 205.5,-45.5 0.5,-45.5"/>
|
||||
<text text-anchor="start" x="99" y="-53.3" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-22.5 0.5,-45.5 205.5,-45.5 205.5,-22.5 0.5,-22.5"/>
|
||||
<text text-anchor="start" x="99" y="-30.3" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,0.5 0.5,-22.5 205.5,-22.5 205.5,0.5 0.5,0.5"/>
|
||||
<text text-anchor="start" x="4.5" 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="484,-144.5 349,-144.5 349,-10.5 484,-10.5 484,-144.5"/>
|
||||
<polygon fill="none" stroke="black" points="349.5,-121.5 349.5,-144.5 484.5,-144.5 484.5,-121.5 349.5,-121.5"/>
|
||||
<text text-anchor="start" x="408" y="-129.3" font-family="arial" font-size="14.00">C1</text>
|
||||
<polygon fill="none" stroke="black" points="349.5,-98.5 349.5,-121.5 379.5,-121.5 379.5,-98.5 349.5,-98.5"/>
|
||||
<text text-anchor="start" x="357" y="-106.3" font-family="arial" font-size="14.00">2x</text>
|
||||
<polygon fill="none" stroke="black" points="379.5,-98.5 379.5,-121.5 446.5,-121.5 446.5,-98.5 379.5,-98.5"/>
|
||||
<text text-anchor="start" x="387" y="-106.3" font-family="arial" font-size="14.00">20 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="446.5,-98.5 446.5,-121.5 484.5,-121.5 484.5,-98.5 446.5,-98.5"/>
|
||||
<text text-anchor="start" x="453.5" y="-106.3" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="363.5" y="-85.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="351.5" y="-66.3" font-family="arial" font-size="14.00">X1:5</text>
|
||||
<text text-anchor="start" x="385" y="-66.3" font-family="arial" font-size="14.00">     1:YE    </text>
|
||||
<text text-anchor="start" x="454.5" y="-66.3" font-family="arial" font-size="14.00">X2:7</text>
|
||||
<polygon fill="#000000" stroke="none" points="349.5,-58.5 349.5,-60.5 484.5,-60.5 484.5,-58.5 349.5,-58.5"/>
|
||||
<polygon fill="#ffff00" stroke="none" points="349.5,-56.5 349.5,-58.5 484.5,-58.5 484.5,-56.5 349.5,-56.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="349.5,-54.5 349.5,-56.5 484.5,-56.5 484.5,-54.5 349.5,-54.5"/>
|
||||
<text text-anchor="start" x="351.5" y="-41.3" font-family="arial" font-size="14.00">X1:6</text>
|
||||
<text text-anchor="start" x="383.5" y="-41.3" font-family="arial" font-size="14.00">     2:GN    </text>
|
||||
<text text-anchor="start" x="454.5" y="-41.3" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<polygon fill="#000000" stroke="none" points="349.5,-33.5 349.5,-35.5 484.5,-35.5 484.5,-33.5 349.5,-33.5"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="349.5,-31.5 349.5,-33.5 484.5,-33.5 484.5,-31.5 349.5,-31.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="349.5,-29.5 349.5,-31.5 484.5,-31.5 484.5,-29.5 349.5,-29.5"/>
|
||||
<text text-anchor="start" x="363.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>
|
||||
<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>
|
||||
<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="M205,-54.5C269.13,-54.5 285.12,-55.5 349,-55.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M205,-56.5C269,-56.5 285,-57.5 349,-57.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-58.5C268.88,-58.5 284.87,-59.5 349,-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="M205,-31.5C268.88,-31.5 284.87,-30.5 349,-30.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M205,-33.5C269,-33.5 285,-32.5 349,-32.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-35.5C269.13,-35.5 285.12,-34.5 349,-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="833,-115 628,-115 628,0 833,0 833,-115"/>
|
||||
<polygon fill="none" stroke="black" points="628.5,-91.5 628.5,-114.5 833.5,-114.5 833.5,-91.5 628.5,-91.5"/>
|
||||
<text text-anchor="start" x="722.5" y="-99.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="628.5,-68.5 628.5,-91.5 698.5,-91.5 698.5,-68.5 628.5,-68.5"/>
|
||||
<text text-anchor="start" x="644" y="-76.3" font-family="arial" font-size="14.00">D-Sub</text>
|
||||
<polygon fill="none" stroke="black" points="698.5,-68.5 698.5,-91.5 771.5,-91.5 771.5,-68.5 698.5,-68.5"/>
|
||||
<text text-anchor="start" x="714" y="-76.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="771.5,-68.5 771.5,-91.5 833.5,-91.5 833.5,-68.5 771.5,-68.5"/>
|
||||
<text text-anchor="start" x="787" y="-76.3" font-family="arial" font-size="14.00">9-pin</text>
|
||||
<polygon fill="none" stroke="black" points="628.5,-45.5 628.5,-68.5 833.5,-68.5 833.5,-45.5 628.5,-45.5"/>
|
||||
<text text-anchor="start" x="727" y="-53.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="628.5,-22.5 628.5,-45.5 833.5,-45.5 833.5,-22.5 628.5,-22.5"/>
|
||||
<text text-anchor="start" x="727" y="-30.3" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="628.5,0.5 628.5,-22.5 833.5,-22.5 833.5,0.5 628.5,0.5"/>
|
||||
<text text-anchor="start" x="632.5" 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="M484,-55.5C547.16,-56.48 561.4,-32.48 628,-31.5"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M484,-57.5C548.88,-57.5 563.12,-33.5 628,-33.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M484,-59.5C550.6,-58.52 564.84,-34.52 628,-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="M484,-30.5C550.6,-31.48 564.84,-55.48 628,-54.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M484,-32.5C548.88,-32.5 563.12,-56.5 628,-56.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M484,-34.5C547.16,-33.52 561.4,-57.52 628,-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.6 KiB After Width: | Height: | Size: 8.5 KiB |
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
6
examples/ex08.bom.tsv
generated
@ -1,3 +1,3 @@
|
||||
Id Description Qty Unit Designators
|
||||
1 Cable, 3 x 24 AWG shielded, BK 0.2 m W1
|
||||
2 Connector, Phone Connector, male 3.5 1 Key
|
||||
# Qty Unit Description Designators
|
||||
1 1 Connector, Phone Connector, male 3.5 Key
|
||||
2 1 m Cable, 3 x 24 AWG shielded, BK W1
|
||||
|
||||
|
312
examples/ex08.gv
generated
@ -1,150 +1,184 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4
|
||||
// https://github.com/formatc1702/WireViz
|
||||
// Graph generated by WireViz 0.5-dev+refactor
|
||||
// https://github.com/wireviz/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"></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"></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"></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"></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]
|
||||
}
|
||||
|
||||
220
examples/ex08.html
generated
BIN
examples/ex08.png
generated
|
Before Width: | Height: | Size: 65 KiB After Width: | Height: | Size: 46 KiB |
194
examples/ex08.svg
generated
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 19 KiB |
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
8
examples/ex09.bom.tsv
generated
@ -1,4 +1,4 @@
|
||||
Id Description Qty Unit Designators
|
||||
1 Cable, 12 x 0.25 mm² shielded 0.2 m W1
|
||||
2 Connector, D-Sub, male, 25 pins 1 X1
|
||||
3 Connector, F48, female, 48 pins 1 X2
|
||||
# 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
|
||||
|
||||
|
985
examples/ex09.gv
generated
974
examples/ex09.html
generated
BIN
examples/ex09.png
generated
|
Before Width: | Height: | Size: 240 KiB After Width: | Height: | Size: 205 KiB |
944
examples/ex09.svg
generated
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 46 KiB |
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
6
examples/ex10.bom.tsv
generated
@ -1,3 +1,3 @@
|
||||
Id Description Qty Unit Designators
|
||||
1 Cable, CAT5e, 8 x 24 AWG 1 m W1
|
||||
2 Connector, Stewart Connector SS-37000-002, male, 8 pins 2 X1, X2
|
||||
# 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
|
||||
|
||||
|
530
examples/ex10.gv
generated
@ -1,302 +1,280 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4
|
||||
// https://github.com/formatc1702/WireViz
|
||||
// Graph generated by WireViz 0.5-dev+refactor
|
||||
// https://github.com/wireviz/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="6" port="w1"></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="6" port="w2"></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="6" port="w3"></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="6" port="w4"></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="6" port="w5"></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="6" port="w6"></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="6" port="w7"></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="6" port="w8"></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]
|
||||
}
|
||||
|
||||
599
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 - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.5-dev+refactor - https://github.com/wireviz/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,378 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1097pt" height="324pt"
|
||||
viewBox="0.00 0.00 1097.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="none" points="-4,4 -4,-320 1093,-320 1093,4 -4,4"/>
|
||||
<svg width="1115pt" height="305pt"
|
||||
viewBox="0.00 0.00 1115.00 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 1111,-301 1111,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="289,-264 0,-264 0,-34 289,-34 289,-264"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-241 0.5,-264 289.5,-264 289.5,-241 0.5,-241"/>
|
||||
<text text-anchor="start" x="136.5" y="-248.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-218 0.5,-241 211.5,-241 211.5,-218 0.5,-218"/>
|
||||
<text text-anchor="start" x="4.5" y="-225.8" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="211.5,-218 211.5,-241 250.5,-241 250.5,-218 211.5,-218"/>
|
||||
<text text-anchor="start" x="215.5" y="-225.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="250.5,-218 250.5,-241 289.5,-241 289.5,-218 250.5,-218"/>
|
||||
<text text-anchor="start" x="254.5" y="-225.8" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-195 0.5,-218 155.5,-218 155.5,-195 0.5,-195"/>
|
||||
<text text-anchor="start" x="64" y="-202.8" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-195 155.5,-218 289.5,-218 289.5,-195 155.5,-195"/>
|
||||
<text text-anchor="start" x="218.5" y="-202.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-172 0.5,-195 155.5,-195 155.5,-172 0.5,-172"/>
|
||||
<text text-anchor="start" x="66" y="-179.8" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-172 155.5,-195 289.5,-195 289.5,-172 155.5,-172"/>
|
||||
<text text-anchor="start" x="218.5" y="-179.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-149 0.5,-172 155.5,-172 155.5,-149 0.5,-149"/>
|
||||
<text text-anchor="start" x="64" y="-156.8" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-149 155.5,-172 289.5,-172 289.5,-149 155.5,-149"/>
|
||||
<text text-anchor="start" x="218.5" y="-156.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-126 0.5,-149 155.5,-149 155.5,-126 0.5,-126"/>
|
||||
<text text-anchor="start" x="64" y="-133.8" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-126 155.5,-149 289.5,-149 289.5,-126 155.5,-126"/>
|
||||
<text text-anchor="start" x="218.5" y="-133.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-103 0.5,-126 155.5,-126 155.5,-103 0.5,-103"/>
|
||||
<text text-anchor="start" x="65.5" y="-110.8" font-family="arial" font-size="14.00">DC-</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-103 155.5,-126 289.5,-126 289.5,-103 155.5,-103"/>
|
||||
<text text-anchor="start" x="218.5" y="-110.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-80 0.5,-103 155.5,-103 155.5,-80 0.5,-80"/>
|
||||
<text text-anchor="start" x="66" y="-87.8" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-80 155.5,-103 289.5,-103 289.5,-80 155.5,-80"/>
|
||||
<text text-anchor="start" x="218.5" y="-87.8" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-57 0.5,-80 155.5,-80 155.5,-57 0.5,-57"/>
|
||||
<text text-anchor="start" x="64" y="-64.8" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-57 155.5,-80 289.5,-80 289.5,-57 155.5,-57"/>
|
||||
<text text-anchor="start" x="218.5" y="-64.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-34 0.5,-57 155.5,-57 155.5,-34 0.5,-34"/>
|
||||
<text text-anchor="start" x="65.5" y="-41.8" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-34 155.5,-57 289.5,-57 289.5,-34 155.5,-34"/>
|
||||
<text text-anchor="start" x="218.5" y="-41.8" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="301.5,-259 0,-259 0,-18 301.5,-18 301.5,-259"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-18 0,-259 301.5,-259 301.5,-18 0,-18"/>
|
||||
<polygon fill="none" stroke="black" points="0,-234.5 0,-259 301.5,-259 301.5,-234.5 0,-234.5"/>
|
||||
<text text-anchor="start" x="141.75" y="-241.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-210 0,-234.5 223.25,-234.5 223.25,-210 0,-210"/>
|
||||
<text text-anchor="start" x="4" y="-217.2" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="223.25,-210 223.25,-234.5 262,-234.5 262,-210 223.25,-210"/>
|
||||
<text text-anchor="start" x="227.25" y="-217.2" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="262,-210 262,-234.5 301.5,-234.5 301.5,-210 262,-210"/>
|
||||
<text text-anchor="start" x="266" y="-217.2" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-186 0,-210 161.25,-210 161.25,-186 0,-186"/>
|
||||
<text text-anchor="start" x="66.38" y="-192.7" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-186 161.25,-210 301.5,-210 301.5,-186 161.25,-186"/>
|
||||
<text text-anchor="start" x="227.25" y="-192.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-162 0,-186 161.25,-186 161.25,-162 0,-162"/>
|
||||
<text text-anchor="start" x="68.25" y="-168.7" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-162 161.25,-186 301.5,-186 301.5,-162 161.25,-162"/>
|
||||
<text text-anchor="start" x="227.25" y="-168.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-138 0,-162 161.25,-162 161.25,-138 0,-138"/>
|
||||
<text text-anchor="start" x="66.38" y="-144.7" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-138 161.25,-162 301.5,-162 301.5,-138 161.25,-138"/>
|
||||
<text text-anchor="start" x="227.25" y="-144.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-114 0,-138 161.25,-138 161.25,-114 0,-114"/>
|
||||
<text text-anchor="start" x="66" y="-120.7" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-114 161.25,-138 301.5,-138 301.5,-114 161.25,-114"/>
|
||||
<text text-anchor="start" x="227.25" y="-120.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0,-90 0,-114 161.25,-114 161.25,-90 0,-90"/>
|
||||
<text text-anchor="start" x="67.88" y="-96.7" font-family="arial" font-size="14.00">DC-</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-90 161.25,-114 301.5,-114 301.5,-90 161.25,-90"/>
|
||||
<text text-anchor="start" x="227.25" y="-96.7" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-66 0,-90 161.25,-90 161.25,-66 0,-66"/>
|
||||
<text text-anchor="start" x="68.25" y="-72.7" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-66 161.25,-90 301.5,-90 301.5,-66 161.25,-66"/>
|
||||
<text text-anchor="start" x="227.25" y="-72.7" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0,-42 0,-66 161.25,-66 161.25,-42 0,-42"/>
|
||||
<text text-anchor="start" x="66" y="-48.7" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-42 161.25,-66 301.5,-66 301.5,-42 161.25,-42"/>
|
||||
<text text-anchor="start" x="227.25" y="-48.7" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0,-18 0,-42 161.25,-42 161.25,-18 0,-18"/>
|
||||
<text text-anchor="start" x="67.88" y="-24.7" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-18 161.25,-42 301.5,-42 301.5,-18 161.25,-18"/>
|
||||
<text text-anchor="start" x="227.25" y="-24.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="656,-316 433,-316 433,0 656,0 656,-316"/>
|
||||
<polygon fill="none" stroke="black" points="433.5,-293 433.5,-316 656.5,-316 656.5,-293 433.5,-293"/>
|
||||
<text text-anchor="start" x="534" y="-300.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="433.5,-270 433.5,-293 498.5,-293 498.5,-270 433.5,-270"/>
|
||||
<text text-anchor="start" x="445" y="-277.8" font-family="arial" font-size="14.00">CAT5e</text>
|
||||
<polygon fill="none" stroke="black" points="498.5,-270 498.5,-293 536.5,-293 536.5,-270 498.5,-270"/>
|
||||
<text text-anchor="start" x="510" y="-277.8" font-family="arial" font-size="14.00">8x</text>
|
||||
<polygon fill="none" stroke="black" points="536.5,-270 536.5,-293 610.5,-293 610.5,-270 536.5,-270"/>
|
||||
<text text-anchor="start" x="547.5" y="-277.8" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="610.5,-270 610.5,-293 656.5,-293 656.5,-270 610.5,-270"/>
|
||||
<text text-anchor="start" x="621.5" y="-277.8" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="463.5" y="-256.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="436" y="-237.8" font-family="arial" font-size="14.00">X1:1:DA+</text>
|
||||
<text text-anchor="start" x="500" y="-237.8" font-family="arial" font-size="14.00">     1:WHGN    </text>
|
||||
<text text-anchor="start" x="595" y="-237.8" font-family="arial" font-size="14.00">X2:3:DA+</text>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-230 433.5,-232 656.5,-232 656.5,-230 433.5,-230"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="433.5,-228 433.5,-230 656.5,-230 656.5,-228 433.5,-228"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="433.5,-226 433.5,-228 656.5,-228 656.5,-226 433.5,-226"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="433.5,-224 433.5,-226 656.5,-226 656.5,-224 433.5,-224"/>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-222 433.5,-224 656.5,-224 656.5,-222 433.5,-222"/>
|
||||
<text text-anchor="start" x="438" y="-208.8" font-family="arial" font-size="14.00">X1:2:DA-</text>
|
||||
<text text-anchor="start" x="511.5" y="-208.8" font-family="arial" font-size="14.00">     2:GN    </text>
|
||||
<text text-anchor="start" x="597" y="-208.8" font-family="arial" font-size="14.00">X2:6:DA-</text>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-201 433.5,-203 656.5,-203 656.5,-201 433.5,-201"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="433.5,-199 433.5,-201 656.5,-201 656.5,-199 433.5,-199"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="433.5,-197 433.5,-199 656.5,-199 656.5,-197 433.5,-197"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="433.5,-195 433.5,-197 656.5,-197 656.5,-195 433.5,-195"/>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-193 433.5,-195 656.5,-195 656.5,-193 433.5,-193"/>
|
||||
<text text-anchor="start" x="436" y="-179.8" font-family="arial" font-size="14.00">X1:3:DB+</text>
|
||||
<text text-anchor="start" x="499.5" y="-179.8" font-family="arial" font-size="14.00">     3:WHOG    </text>
|
||||
<text text-anchor="start" x="595" y="-179.8" font-family="arial" font-size="14.00">X2:1:DB+</text>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-172 433.5,-174 656.5,-174 656.5,-172 433.5,-172"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="433.5,-170 433.5,-172 656.5,-172 656.5,-170 433.5,-170"/>
|
||||
<polygon fill="#ff8000" stroke="none" points="433.5,-168 433.5,-170 656.5,-170 656.5,-168 433.5,-168"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="433.5,-166 433.5,-168 656.5,-168 656.5,-166 433.5,-166"/>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-164 433.5,-166 656.5,-166 656.5,-164 433.5,-164"/>
|
||||
<text text-anchor="start" x="435.5" y="-150.8" font-family="arial" font-size="14.00">X1:4:DC+</text>
|
||||
<text text-anchor="start" x="513" y="-150.8" font-family="arial" font-size="14.00">     4:BU    </text>
|
||||
<text text-anchor="start" x="594.5" y="-150.8" font-family="arial" font-size="14.00">X2:7:DC+</text>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-143 433.5,-145 656.5,-145 656.5,-143 433.5,-143"/>
|
||||
<polygon fill="#0066ff" stroke="none" points="433.5,-141 433.5,-143 656.5,-143 656.5,-141 433.5,-141"/>
|
||||
<polygon fill="#0066ff" stroke="none" points="433.5,-139 433.5,-141 656.5,-141 656.5,-139 433.5,-139"/>
|
||||
<polygon fill="#0066ff" stroke="none" points="433.5,-137 433.5,-139 656.5,-139 656.5,-137 433.5,-137"/>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-135 433.5,-137 656.5,-137 656.5,-135 433.5,-135"/>
|
||||
<text text-anchor="start" x="437.5" y="-121.8" font-family="arial" font-size="14.00">X1:5:DC-</text>
|
||||
<text text-anchor="start" x="501" y="-121.8" font-family="arial" font-size="14.00">     5:WHBU    </text>
|
||||
<text text-anchor="start" x="596.5" y="-121.8" font-family="arial" font-size="14.00">X2:8:DC-</text>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-114 433.5,-116 656.5,-116 656.5,-114 433.5,-114"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="433.5,-112 433.5,-114 656.5,-114 656.5,-112 433.5,-112"/>
|
||||
<polygon fill="#0066ff" stroke="none" points="433.5,-110 433.5,-112 656.5,-112 656.5,-110 433.5,-110"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="433.5,-108 433.5,-110 656.5,-110 656.5,-108 433.5,-108"/>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-106 433.5,-108 656.5,-108 656.5,-106 433.5,-106"/>
|
||||
<text text-anchor="start" x="438" y="-92.8" font-family="arial" font-size="14.00">X1:6:DB-</text>
|
||||
<text text-anchor="start" x="511" y="-92.8" font-family="arial" font-size="14.00">     6:OG    </text>
|
||||
<text text-anchor="start" x="597" y="-92.8" font-family="arial" font-size="14.00">X2:2:DB-</text>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-85 433.5,-87 656.5,-87 656.5,-85 433.5,-85"/>
|
||||
<polygon fill="#ff8000" stroke="none" points="433.5,-83 433.5,-85 656.5,-85 656.5,-83 433.5,-83"/>
|
||||
<polygon fill="#ff8000" stroke="none" points="433.5,-81 433.5,-83 656.5,-83 656.5,-81 433.5,-81"/>
|
||||
<polygon fill="#ff8000" stroke="none" points="433.5,-79 433.5,-81 656.5,-81 656.5,-79 433.5,-79"/>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-77 433.5,-79 656.5,-79 656.5,-77 433.5,-77"/>
|
||||
<text text-anchor="start" x="435.5" y="-63.8" font-family="arial" font-size="14.00">X1:7:DD+</text>
|
||||
<text text-anchor="start" x="501" y="-63.8" font-family="arial" font-size="14.00">     7:WHBN    </text>
|
||||
<text text-anchor="start" x="594.5" y="-63.8" font-family="arial" font-size="14.00">X2:4:DD+</text>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-56 433.5,-58 656.5,-58 656.5,-56 433.5,-56"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="433.5,-54 433.5,-56 656.5,-56 656.5,-54 433.5,-54"/>
|
||||
<polygon fill="#895956" stroke="none" points="433.5,-52 433.5,-54 656.5,-54 656.5,-52 433.5,-52"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="433.5,-50 433.5,-52 656.5,-52 656.5,-50 433.5,-50"/>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-48 433.5,-50 656.5,-50 656.5,-48 433.5,-48"/>
|
||||
<text text-anchor="start" x="437.5" y="-34.8" font-family="arial" font-size="14.00">X1:8:DD-</text>
|
||||
<text text-anchor="start" x="513" y="-34.8" font-family="arial" font-size="14.00">     8:BN    </text>
|
||||
<text text-anchor="start" x="596.5" y="-34.8" font-family="arial" font-size="14.00">X2:5:DD-</text>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-27 433.5,-29 656.5,-29 656.5,-27 433.5,-27"/>
|
||||
<polygon fill="#895956" stroke="none" points="433.5,-25 433.5,-27 656.5,-27 656.5,-25 433.5,-25"/>
|
||||
<polygon fill="#895956" stroke="none" points="433.5,-23 433.5,-25 656.5,-25 656.5,-23 433.5,-23"/>
|
||||
<polygon fill="#895956" stroke="none" points="433.5,-21 433.5,-23 656.5,-23 656.5,-21 433.5,-21"/>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-19 433.5,-21 656.5,-21 656.5,-19 433.5,-19"/>
|
||||
<text text-anchor="start" x="463.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="661.5,-297 445.5,-297 445.5,0 661.5,0 661.5,-297"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,0 445.5,-297 661.5,-297 661.5,0 445.5,0"/>
|
||||
<polygon fill="none" stroke="black" points="445.5,-272.5 445.5,-297 661.5,-297 661.5,-272.5 445.5,-272.5"/>
|
||||
<text text-anchor="start" x="542.25" y="-279.7" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="445.5,-248 445.5,-272.5 510.19,-272.5 510.19,-248 445.5,-248"/>
|
||||
<text text-anchor="start" x="454.97" y="-255.2" font-family="arial" font-size="14.00">CAT5e</text>
|
||||
<polygon fill="none" stroke="black" points="510.19,-248 510.19,-272.5 544.12,-272.5 544.12,-248 510.19,-248"/>
|
||||
<text text-anchor="start" x="519.66" y="-255.2" font-family="arial" font-size="14.00">8x</text>
|
||||
<polygon fill="none" stroke="black" points="544.12,-248 544.12,-272.5 618.56,-272.5 618.56,-248 544.12,-248"/>
|
||||
<text text-anchor="start" x="553.59" y="-255.2" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="618.56,-248 618.56,-272.5 661.5,-272.5 661.5,-248 618.56,-248"/>
|
||||
<text text-anchor="start" x="628.03" y="-255.2" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="478.62" y="-232.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="447.5" y="-212.7" font-family="arial" font-size="14.00"> X1:1:DA+</text>
|
||||
<text text-anchor="start" x="517.12" y="-212.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="525" y="-212.7" font-family="arial" font-size="14.00">1:WHGN</text>
|
||||
<text text-anchor="start" x="586.12" y="-212.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="593.5" y="-212.7" font-family="arial" font-size="14.00">X2:3:DA+ </text>
|
||||
<text text-anchor="start" x="447.5" y="-186.7" font-family="arial" font-size="14.00"> X1:2:DA-</text>
|
||||
<text text-anchor="start" x="517.12" y="-186.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="537" y="-186.7" font-family="arial" font-size="14.00">2:GN</text>
|
||||
<text text-anchor="start" x="586.12" y="-186.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="597.25" y="-186.7" font-family="arial" font-size="14.00">X2:6:DA- </text>
|
||||
<text text-anchor="start" x="447.5" y="-160.7" font-family="arial" font-size="14.00"> X1:3:DB+</text>
|
||||
<text text-anchor="start" x="517.12" y="-160.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="524.25" y="-160.7" font-family="arial" font-size="14.00">3:WHOG</text>
|
||||
<text text-anchor="start" x="586.12" y="-160.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="593.5" y="-160.7" font-family="arial" font-size="14.00">X2:1:DB+ </text>
|
||||
<text text-anchor="start" x="447.12" y="-134.7" font-family="arial" font-size="14.00"> X1:4:DC+</text>
|
||||
<text text-anchor="start" x="517.12" y="-134.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="537.75" y="-134.7" font-family="arial" font-size="14.00">4:BU</text>
|
||||
<text text-anchor="start" x="586.12" y="-134.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="593.12" y="-134.7" font-family="arial" font-size="14.00">X2:7:DC+ </text>
|
||||
<text text-anchor="start" x="447.5" y="-108.7" font-family="arial" font-size="14.00"> X1:5:DC-</text>
|
||||
<text text-anchor="start" x="517.12" y="-108.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="525.75" y="-108.7" font-family="arial" font-size="14.00">5:WHBU</text>
|
||||
<text text-anchor="start" x="586.12" y="-108.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="596.5" y="-108.7" font-family="arial" font-size="14.00">X2:8:DC- </text>
|
||||
<text text-anchor="start" x="447.5" y="-82.7" font-family="arial" font-size="14.00"> X1:6:DB-</text>
|
||||
<text text-anchor="start" x="517.12" y="-82.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="536.25" y="-82.7" font-family="arial" font-size="14.00">6:OG</text>
|
||||
<text text-anchor="start" x="586.12" y="-82.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="597.25" y="-82.7" font-family="arial" font-size="14.00">X2:2:DB- </text>
|
||||
<text text-anchor="start" x="447.12" y="-56.7" font-family="arial" font-size="14.00"> X1:7:DD+</text>
|
||||
<text text-anchor="start" x="517.12" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="525.75" y="-56.7" font-family="arial" font-size="14.00">7:WHBN</text>
|
||||
<text text-anchor="start" x="586.12" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="593.12" y="-56.7" font-family="arial" font-size="14.00">X2:4:DD+ </text>
|
||||
<text text-anchor="start" x="447.5" y="-30.7" font-family="arial" font-size="14.00"> X1:8:DD-</text>
|
||||
<text text-anchor="start" x="517.12" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="537.75" y="-30.7" font-family="arial" font-size="14.00">8:BN</text>
|
||||
<text text-anchor="start" x="586.12" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="596.5" y="-30.7" font-family="arial" font-size="14.00">X2:5:DD- </text>
|
||||
<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="M289,-203C356.83,-204.62 371.6,-224.62 433,-223"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-205C355.22,-205.81 369.99,-225.81 433,-225"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-207C353.61,-207 368.39,-227 433,-227"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-209C352.01,-208.19 366.78,-228.19 433,-229"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-211C350.4,-209.38 365.17,-229.38 433,-231"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-194C367.2,-194.34 383.04,-201.34 445.5,-201"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-196C366.39,-196.17 382.23,-203.17 445.5,-203"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M301.5,-198C365.58,-198 381.42,-205 445.5,-205"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-200C364.77,-199.83 380.61,-206.83 445.5,-207"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-202C363.96,-201.66 379.8,-208.66 445.5,-209"/>
|
||||
</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,-170C366.74,-170.18 382.66,-175.18 445.5,-175"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M301.5,-172C366.14,-172.09 382.06,-177.09 445.5,-177"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M301.5,-174C365.54,-174 381.46,-179 445.5,-179"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M301.5,-176C364.94,-175.91 380.86,-180.91 445.5,-181"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-178C364.34,-177.82 380.26,-182.82 445.5,-183"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-180C355.99,-181.04 371.39,-195.04 433,-194"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-182C354.65,-182.52 370.04,-196.52 433,-196"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-184C353.3,-184 368.7,-198 433,-198"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-186C351.96,-185.48 367.35,-199.48 433,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-188C350.61,-186.96 366.01,-200.96 433,-202"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-146C366.25,-146.07 382.23,-149.07 445.5,-149"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-148C365.88,-148.03 381.86,-151.03 445.5,-151"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M301.5,-150C365.51,-150 381.49,-153 445.5,-153"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-152C365.14,-151.97 381.12,-154.97 445.5,-155"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-154C364.77,-153.93 380.75,-156.93 445.5,-157"/>
|
||||
</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,-122C365.75,-122.01 381.75,-123.01 445.5,-123"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M301.5,-124C365.62,-124 381.62,-125 445.5,-125"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M301.5,-126C365.5,-126 381.5,-127 445.5,-127"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M301.5,-128C365.38,-128 381.38,-129 445.5,-129"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-130C365.25,-129.99 381.25,-130.99 445.5,-131"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-157C354.91,-157.43 370.71,-165.43 433,-165"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-159C354,-159.22 369.8,-167.22 433,-167"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-161C353.1,-161 368.9,-169 433,-169"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-163C352.2,-162.78 368,-170.78 433,-171"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-165C351.29,-164.57 367.09,-172.57 433,-173"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-98C365.25,-98.01 381.25,-97.01 445.5,-97"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-100C365.38,-100 381.38,-99 445.5,-99"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M301.5,-102C365.5,-102 381.5,-101 445.5,-101"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-104C365.62,-104 381.62,-103 445.5,-103"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-106C365.75,-105.99 381.75,-104.99 445.5,-105"/>
|
||||
</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,-74C364.77,-74.07 380.75,-71.07 445.5,-71"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M301.5,-76C365.14,-76.03 381.12,-73.03 445.5,-73"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M301.5,-78C365.51,-78 381.49,-75 445.5,-75"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M301.5,-80C365.88,-79.97 381.86,-76.97 445.5,-77"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-82C366.25,-81.93 382.23,-78.93 445.5,-79"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-133C353.75,-133.07 369.72,-136.07 433,-136"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-135C353.38,-135.03 369.36,-138.03 433,-138"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-137C353.01,-137 368.99,-140 433,-140"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-139C352.64,-138.97 368.62,-141.97 433,-142"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-141C352.28,-140.93 368.25,-143.93 433,-144"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-50C364.34,-50.18 380.26,-45.18 445.5,-45"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-52C364.94,-52.09 380.86,-47.09 445.5,-47"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M301.5,-54C365.54,-54 381.46,-49 445.5,-49"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-56C366.14,-55.91 382.06,-50.91 445.5,-51"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-58C366.74,-57.82 382.66,-52.82 445.5,-53"/>
|
||||
</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,-26C363.96,-26.34 379.8,-19.34 445.5,-19"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M301.5,-28C364.77,-28.17 380.61,-21.17 445.5,-21"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M301.5,-30C365.58,-30 381.42,-23 445.5,-23"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M301.5,-32C366.39,-31.83 382.23,-24.83 445.5,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-34C367.2,-33.66 383.04,-26.66 445.5,-27"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-110C352.28,-110.07 368.25,-107.07 433,-107"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-112C352.64,-112.03 368.62,-109.03 433,-109"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-114C353.01,-114 368.99,-111 433,-111"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-116C353.38,-115.97 369.36,-112.97 433,-113"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-118C353.75,-117.93 369.72,-114.93 433,-115"/>
|
||||
<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="#ffffff" 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="#ffffff" 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>
|
||||
<!-- 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,-183C589.5,-183 517.5,-183 445.5,-183"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-181C589.5,-181 517.5,-181 445.5,-181"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-179C589.5,-179 517.5,-179 445.5,-179"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-177C589.5,-177 517.5,-177 445.5,-177"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-175C589.5,-175 517.5,-175 445.5,-175"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-87C351.14,-87.53 366.89,-78.53 433,-78"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-89C352.13,-89.26 367.88,-80.26 433,-80"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-91C353.12,-91 368.88,-82 433,-82"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-93C354.12,-92.74 369.87,-83.74 433,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-95C355.11,-94.47 370.86,-85.47 433,-86"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-157C589.5,-157 517.5,-157 445.5,-157"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-155C589.5,-155 517.5,-155 445.5,-155"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-153C589.5,-153 517.5,-153 445.5,-153"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-151C589.5,-151 517.5,-151 445.5,-151"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-149C589.5,-149 517.5,-149 445.5,-149"/>
|
||||
</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,-131C589.5,-131 517.5,-131 445.5,-131"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-129C589.5,-129 517.5,-129 445.5,-129"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-127C589.5,-127 517.5,-127 445.5,-127"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-125C589.5,-125 517.5,-125 445.5,-125"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-123C589.5,-123 517.5,-123 445.5,-123"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-64C350.55,-65.14 365.85,-50.14 433,-49"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-66C351.95,-66.57 367.25,-51.57 433,-51"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-68C353.35,-68 368.65,-53 433,-53"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-70C354.75,-69.43 370.05,-54.43 433,-55"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-72C356.15,-70.86 371.45,-55.86 433,-57"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-105C589.5,-105 517.5,-105 445.5,-105"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-103C589.5,-103 517.5,-103 445.5,-103"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-101C589.5,-101 517.5,-101 445.5,-101"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-99C589.5,-99 517.5,-99 445.5,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-97C589.5,-97 517.5,-97 445.5,-97"/>
|
||||
</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,-79C589.5,-79 517.5,-79 445.5,-79"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-77C589.5,-77 517.5,-77 445.5,-77"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-75C589.5,-75 517.5,-75 445.5,-75"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-73C589.5,-73 517.5,-73 445.5,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-71C589.5,-71 517.5,-71 445.5,-71"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-41C350.4,-42.71 365.04,-21.71 433,-20"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-43C352.04,-43.86 366.68,-22.86 433,-22"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-45C353.68,-45 368.32,-24 433,-24"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-47C355.32,-46.14 369.96,-25.14 433,-26"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-49C356.96,-47.29 371.6,-26.29 433,-28"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-53C589.5,-53 517.5,-53 445.5,-53"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-51C589.5,-51 517.5,-51 445.5,-51"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-49C589.5,-49 517.5,-49 445.5,-49"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-47C589.5,-47 517.5,-47 445.5,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-45C589.5,-45 517.5,-45 445.5,-45"/>
|
||||
</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,-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="#895956" stroke-width="2" d="M661.5,-21C589.5,-21 517.5,-21 445.5,-21"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-19C589.5,-19 517.5,-19 445.5,-19"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="1089,-278 800,-278 800,-48 1089,-48 1089,-278"/>
|
||||
<polygon fill="none" stroke="black" points="800.5,-255 800.5,-278 1089.5,-278 1089.5,-255 800.5,-255"/>
|
||||
<text text-anchor="start" x="936.5" y="-262.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-232 800.5,-255 1011.5,-255 1011.5,-232 800.5,-232"/>
|
||||
<text text-anchor="start" x="804.5" y="-239.8" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="1011.5,-232 1011.5,-255 1050.5,-255 1050.5,-232 1011.5,-232"/>
|
||||
<text text-anchor="start" x="1015.5" y="-239.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="1050.5,-232 1050.5,-255 1089.5,-255 1089.5,-232 1050.5,-232"/>
|
||||
<text text-anchor="start" x="1054.5" y="-239.8" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-209 800.5,-232 935.5,-232 935.5,-209 800.5,-209"/>
|
||||
<text text-anchor="start" x="864" y="-216.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="935.5,-209 935.5,-232 1089.5,-232 1089.5,-209 935.5,-209"/>
|
||||
<text text-anchor="start" x="998.5" y="-216.8" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-186 800.5,-209 935.5,-209 935.5,-186 800.5,-186"/>
|
||||
<text text-anchor="start" x="864" y="-193.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="935.5,-186 935.5,-209 1089.5,-209 1089.5,-186 935.5,-186"/>
|
||||
<text text-anchor="start" x="1000.5" y="-193.8" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-163 800.5,-186 935.5,-186 935.5,-163 800.5,-163"/>
|
||||
<text text-anchor="start" x="864" y="-170.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="935.5,-163 935.5,-186 1089.5,-186 1089.5,-163 935.5,-163"/>
|
||||
<text text-anchor="start" x="998.5" y="-170.8" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-140 800.5,-163 935.5,-163 935.5,-140 800.5,-140"/>
|
||||
<text text-anchor="start" x="864" y="-147.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="935.5,-140 935.5,-163 1089.5,-163 1089.5,-140 935.5,-140"/>
|
||||
<text text-anchor="start" x="998.5" y="-147.8" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-117 800.5,-140 935.5,-140 935.5,-117 800.5,-117"/>
|
||||
<text text-anchor="start" x="864" y="-124.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="935.5,-117 935.5,-140 1089.5,-140 1089.5,-117 935.5,-117"/>
|
||||
<text text-anchor="start" x="1000" y="-124.8" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-94 800.5,-117 935.5,-117 935.5,-94 800.5,-94"/>
|
||||
<text text-anchor="start" x="864" y="-101.8" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="935.5,-94 935.5,-117 1089.5,-117 1089.5,-94 935.5,-94"/>
|
||||
<text text-anchor="start" x="1000.5" y="-101.8" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-71 800.5,-94 935.5,-94 935.5,-71 800.5,-71"/>
|
||||
<text text-anchor="start" x="864" y="-78.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="935.5,-71 935.5,-94 1089.5,-94 1089.5,-71 935.5,-71"/>
|
||||
<text text-anchor="start" x="998.5" y="-78.8" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-48 800.5,-71 935.5,-71 935.5,-48 800.5,-48"/>
|
||||
<text text-anchor="start" x="864" y="-55.8" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="935.5,-48 935.5,-71 1089.5,-71 1089.5,-48 935.5,-48"/>
|
||||
<text text-anchor="start" x="1000" y="-55.8" font-family="arial" font-size="14.00">DC-</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="1107,-264 805.5,-264 805.5,-23 1107,-23 1107,-264"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="805.5,-23 805.5,-264 1107,-264 1107,-23 805.5,-23"/>
|
||||
<polygon fill="none" stroke="black" points="805.5,-239.5 805.5,-264 1107,-264 1107,-239.5 805.5,-239.5"/>
|
||||
<text text-anchor="start" x="947.25" y="-246.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-215 805.5,-239.5 1028.75,-239.5 1028.75,-215 805.5,-215"/>
|
||||
<text text-anchor="start" x="809.5" y="-222.2" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="1028.75,-215 1028.75,-239.5 1067.5,-239.5 1067.5,-215 1028.75,-215"/>
|
||||
<text text-anchor="start" x="1032.75" y="-222.2" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="1067.5,-215 1067.5,-239.5 1107,-239.5 1107,-215 1067.5,-215"/>
|
||||
<text text-anchor="start" x="1071.5" y="-222.2" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-191 805.5,-215 945.75,-215 945.75,-191 805.5,-191"/>
|
||||
<text text-anchor="start" x="871.5" y="-197.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-191 945.75,-215 1107,-215 1107,-191 945.75,-191"/>
|
||||
<text text-anchor="start" x="1012.12" y="-197.7" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-167 805.5,-191 945.75,-191 945.75,-167 805.5,-167"/>
|
||||
<text text-anchor="start" x="871.5" y="-173.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-167 945.75,-191 1107,-191 1107,-167 945.75,-167"/>
|
||||
<text text-anchor="start" x="1014" y="-173.7" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-143 805.5,-167 945.75,-167 945.75,-143 805.5,-143"/>
|
||||
<text text-anchor="start" x="871.5" y="-149.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-143 945.75,-167 1107,-167 1107,-143 945.75,-143"/>
|
||||
<text text-anchor="start" x="1012.12" y="-149.7" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-119 805.5,-143 945.75,-143 945.75,-119 805.5,-119"/>
|
||||
<text text-anchor="start" x="871.5" y="-125.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-119 945.75,-143 1107,-143 1107,-119 945.75,-119"/>
|
||||
<text text-anchor="start" x="1011.75" y="-125.7" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-95 805.5,-119 945.75,-119 945.75,-95 805.5,-95"/>
|
||||
<text text-anchor="start" x="871.5" y="-101.7" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-95 945.75,-119 1107,-119 1107,-95 945.75,-95"/>
|
||||
<text text-anchor="start" x="1013.62" y="-101.7" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-71 805.5,-95 945.75,-95 945.75,-71 805.5,-71"/>
|
||||
<text text-anchor="start" x="871.5" y="-77.7" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-71 945.75,-95 1107,-95 1107,-71 945.75,-71"/>
|
||||
<text text-anchor="start" x="1014" y="-77.7" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-47 805.5,-71 945.75,-71 945.75,-47 805.5,-47"/>
|
||||
<text text-anchor="start" x="871.5" y="-53.7" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-47 945.75,-71 1107,-71 1107,-47 945.75,-47"/>
|
||||
<text text-anchor="start" x="1011.75" y="-53.7" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-23 805.5,-47 945.75,-47 945.75,-23 805.5,-23"/>
|
||||
<text text-anchor="start" x="871.5" y="-29.7" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-23 945.75,-47 1107,-47 1107,-23 945.75,-23"/>
|
||||
<text text-anchor="start" x="1013.62" y="-29.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="M656,-223C720.09,-226.4 728,-174.4 800,-171"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-225C722.07,-226.7 729.98,-174.7 800,-173"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M656,-227C724.05,-227 731.95,-175 800,-175"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-229C726.02,-227.3 733.93,-175.3 800,-177"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-231C728,-227.6 735.91,-175.6 800,-179"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-201C725.31,-204.33 733.81,-154.33 805.5,-151"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-203C727.28,-204.66 735.78,-154.66 805.5,-153"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-205C729.25,-205 737.75,-155 805.5,-155"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-207C731.22,-205.34 739.72,-155.34 805.5,-157"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-209C733.19,-205.67 741.69,-155.67 805.5,-159"/>
|
||||
</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="M656,-194C728.2,-198.36 719.83,-105.36 800,-101"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M656,-196C730.19,-198.18 721.82,-105.18 800,-103"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M656,-198C732.19,-198 723.81,-105 800,-105"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M656,-200C734.18,-197.82 725.81,-104.82 800,-107"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-202C736.17,-197.64 727.8,-104.64 800,-109"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-175C734.44,-179.41 724.6,-83.41 805.5,-79"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-177C736.43,-179.2 726.59,-83.2 805.5,-81"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-179C738.42,-179 728.58,-83 805.5,-83"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-181C740.41,-178.8 730.57,-82.8 805.5,-85"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-183C742.4,-178.59 732.56,-82.59 805.5,-87"/>
|
||||
</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="M656,-165C728,-168.4 735.91,-220.4 800,-217"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-167C726.02,-168.7 733.93,-220.7 800,-219"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M656,-169C724.05,-169 731.95,-221 800,-221"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-171C722.07,-169.3 729.98,-221.3 800,-223"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-173C720.09,-169.6 728,-221.6 800,-225"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-149C733.19,-152.33 741.69,-202.33 805.5,-199"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-151C731.22,-152.66 739.72,-202.66 805.5,-201"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-153C729.25,-153 737.75,-203 805.5,-203"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-155C727.28,-153.34 735.78,-203.34 805.5,-205"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-157C725.31,-153.67 733.81,-203.67 805.5,-207"/>
|
||||
</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="M656,-136C721.02,-139.59 727.02,-81.59 800,-78"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M656,-138C723.01,-139.79 729.01,-81.79 800,-80"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M656,-140C725,-140 731,-82 800,-82"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M656,-142C726.99,-140.21 732.99,-82.21 800,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-144C728.98,-140.41 734.98,-82.41 800,-86"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-123C728.28,-126.86 730.72,-58.86 805.5,-55"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-125C730.28,-126.93 732.72,-58.93 805.5,-57"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-127C732.28,-127 734.72,-59 805.5,-59"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-129C734.28,-127.07 736.72,-59.07 805.5,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-131C736.28,-127.14 738.72,-59.14 805.5,-63"/>
|
||||
</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="M656,-107C720.09,-110.4 728,-58.4 800,-55"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-109C722.07,-110.7 729.98,-58.7 800,-57"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M656,-111C724.05,-111 731.95,-59 800,-59"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-113C726.02,-111.3 733.93,-59.3 800,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-115C728,-111.6 735.91,-59.6 800,-63"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-97C727.9,-100.81 731.1,-34.81 805.5,-31"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-99C729.9,-100.9 733.1,-34.9 805.5,-33"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-101C731.9,-101 735.1,-35 805.5,-35"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-103C733.9,-101.1 737.1,-35.1 805.5,-37"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-105C735.9,-101.19 739.1,-35.19 805.5,-39"/>
|
||||
</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="M656,-78C742.12,-82.69 721.76,-198.69 800,-194"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M656,-80C740.15,-82.35 719.79,-198.35 800,-196"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M656,-82C738.18,-82 717.82,-198 800,-198"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M656,-84C736.21,-81.65 715.85,-197.65 800,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-86C734.24,-81.31 713.88,-197.31 800,-202"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-71C744.41,-75.53 730.51,-179.53 805.5,-175"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-73C742.43,-75.26 728.53,-179.26 805.5,-177"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-75C740.45,-75 726.55,-179 805.5,-179"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-77C738.47,-74.74 724.57,-178.74 805.5,-181"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-79C736.49,-74.47 722.59,-178.47 805.5,-183"/>
|
||||
</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="M656,-49C737.39,-53.44 726.56,-151.44 800,-147"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-51C735.4,-53.22 724.57,-151.22 800,-149"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M656,-53C733.42,-53 722.58,-151 800,-151"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-55C731.43,-52.78 720.6,-150.78 800,-153"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-57C729.44,-52.56 718.61,-150.56 800,-155"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-45C739.15,-49.16 735.85,-131.16 805.5,-127"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-47C737.15,-49.08 733.85,-131.08 805.5,-129"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-49C735.15,-49 731.85,-131 805.5,-131"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-51C733.15,-48.92 729.85,-130.92 805.5,-133"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-53C731.15,-48.84 727.85,-130.84 805.5,-135"/>
|
||||
</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="M656,-20C738.91,-24.53 725.02,-128.53 800,-124"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M656,-22C736.93,-24.26 723.04,-128.26 800,-126"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M656,-24C734.95,-24 721.05,-128 800,-128"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M656,-26C732.96,-23.74 719.07,-127.74 800,-130"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-28C730.98,-23.47 717.09,-127.47 800,-132"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-19C739.59,-23.2 735.41,-107.2 805.5,-103"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-21C737.59,-23.1 733.41,-107.1 805.5,-105"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-23C735.59,-23 731.41,-107 805.5,-107"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-25C733.59,-22.9 729.41,-106.9 805.5,-109"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-27C731.59,-22.8 727.41,-106.8 805.5,-111"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
@ -366,26 +417,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: 144 KiB After Width: | Height: | Size: 108 KiB |
573
examples/ex10.svg
generated
@ -1,327 +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 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1097pt" height="324pt"
|
||||
viewBox="0.00 0.00 1097.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="none" points="-4,4 -4,-320 1093,-320 1093,4 -4,4"/>
|
||||
<svg width="1115pt" height="305pt"
|
||||
viewBox="0.00 0.00 1115.00 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 1111,-301 1111,4 -4,4"/>
|
||||
<!-- X1 -->
|
||||
<g id="node1" class="node">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="289,-264 0,-264 0,-34 289,-34 289,-264"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-241 0.5,-264 289.5,-264 289.5,-241 0.5,-241"/>
|
||||
<text text-anchor="start" x="136.5" y="-248.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-218 0.5,-241 211.5,-241 211.5,-218 0.5,-218"/>
|
||||
<text text-anchor="start" x="4.5" y="-225.8" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="211.5,-218 211.5,-241 250.5,-241 250.5,-218 211.5,-218"/>
|
||||
<text text-anchor="start" x="215.5" y="-225.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="250.5,-218 250.5,-241 289.5,-241 289.5,-218 250.5,-218"/>
|
||||
<text text-anchor="start" x="254.5" y="-225.8" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-195 0.5,-218 155.5,-218 155.5,-195 0.5,-195"/>
|
||||
<text text-anchor="start" x="64" y="-202.8" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-195 155.5,-218 289.5,-218 289.5,-195 155.5,-195"/>
|
||||
<text text-anchor="start" x="218.5" y="-202.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-172 0.5,-195 155.5,-195 155.5,-172 0.5,-172"/>
|
||||
<text text-anchor="start" x="66" y="-179.8" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-172 155.5,-195 289.5,-195 289.5,-172 155.5,-172"/>
|
||||
<text text-anchor="start" x="218.5" y="-179.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-149 0.5,-172 155.5,-172 155.5,-149 0.5,-149"/>
|
||||
<text text-anchor="start" x="64" y="-156.8" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-149 155.5,-172 289.5,-172 289.5,-149 155.5,-149"/>
|
||||
<text text-anchor="start" x="218.5" y="-156.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-126 0.5,-149 155.5,-149 155.5,-126 0.5,-126"/>
|
||||
<text text-anchor="start" x="64" y="-133.8" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-126 155.5,-149 289.5,-149 289.5,-126 155.5,-126"/>
|
||||
<text text-anchor="start" x="218.5" y="-133.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-103 0.5,-126 155.5,-126 155.5,-103 0.5,-103"/>
|
||||
<text text-anchor="start" x="65.5" y="-110.8" font-family="arial" font-size="14.00">DC-</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-103 155.5,-126 289.5,-126 289.5,-103 155.5,-103"/>
|
||||
<text text-anchor="start" x="218.5" y="-110.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-80 0.5,-103 155.5,-103 155.5,-80 0.5,-80"/>
|
||||
<text text-anchor="start" x="66" y="-87.8" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-80 155.5,-103 289.5,-103 289.5,-80 155.5,-80"/>
|
||||
<text text-anchor="start" x="218.5" y="-87.8" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-57 0.5,-80 155.5,-80 155.5,-57 0.5,-57"/>
|
||||
<text text-anchor="start" x="64" y="-64.8" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-57 155.5,-80 289.5,-80 289.5,-57 155.5,-57"/>
|
||||
<text text-anchor="start" x="218.5" y="-64.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-34 0.5,-57 155.5,-57 155.5,-34 0.5,-34"/>
|
||||
<text text-anchor="start" x="65.5" y="-41.8" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="155.5,-34 155.5,-57 289.5,-57 289.5,-34 155.5,-34"/>
|
||||
<text text-anchor="start" x="218.5" y="-41.8" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="301.5,-259 0,-259 0,-18 301.5,-18 301.5,-259"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0,-18 0,-259 301.5,-259 301.5,-18 0,-18"/>
|
||||
<polygon fill="none" stroke="black" points="0,-234.5 0,-259 301.5,-259 301.5,-234.5 0,-234.5"/>
|
||||
<text text-anchor="start" x="141.75" y="-241.7" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-210 0,-234.5 223.25,-234.5 223.25,-210 0,-210"/>
|
||||
<text text-anchor="start" x="4" y="-217.2" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="223.25,-210 223.25,-234.5 262,-234.5 262,-210 223.25,-210"/>
|
||||
<text text-anchor="start" x="227.25" y="-217.2" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="262,-210 262,-234.5 301.5,-234.5 301.5,-210 262,-210"/>
|
||||
<text text-anchor="start" x="266" y="-217.2" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0,-186 0,-210 161.25,-210 161.25,-186 0,-186"/>
|
||||
<text text-anchor="start" x="66.38" y="-192.7" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-186 161.25,-210 301.5,-210 301.5,-186 161.25,-186"/>
|
||||
<text text-anchor="start" x="227.25" y="-192.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0,-162 0,-186 161.25,-186 161.25,-162 0,-162"/>
|
||||
<text text-anchor="start" x="68.25" y="-168.7" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-162 161.25,-186 301.5,-186 301.5,-162 161.25,-162"/>
|
||||
<text text-anchor="start" x="227.25" y="-168.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0,-138 0,-162 161.25,-162 161.25,-138 0,-138"/>
|
||||
<text text-anchor="start" x="66.38" y="-144.7" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-138 161.25,-162 301.5,-162 301.5,-138 161.25,-138"/>
|
||||
<text text-anchor="start" x="227.25" y="-144.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0,-114 0,-138 161.25,-138 161.25,-114 0,-114"/>
|
||||
<text text-anchor="start" x="66" y="-120.7" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-114 161.25,-138 301.5,-138 301.5,-114 161.25,-114"/>
|
||||
<text text-anchor="start" x="227.25" y="-120.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="0,-90 0,-114 161.25,-114 161.25,-90 0,-90"/>
|
||||
<text text-anchor="start" x="67.88" y="-96.7" font-family="arial" font-size="14.00">DC-</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-90 161.25,-114 301.5,-114 301.5,-90 161.25,-90"/>
|
||||
<text text-anchor="start" x="227.25" y="-96.7" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="0,-66 0,-90 161.25,-90 161.25,-66 0,-66"/>
|
||||
<text text-anchor="start" x="68.25" y="-72.7" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-66 161.25,-90 301.5,-90 301.5,-66 161.25,-66"/>
|
||||
<text text-anchor="start" x="227.25" y="-72.7" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="0,-42 0,-66 161.25,-66 161.25,-42 0,-42"/>
|
||||
<text text-anchor="start" x="66" y="-48.7" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-42 161.25,-66 301.5,-66 301.5,-42 161.25,-42"/>
|
||||
<text text-anchor="start" x="227.25" y="-48.7" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="0,-18 0,-42 161.25,-42 161.25,-18 0,-18"/>
|
||||
<text text-anchor="start" x="67.88" y="-24.7" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="161.25,-18 161.25,-42 301.5,-42 301.5,-18 161.25,-18"/>
|
||||
<text text-anchor="start" x="227.25" y="-24.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="656,-316 433,-316 433,0 656,0 656,-316"/>
|
||||
<polygon fill="none" stroke="black" points="433.5,-293 433.5,-316 656.5,-316 656.5,-293 433.5,-293"/>
|
||||
<text text-anchor="start" x="534" y="-300.8" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="433.5,-270 433.5,-293 498.5,-293 498.5,-270 433.5,-270"/>
|
||||
<text text-anchor="start" x="445" y="-277.8" font-family="arial" font-size="14.00">CAT5e</text>
|
||||
<polygon fill="none" stroke="black" points="498.5,-270 498.5,-293 536.5,-293 536.5,-270 498.5,-270"/>
|
||||
<text text-anchor="start" x="510" y="-277.8" font-family="arial" font-size="14.00">8x</text>
|
||||
<polygon fill="none" stroke="black" points="536.5,-270 536.5,-293 610.5,-293 610.5,-270 536.5,-270"/>
|
||||
<text text-anchor="start" x="547.5" y="-277.8" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="610.5,-270 610.5,-293 656.5,-293 656.5,-270 610.5,-270"/>
|
||||
<text text-anchor="start" x="621.5" y="-277.8" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="463.5" y="-256.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="436" y="-237.8" font-family="arial" font-size="14.00">X1:1:DA+</text>
|
||||
<text text-anchor="start" x="500" y="-237.8" font-family="arial" font-size="14.00">     1:WHGN    </text>
|
||||
<text text-anchor="start" x="595" y="-237.8" font-family="arial" font-size="14.00">X2:3:DA+</text>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-230 433.5,-232 656.5,-232 656.5,-230 433.5,-230"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="433.5,-228 433.5,-230 656.5,-230 656.5,-228 433.5,-228"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="433.5,-226 433.5,-228 656.5,-228 656.5,-226 433.5,-226"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="433.5,-224 433.5,-226 656.5,-226 656.5,-224 433.5,-224"/>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-222 433.5,-224 656.5,-224 656.5,-222 433.5,-222"/>
|
||||
<text text-anchor="start" x="438" y="-208.8" font-family="arial" font-size="14.00">X1:2:DA-</text>
|
||||
<text text-anchor="start" x="511.5" y="-208.8" font-family="arial" font-size="14.00">     2:GN    </text>
|
||||
<text text-anchor="start" x="597" y="-208.8" font-family="arial" font-size="14.00">X2:6:DA-</text>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-201 433.5,-203 656.5,-203 656.5,-201 433.5,-201"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="433.5,-199 433.5,-201 656.5,-201 656.5,-199 433.5,-199"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="433.5,-197 433.5,-199 656.5,-199 656.5,-197 433.5,-197"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="433.5,-195 433.5,-197 656.5,-197 656.5,-195 433.5,-195"/>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-193 433.5,-195 656.5,-195 656.5,-193 433.5,-193"/>
|
||||
<text text-anchor="start" x="436" y="-179.8" font-family="arial" font-size="14.00">X1:3:DB+</text>
|
||||
<text text-anchor="start" x="499.5" y="-179.8" font-family="arial" font-size="14.00">     3:WHOG    </text>
|
||||
<text text-anchor="start" x="595" y="-179.8" font-family="arial" font-size="14.00">X2:1:DB+</text>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-172 433.5,-174 656.5,-174 656.5,-172 433.5,-172"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="433.5,-170 433.5,-172 656.5,-172 656.5,-170 433.5,-170"/>
|
||||
<polygon fill="#ff8000" stroke="none" points="433.5,-168 433.5,-170 656.5,-170 656.5,-168 433.5,-168"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="433.5,-166 433.5,-168 656.5,-168 656.5,-166 433.5,-166"/>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-164 433.5,-166 656.5,-166 656.5,-164 433.5,-164"/>
|
||||
<text text-anchor="start" x="435.5" y="-150.8" font-family="arial" font-size="14.00">X1:4:DC+</text>
|
||||
<text text-anchor="start" x="513" y="-150.8" font-family="arial" font-size="14.00">     4:BU    </text>
|
||||
<text text-anchor="start" x="594.5" y="-150.8" font-family="arial" font-size="14.00">X2:7:DC+</text>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-143 433.5,-145 656.5,-145 656.5,-143 433.5,-143"/>
|
||||
<polygon fill="#0066ff" stroke="none" points="433.5,-141 433.5,-143 656.5,-143 656.5,-141 433.5,-141"/>
|
||||
<polygon fill="#0066ff" stroke="none" points="433.5,-139 433.5,-141 656.5,-141 656.5,-139 433.5,-139"/>
|
||||
<polygon fill="#0066ff" stroke="none" points="433.5,-137 433.5,-139 656.5,-139 656.5,-137 433.5,-137"/>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-135 433.5,-137 656.5,-137 656.5,-135 433.5,-135"/>
|
||||
<text text-anchor="start" x="437.5" y="-121.8" font-family="arial" font-size="14.00">X1:5:DC-</text>
|
||||
<text text-anchor="start" x="501" y="-121.8" font-family="arial" font-size="14.00">     5:WHBU    </text>
|
||||
<text text-anchor="start" x="596.5" y="-121.8" font-family="arial" font-size="14.00">X2:8:DC-</text>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-114 433.5,-116 656.5,-116 656.5,-114 433.5,-114"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="433.5,-112 433.5,-114 656.5,-114 656.5,-112 433.5,-112"/>
|
||||
<polygon fill="#0066ff" stroke="none" points="433.5,-110 433.5,-112 656.5,-112 656.5,-110 433.5,-110"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="433.5,-108 433.5,-110 656.5,-110 656.5,-108 433.5,-108"/>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-106 433.5,-108 656.5,-108 656.5,-106 433.5,-106"/>
|
||||
<text text-anchor="start" x="438" y="-92.8" font-family="arial" font-size="14.00">X1:6:DB-</text>
|
||||
<text text-anchor="start" x="511" y="-92.8" font-family="arial" font-size="14.00">     6:OG    </text>
|
||||
<text text-anchor="start" x="597" y="-92.8" font-family="arial" font-size="14.00">X2:2:DB-</text>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-85 433.5,-87 656.5,-87 656.5,-85 433.5,-85"/>
|
||||
<polygon fill="#ff8000" stroke="none" points="433.5,-83 433.5,-85 656.5,-85 656.5,-83 433.5,-83"/>
|
||||
<polygon fill="#ff8000" stroke="none" points="433.5,-81 433.5,-83 656.5,-83 656.5,-81 433.5,-81"/>
|
||||
<polygon fill="#ff8000" stroke="none" points="433.5,-79 433.5,-81 656.5,-81 656.5,-79 433.5,-79"/>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-77 433.5,-79 656.5,-79 656.5,-77 433.5,-77"/>
|
||||
<text text-anchor="start" x="435.5" y="-63.8" font-family="arial" font-size="14.00">X1:7:DD+</text>
|
||||
<text text-anchor="start" x="501" y="-63.8" font-family="arial" font-size="14.00">     7:WHBN    </text>
|
||||
<text text-anchor="start" x="594.5" y="-63.8" font-family="arial" font-size="14.00">X2:4:DD+</text>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-56 433.5,-58 656.5,-58 656.5,-56 433.5,-56"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="433.5,-54 433.5,-56 656.5,-56 656.5,-54 433.5,-54"/>
|
||||
<polygon fill="#895956" stroke="none" points="433.5,-52 433.5,-54 656.5,-54 656.5,-52 433.5,-52"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="433.5,-50 433.5,-52 656.5,-52 656.5,-50 433.5,-50"/>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-48 433.5,-50 656.5,-50 656.5,-48 433.5,-48"/>
|
||||
<text text-anchor="start" x="437.5" y="-34.8" font-family="arial" font-size="14.00">X1:8:DD-</text>
|
||||
<text text-anchor="start" x="513" y="-34.8" font-family="arial" font-size="14.00">     8:BN    </text>
|
||||
<text text-anchor="start" x="596.5" y="-34.8" font-family="arial" font-size="14.00">X2:5:DD-</text>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-27 433.5,-29 656.5,-29 656.5,-27 433.5,-27"/>
|
||||
<polygon fill="#895956" stroke="none" points="433.5,-25 433.5,-27 656.5,-27 656.5,-25 433.5,-25"/>
|
||||
<polygon fill="#895956" stroke="none" points="433.5,-23 433.5,-25 656.5,-25 656.5,-23 433.5,-23"/>
|
||||
<polygon fill="#895956" stroke="none" points="433.5,-21 433.5,-23 656.5,-23 656.5,-21 433.5,-21"/>
|
||||
<polygon fill="#000000" stroke="none" points="433.5,-19 433.5,-21 656.5,-21 656.5,-19 433.5,-19"/>
|
||||
<text text-anchor="start" x="463.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
|
||||
<polygon fill="#ffffff" stroke="black" points="661.5,-297 445.5,-297 445.5,0 661.5,0 661.5,-297"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="445.5,0 445.5,-297 661.5,-297 661.5,0 445.5,0"/>
|
||||
<polygon fill="none" stroke="black" points="445.5,-272.5 445.5,-297 661.5,-297 661.5,-272.5 445.5,-272.5"/>
|
||||
<text text-anchor="start" x="542.25" y="-279.7" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="445.5,-248 445.5,-272.5 510.19,-272.5 510.19,-248 445.5,-248"/>
|
||||
<text text-anchor="start" x="454.97" y="-255.2" font-family="arial" font-size="14.00">CAT5e</text>
|
||||
<polygon fill="none" stroke="black" points="510.19,-248 510.19,-272.5 544.12,-272.5 544.12,-248 510.19,-248"/>
|
||||
<text text-anchor="start" x="519.66" y="-255.2" font-family="arial" font-size="14.00">8x</text>
|
||||
<polygon fill="none" stroke="black" points="544.12,-248 544.12,-272.5 618.56,-272.5 618.56,-248 544.12,-248"/>
|
||||
<text text-anchor="start" x="553.59" y="-255.2" font-family="arial" font-size="14.00">24 AWG</text>
|
||||
<polygon fill="none" stroke="black" points="618.56,-248 618.56,-272.5 661.5,-272.5 661.5,-248 618.56,-248"/>
|
||||
<text text-anchor="start" x="628.03" y="-255.2" font-family="arial" font-size="14.00">1 m</text>
|
||||
<text text-anchor="start" x="478.62" y="-232.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="447.5" y="-212.7" font-family="arial" font-size="14.00"> X1:1:DA+</text>
|
||||
<text text-anchor="start" x="517.12" y="-212.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="525" y="-212.7" font-family="arial" font-size="14.00">1:WHGN</text>
|
||||
<text text-anchor="start" x="586.12" y="-212.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="593.5" y="-212.7" font-family="arial" font-size="14.00">X2:3:DA+ </text>
|
||||
<text text-anchor="start" x="447.5" y="-186.7" font-family="arial" font-size="14.00"> X1:2:DA-</text>
|
||||
<text text-anchor="start" x="517.12" y="-186.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="537" y="-186.7" font-family="arial" font-size="14.00">2:GN</text>
|
||||
<text text-anchor="start" x="586.12" y="-186.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="597.25" y="-186.7" font-family="arial" font-size="14.00">X2:6:DA- </text>
|
||||
<text text-anchor="start" x="447.5" y="-160.7" font-family="arial" font-size="14.00"> X1:3:DB+</text>
|
||||
<text text-anchor="start" x="517.12" y="-160.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="524.25" y="-160.7" font-family="arial" font-size="14.00">3:WHOG</text>
|
||||
<text text-anchor="start" x="586.12" y="-160.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="593.5" y="-160.7" font-family="arial" font-size="14.00">X2:1:DB+ </text>
|
||||
<text text-anchor="start" x="447.12" y="-134.7" font-family="arial" font-size="14.00"> X1:4:DC+</text>
|
||||
<text text-anchor="start" x="517.12" y="-134.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="537.75" y="-134.7" font-family="arial" font-size="14.00">4:BU</text>
|
||||
<text text-anchor="start" x="586.12" y="-134.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="593.12" y="-134.7" font-family="arial" font-size="14.00">X2:7:DC+ </text>
|
||||
<text text-anchor="start" x="447.5" y="-108.7" font-family="arial" font-size="14.00"> X1:5:DC-</text>
|
||||
<text text-anchor="start" x="517.12" y="-108.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="525.75" y="-108.7" font-family="arial" font-size="14.00">5:WHBU</text>
|
||||
<text text-anchor="start" x="586.12" y="-108.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="596.5" y="-108.7" font-family="arial" font-size="14.00">X2:8:DC- </text>
|
||||
<text text-anchor="start" x="447.5" y="-82.7" font-family="arial" font-size="14.00"> X1:6:DB-</text>
|
||||
<text text-anchor="start" x="517.12" y="-82.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="536.25" y="-82.7" font-family="arial" font-size="14.00">6:OG</text>
|
||||
<text text-anchor="start" x="586.12" y="-82.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="597.25" y="-82.7" font-family="arial" font-size="14.00">X2:2:DB- </text>
|
||||
<text text-anchor="start" x="447.12" y="-56.7" font-family="arial" font-size="14.00"> X1:7:DD+</text>
|
||||
<text text-anchor="start" x="517.12" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="525.75" y="-56.7" font-family="arial" font-size="14.00">7:WHBN</text>
|
||||
<text text-anchor="start" x="586.12" y="-56.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="593.12" y="-56.7" font-family="arial" font-size="14.00">X2:4:DD+ </text>
|
||||
<text text-anchor="start" x="447.5" y="-30.7" font-family="arial" font-size="14.00"> X1:8:DD-</text>
|
||||
<text text-anchor="start" x="517.12" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="537.75" y="-30.7" font-family="arial" font-size="14.00">8:BN</text>
|
||||
<text text-anchor="start" x="586.12" y="-30.7" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="596.5" y="-30.7" font-family="arial" font-size="14.00">X2:5:DD- </text>
|
||||
<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="M289,-203C356.83,-204.62 371.6,-224.62 433,-223"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-205C355.22,-205.81 369.99,-225.81 433,-225"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-207C353.61,-207 368.39,-227 433,-227"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-209C352.01,-208.19 366.78,-228.19 433,-229"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-211C350.4,-209.38 365.17,-229.38 433,-231"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-194C367.2,-194.34 383.04,-201.34 445.5,-201"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-196C366.39,-196.17 382.23,-203.17 445.5,-203"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M301.5,-198C365.58,-198 381.42,-205 445.5,-205"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-200C364.77,-199.83 380.61,-206.83 445.5,-207"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-202C363.96,-201.66 379.8,-208.66 445.5,-209"/>
|
||||
</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,-170C366.74,-170.18 382.66,-175.18 445.5,-175"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M301.5,-172C366.14,-172.09 382.06,-177.09 445.5,-177"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M301.5,-174C365.54,-174 381.46,-179 445.5,-179"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M301.5,-176C364.94,-175.91 380.86,-180.91 445.5,-181"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-178C364.34,-177.82 380.26,-182.82 445.5,-183"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-180C355.99,-181.04 371.39,-195.04 433,-194"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-182C354.65,-182.52 370.04,-196.52 433,-196"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-184C353.3,-184 368.7,-198 433,-198"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-186C351.96,-185.48 367.35,-199.48 433,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-188C350.61,-186.96 366.01,-200.96 433,-202"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-146C366.25,-146.07 382.23,-149.07 445.5,-149"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-148C365.88,-148.03 381.86,-151.03 445.5,-151"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M301.5,-150C365.51,-150 381.49,-153 445.5,-153"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-152C365.14,-151.97 381.12,-154.97 445.5,-155"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-154C364.77,-153.93 380.75,-156.93 445.5,-157"/>
|
||||
</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,-122C365.75,-122.01 381.75,-123.01 445.5,-123"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M301.5,-124C365.62,-124 381.62,-125 445.5,-125"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M301.5,-126C365.5,-126 381.5,-127 445.5,-127"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M301.5,-128C365.38,-128 381.38,-129 445.5,-129"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-130C365.25,-129.99 381.25,-130.99 445.5,-131"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-157C354.91,-157.43 370.71,-165.43 433,-165"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-159C354,-159.22 369.8,-167.22 433,-167"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-161C353.1,-161 368.9,-169 433,-169"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-163C352.2,-162.78 368,-170.78 433,-171"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-165C351.29,-164.57 367.09,-172.57 433,-173"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-98C365.25,-98.01 381.25,-97.01 445.5,-97"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-100C365.38,-100 381.38,-99 445.5,-99"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M301.5,-102C365.5,-102 381.5,-101 445.5,-101"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-104C365.62,-104 381.62,-103 445.5,-103"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-106C365.75,-105.99 381.75,-104.99 445.5,-105"/>
|
||||
</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,-74C364.77,-74.07 380.75,-71.07 445.5,-71"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M301.5,-76C365.14,-76.03 381.12,-73.03 445.5,-73"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M301.5,-78C365.51,-78 381.49,-75 445.5,-75"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M301.5,-80C365.88,-79.97 381.86,-76.97 445.5,-77"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-82C366.25,-81.93 382.23,-78.93 445.5,-79"/>
|
||||
</g>
|
||||
<!-- X1--W1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-133C353.75,-133.07 369.72,-136.07 433,-136"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-135C353.38,-135.03 369.36,-138.03 433,-138"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-137C353.01,-137 368.99,-140 433,-140"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-139C352.64,-138.97 368.62,-141.97 433,-142"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-141C352.28,-140.93 368.25,-143.93 433,-144"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-50C364.34,-50.18 380.26,-45.18 445.5,-45"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-52C364.94,-52.09 380.86,-47.09 445.5,-47"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M301.5,-54C365.54,-54 381.46,-49 445.5,-49"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M301.5,-56C366.14,-55.91 382.06,-50.91 445.5,-51"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-58C366.74,-57.82 382.66,-52.82 445.5,-53"/>
|
||||
</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,-26C363.96,-26.34 379.8,-19.34 445.5,-19"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M301.5,-28C364.77,-28.17 380.61,-21.17 445.5,-21"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M301.5,-30C365.58,-30 381.42,-23 445.5,-23"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M301.5,-32C366.39,-31.83 382.23,-24.83 445.5,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M301.5,-34C367.2,-33.66 383.04,-26.66 445.5,-27"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-110C352.28,-110.07 368.25,-107.07 433,-107"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-112C352.64,-112.03 368.62,-109.03 433,-109"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-114C353.01,-114 368.99,-111 433,-111"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-116C353.38,-115.97 369.36,-112.97 433,-113"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-118C353.75,-117.93 369.72,-114.93 433,-115"/>
|
||||
<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="#ffffff" 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="#ffffff" 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>
|
||||
<!-- 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,-183C589.5,-183 517.5,-183 445.5,-183"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-181C589.5,-181 517.5,-181 445.5,-181"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-179C589.5,-179 517.5,-179 445.5,-179"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-177C589.5,-177 517.5,-177 445.5,-177"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-175C589.5,-175 517.5,-175 445.5,-175"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-87C351.14,-87.53 366.89,-78.53 433,-78"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-89C352.13,-89.26 367.88,-80.26 433,-80"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-91C353.12,-91 368.88,-82 433,-82"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-93C354.12,-92.74 369.87,-83.74 433,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-95C355.11,-94.47 370.86,-85.47 433,-86"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-157C589.5,-157 517.5,-157 445.5,-157"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-155C589.5,-155 517.5,-155 445.5,-155"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-153C589.5,-153 517.5,-153 445.5,-153"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-151C589.5,-151 517.5,-151 445.5,-151"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-149C589.5,-149 517.5,-149 445.5,-149"/>
|
||||
</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,-131C589.5,-131 517.5,-131 445.5,-131"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-129C589.5,-129 517.5,-129 445.5,-129"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-127C589.5,-127 517.5,-127 445.5,-127"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-125C589.5,-125 517.5,-125 445.5,-125"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-123C589.5,-123 517.5,-123 445.5,-123"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-64C350.55,-65.14 365.85,-50.14 433,-49"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-66C351.95,-66.57 367.25,-51.57 433,-51"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-68C353.35,-68 368.65,-53 433,-53"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-70C354.75,-69.43 370.05,-54.43 433,-55"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-72C356.15,-70.86 371.45,-55.86 433,-57"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-105C589.5,-105 517.5,-105 445.5,-105"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-103C589.5,-103 517.5,-103 445.5,-103"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-101C589.5,-101 517.5,-101 445.5,-101"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-99C589.5,-99 517.5,-99 445.5,-99"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-97C589.5,-97 517.5,-97 445.5,-97"/>
|
||||
</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,-79C589.5,-79 517.5,-79 445.5,-79"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-77C589.5,-77 517.5,-77 445.5,-77"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-75C589.5,-75 517.5,-75 445.5,-75"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-73C589.5,-73 517.5,-73 445.5,-73"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-71C589.5,-71 517.5,-71 445.5,-71"/>
|
||||
</g>
|
||||
<!-- W1--W1 -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>X1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-41C350.4,-42.71 365.04,-21.71 433,-20"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-43C352.04,-43.86 366.68,-22.86 433,-22"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-45C353.68,-45 368.32,-24 433,-24"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-47C355.32,-46.14 369.96,-25.14 433,-26"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-49C356.96,-47.29 371.6,-26.29 433,-28"/>
|
||||
<title>W1:e--W1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-53C589.5,-53 517.5,-53 445.5,-53"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-51C589.5,-51 517.5,-51 445.5,-51"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-49C589.5,-49 517.5,-49 445.5,-49"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-47C589.5,-47 517.5,-47 445.5,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-45C589.5,-45 517.5,-45 445.5,-45"/>
|
||||
</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,-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="#895956" stroke-width="2" d="M661.5,-21C589.5,-21 517.5,-21 445.5,-21"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-19C589.5,-19 517.5,-19 445.5,-19"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node2" class="node">
|
||||
<g id="node3" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="1089,-278 800,-278 800,-48 1089,-48 1089,-278"/>
|
||||
<polygon fill="none" stroke="black" points="800.5,-255 800.5,-278 1089.5,-278 1089.5,-255 800.5,-255"/>
|
||||
<text text-anchor="start" x="936.5" y="-262.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-232 800.5,-255 1011.5,-255 1011.5,-232 800.5,-232"/>
|
||||
<text text-anchor="start" x="804.5" y="-239.8" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="1011.5,-232 1011.5,-255 1050.5,-255 1050.5,-232 1011.5,-232"/>
|
||||
<text text-anchor="start" x="1015.5" y="-239.8" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="1050.5,-232 1050.5,-255 1089.5,-255 1089.5,-232 1050.5,-232"/>
|
||||
<text text-anchor="start" x="1054.5" y="-239.8" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-209 800.5,-232 935.5,-232 935.5,-209 800.5,-209"/>
|
||||
<text text-anchor="start" x="864" y="-216.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="935.5,-209 935.5,-232 1089.5,-232 1089.5,-209 935.5,-209"/>
|
||||
<text text-anchor="start" x="998.5" y="-216.8" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-186 800.5,-209 935.5,-209 935.5,-186 800.5,-186"/>
|
||||
<text text-anchor="start" x="864" y="-193.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="935.5,-186 935.5,-209 1089.5,-209 1089.5,-186 935.5,-186"/>
|
||||
<text text-anchor="start" x="1000.5" y="-193.8" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-163 800.5,-186 935.5,-186 935.5,-163 800.5,-163"/>
|
||||
<text text-anchor="start" x="864" y="-170.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="935.5,-163 935.5,-186 1089.5,-186 1089.5,-163 935.5,-163"/>
|
||||
<text text-anchor="start" x="998.5" y="-170.8" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-140 800.5,-163 935.5,-163 935.5,-140 800.5,-140"/>
|
||||
<text text-anchor="start" x="864" y="-147.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="935.5,-140 935.5,-163 1089.5,-163 1089.5,-140 935.5,-140"/>
|
||||
<text text-anchor="start" x="998.5" y="-147.8" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-117 800.5,-140 935.5,-140 935.5,-117 800.5,-117"/>
|
||||
<text text-anchor="start" x="864" y="-124.8" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="935.5,-117 935.5,-140 1089.5,-140 1089.5,-117 935.5,-117"/>
|
||||
<text text-anchor="start" x="1000" y="-124.8" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-94 800.5,-117 935.5,-117 935.5,-94 800.5,-94"/>
|
||||
<text text-anchor="start" x="864" y="-101.8" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="935.5,-94 935.5,-117 1089.5,-117 1089.5,-94 935.5,-94"/>
|
||||
<text text-anchor="start" x="1000.5" y="-101.8" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-71 800.5,-94 935.5,-94 935.5,-71 800.5,-71"/>
|
||||
<text text-anchor="start" x="864" y="-78.8" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="935.5,-71 935.5,-94 1089.5,-94 1089.5,-71 935.5,-71"/>
|
||||
<text text-anchor="start" x="998.5" y="-78.8" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="800.5,-48 800.5,-71 935.5,-71 935.5,-48 800.5,-48"/>
|
||||
<text text-anchor="start" x="864" y="-55.8" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="935.5,-48 935.5,-71 1089.5,-71 1089.5,-48 935.5,-48"/>
|
||||
<text text-anchor="start" x="1000" y="-55.8" font-family="arial" font-size="14.00">DC-</text>
|
||||
<polygon fill="#ffffff" stroke="black" points="1107,-264 805.5,-264 805.5,-23 1107,-23 1107,-264"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="805.5,-23 805.5,-264 1107,-264 1107,-23 805.5,-23"/>
|
||||
<polygon fill="none" stroke="black" points="805.5,-239.5 805.5,-264 1107,-264 1107,-239.5 805.5,-239.5"/>
|
||||
<text text-anchor="start" x="947.25" y="-246.7" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-215 805.5,-239.5 1028.75,-239.5 1028.75,-215 805.5,-215"/>
|
||||
<text text-anchor="start" x="809.5" y="-222.2" font-family="arial" font-size="14.00">Stewart Connector SS-37000-002</text>
|
||||
<polygon fill="none" stroke="black" points="1028.75,-215 1028.75,-239.5 1067.5,-239.5 1067.5,-215 1028.75,-215"/>
|
||||
<text text-anchor="start" x="1032.75" y="-222.2" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="1067.5,-215 1067.5,-239.5 1107,-239.5 1107,-215 1067.5,-215"/>
|
||||
<text text-anchor="start" x="1071.5" y="-222.2" font-family="arial" font-size="14.00">8-pin</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-191 805.5,-215 945.75,-215 945.75,-191 805.5,-191"/>
|
||||
<text text-anchor="start" x="871.5" y="-197.7" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-191 945.75,-215 1107,-215 1107,-191 945.75,-191"/>
|
||||
<text text-anchor="start" x="1012.12" y="-197.7" font-family="arial" font-size="14.00">DB+</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-167 805.5,-191 945.75,-191 945.75,-167 805.5,-167"/>
|
||||
<text text-anchor="start" x="871.5" y="-173.7" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-167 945.75,-191 1107,-191 1107,-167 945.75,-167"/>
|
||||
<text text-anchor="start" x="1014" y="-173.7" font-family="arial" font-size="14.00">DB-</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-143 805.5,-167 945.75,-167 945.75,-143 805.5,-143"/>
|
||||
<text text-anchor="start" x="871.5" y="-149.7" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-143 945.75,-167 1107,-167 1107,-143 945.75,-143"/>
|
||||
<text text-anchor="start" x="1012.12" y="-149.7" font-family="arial" font-size="14.00">DA+</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-119 805.5,-143 945.75,-143 945.75,-119 805.5,-119"/>
|
||||
<text text-anchor="start" x="871.5" y="-125.7" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-119 945.75,-143 1107,-143 1107,-119 945.75,-119"/>
|
||||
<text text-anchor="start" x="1011.75" y="-125.7" font-family="arial" font-size="14.00">DD+</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-95 805.5,-119 945.75,-119 945.75,-95 805.5,-95"/>
|
||||
<text text-anchor="start" x="871.5" y="-101.7" font-family="arial" font-size="14.00">5</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-95 945.75,-119 1107,-119 1107,-95 945.75,-95"/>
|
||||
<text text-anchor="start" x="1013.62" y="-101.7" font-family="arial" font-size="14.00">DD-</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-71 805.5,-95 945.75,-95 945.75,-71 805.5,-71"/>
|
||||
<text text-anchor="start" x="871.5" y="-77.7" font-family="arial" font-size="14.00">6</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-71 945.75,-95 1107,-95 1107,-71 945.75,-71"/>
|
||||
<text text-anchor="start" x="1014" y="-77.7" font-family="arial" font-size="14.00">DA-</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-47 805.5,-71 945.75,-71 945.75,-47 805.5,-47"/>
|
||||
<text text-anchor="start" x="871.5" y="-53.7" font-family="arial" font-size="14.00">7</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-47 945.75,-71 1107,-71 1107,-47 945.75,-47"/>
|
||||
<text text-anchor="start" x="1011.75" y="-53.7" font-family="arial" font-size="14.00">DC+</text>
|
||||
<polygon fill="none" stroke="black" points="805.5,-23 805.5,-47 945.75,-47 945.75,-23 805.5,-23"/>
|
||||
<text text-anchor="start" x="871.5" y="-29.7" font-family="arial" font-size="14.00">8</text>
|
||||
<polygon fill="none" stroke="black" points="945.75,-23 945.75,-47 1107,-47 1107,-23 945.75,-23"/>
|
||||
<text text-anchor="start" x="1013.62" y="-29.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="M656,-223C720.09,-226.4 728,-174.4 800,-171"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-225C722.07,-226.7 729.98,-174.7 800,-173"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M656,-227C724.05,-227 731.95,-175 800,-175"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-229C726.02,-227.3 733.93,-175.3 800,-177"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-231C728,-227.6 735.91,-175.6 800,-179"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-201C725.31,-204.33 733.81,-154.33 805.5,-151"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-203C727.28,-204.66 735.78,-154.66 805.5,-153"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-205C729.25,-205 737.75,-155 805.5,-155"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-207C731.22,-205.34 739.72,-155.34 805.5,-157"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-209C733.19,-205.67 741.69,-155.67 805.5,-159"/>
|
||||
</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="M656,-194C728.2,-198.36 719.83,-105.36 800,-101"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M656,-196C730.19,-198.18 721.82,-105.18 800,-103"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M656,-198C732.19,-198 723.81,-105 800,-105"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M656,-200C734.18,-197.82 725.81,-104.82 800,-107"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-202C736.17,-197.64 727.8,-104.64 800,-109"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-175C734.44,-179.41 724.6,-83.41 805.5,-79"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-177C736.43,-179.2 726.59,-83.2 805.5,-81"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-179C738.42,-179 728.58,-83 805.5,-83"/>
|
||||
<path fill="none" stroke="#00aa00" stroke-width="2" d="M661.5,-181C740.41,-178.8 730.57,-82.8 805.5,-85"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-183C742.4,-178.59 732.56,-82.59 805.5,-87"/>
|
||||
</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="M656,-165C728,-168.4 735.91,-220.4 800,-217"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-167C726.02,-168.7 733.93,-220.7 800,-219"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M656,-169C724.05,-169 731.95,-221 800,-221"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-171C722.07,-169.3 729.98,-221.3 800,-223"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-173C720.09,-169.6 728,-221.6 800,-225"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-149C733.19,-152.33 741.69,-202.33 805.5,-199"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-151C731.22,-152.66 739.72,-202.66 805.5,-201"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-153C729.25,-153 737.75,-203 805.5,-203"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-155C727.28,-153.34 735.78,-203.34 805.5,-205"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-157C725.31,-153.67 733.81,-203.67 805.5,-207"/>
|
||||
</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="M656,-136C721.02,-139.59 727.02,-81.59 800,-78"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M656,-138C723.01,-139.79 729.01,-81.79 800,-80"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M656,-140C725,-140 731,-82 800,-82"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M656,-142C726.99,-140.21 732.99,-82.21 800,-84"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-144C728.98,-140.41 734.98,-82.41 800,-86"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-123C728.28,-126.86 730.72,-58.86 805.5,-55"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-125C730.28,-126.93 732.72,-58.93 805.5,-57"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-127C732.28,-127 734.72,-59 805.5,-59"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-129C734.28,-127.07 736.72,-59.07 805.5,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-131C736.28,-127.14 738.72,-59.14 805.5,-63"/>
|
||||
</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="M656,-107C720.09,-110.4 728,-58.4 800,-55"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-109C722.07,-110.7 729.98,-58.7 800,-57"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M656,-111C724.05,-111 731.95,-59 800,-59"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-113C726.02,-111.3 733.93,-59.3 800,-61"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-115C728,-111.6 735.91,-59.6 800,-63"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-97C727.9,-100.81 731.1,-34.81 805.5,-31"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-99C729.9,-100.9 733.1,-34.9 805.5,-33"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M661.5,-101C731.9,-101 735.1,-35 805.5,-35"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-103C733.9,-101.1 737.1,-35.1 805.5,-37"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-105C735.9,-101.19 739.1,-35.19 805.5,-39"/>
|
||||
</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="M656,-78C742.12,-82.69 721.76,-198.69 800,-194"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M656,-80C740.15,-82.35 719.79,-198.35 800,-196"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M656,-82C738.18,-82 717.82,-198 800,-198"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M656,-84C736.21,-81.65 715.85,-197.65 800,-200"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-86C734.24,-81.31 713.88,-197.31 800,-202"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-71C744.41,-75.53 730.51,-179.53 805.5,-175"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-73C742.43,-75.26 728.53,-179.26 805.5,-177"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-75C740.45,-75 726.55,-179 805.5,-179"/>
|
||||
<path fill="none" stroke="#ff8000" stroke-width="2" d="M661.5,-77C738.47,-74.74 724.57,-178.74 805.5,-181"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-79C736.49,-74.47 722.59,-178.47 805.5,-183"/>
|
||||
</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="M656,-49C737.39,-53.44 726.56,-151.44 800,-147"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-51C735.4,-53.22 724.57,-151.22 800,-149"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M656,-53C733.42,-53 722.58,-151 800,-151"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-55C731.43,-52.78 720.6,-150.78 800,-153"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-57C729.44,-52.56 718.61,-150.56 800,-155"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-45C739.15,-49.16 735.85,-131.16 805.5,-127"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-47C737.15,-49.08 733.85,-131.08 805.5,-129"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-49C735.15,-49 731.85,-131 805.5,-131"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M661.5,-51C733.15,-48.92 729.85,-130.92 805.5,-133"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-53C731.15,-48.84 727.85,-130.84 805.5,-135"/>
|
||||
</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="M656,-20C738.91,-24.53 725.02,-128.53 800,-124"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M656,-22C736.93,-24.26 723.04,-128.26 800,-126"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M656,-24C734.95,-24 721.05,-128 800,-128"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M656,-26C732.96,-23.74 719.07,-127.74 800,-130"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-28C730.98,-23.47 717.09,-127.47 800,-132"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-19C739.59,-23.2 735.41,-107.2 805.5,-103"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-21C737.59,-23.1 733.41,-107.1 805.5,-105"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-23C735.59,-23 731.41,-107 805.5,-107"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M661.5,-25C733.59,-22.9 729.41,-106.9 805.5,-109"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M661.5,-27C731.59,-22.8 727.41,-106.8 805.5,-111"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 29 KiB |
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
8
examples/ex11.bom.tsv
generated
@ -1,4 +1,4 @@
|
||||
Id Description Qty Unit Designators
|
||||
1 Cable, 4 wires, BK 0 m W1
|
||||
2 Connector, Ferrule, GY 4
|
||||
3 Connector, Screw connector, male, 4 pins, GN 1 X1
|
||||
# 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
|
||||
|
||||
|
368
examples/ex11.gv
generated
@ -1,191 +1,211 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4
|
||||
// https://github.com/formatc1702/WireViz
|
||||
// Graph generated by WireViz 0.5-dev+refactor
|
||||
// https://github.com/wireviz/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]
|
||||
__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>
|
||||
AUTOGENERATED_F_1 [label=<
|
||||
<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]
|
||||
__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>
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_2 [label=<
|
||||
<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]
|
||||
__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>
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_3 [label=<
|
||||
<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]
|
||||
__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>
|
||||
> shape=box style=filled]
|
||||
AUTOGENERATED_F_4 [label=<
|
||||
<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]
|
||||
edge [color="#000000:#000000:#000000"]
|
||||
W1:w1:e -- __F_1:w
|
||||
edge [color="#000000:#ffffff:#000000"]
|
||||
W1:w2:e -- __F_2:w
|
||||
edge [color="#000000:#0066ff:#000000"]
|
||||
W1:w3:e -- __F_3:w
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
W1:w4:e -- __F_4:w
|
||||
> shape=box style=filled]
|
||||
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 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"></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"></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"></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"></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"]
|
||||
W1:w1:e -- AUTOGENERATED_F_1:w
|
||||
edge [color="#000000:#FFFFFF:#000000"]
|
||||
W1:w2:e -- AUTOGENERATED_F_2:w
|
||||
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: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]
|
||||
__F_1:e -- X1:p1l:w
|
||||
AUTOGENERATED_F_1:p1r:e -- X1:p1l:w
|
||||
edge [color="#000000" dir=forward style=dashed]
|
||||
__F_2:e -- X1:p2l:w
|
||||
AUTOGENERATED_F_2:p1r:e -- X1:p2l:w
|
||||
edge [color="#000000" dir=forward style=dashed]
|
||||
__F_3:e -- X1:p3l:w
|
||||
AUTOGENERATED_F_3:p1r:e -- X1:p3l:w
|
||||
edge [color="#000000" dir=forward style=dashed]
|
||||
__F_4:e -- X1:p4l:w
|
||||
AUTOGENERATED_F_4:p1r:e -- X1:p4l:w
|
||||
}
|
||||
|
||||
360
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 - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.5-dev+refactor - https://github.com/wireviz/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,210 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="694pt" height="215pt"
|
||||
viewBox="0.00 0.00 694.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="none" points="-4,4 -4,-210.5 690,-210.5 690,4 -4,4"/>
|
||||
<!-- __F_1 -->
|
||||
<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>__F_1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="317,-164 229,-164 229,-141 317,-141 317,-164"/>
|
||||
<polygon fill="none" stroke="black" points="229,-140.5 229,-163.5 280,-163.5 280,-140.5 229,-140.5"/>
|
||||
<text text-anchor="start" x="233" y="-148.3" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="280,-140.5 280,-163.5 309,-163.5 309,-140.5 280,-140.5"/>
|
||||
<text text-anchor="start" x="284" y="-148.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="none" points="309,-140.5 309,-163.5 317,-163.5 317,-140.5 309,-140.5"/>
|
||||
<polygon fill="none" stroke="black" points="309,-140.5 309,-163.5 317,-163.5 317,-140.5 309,-140.5"/>
|
||||
<title>AUTOGENERATED_F_1</title>
|
||||
<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">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="686,-174.5 461,-174.5 461,-36.5 686,-36.5 686,-174.5"/>
|
||||
<polygon fill="none" stroke="black" points="461.5,-151.5 461.5,-174.5 686.5,-174.5 686.5,-151.5 461.5,-151.5"/>
|
||||
<text text-anchor="start" x="565.5" y="-159.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="461.5,-128.5 461.5,-151.5 570.5,-151.5 570.5,-128.5 461.5,-128.5"/>
|
||||
<text text-anchor="start" x="465.5" y="-136.3" font-family="arial" font-size="14.00">Screw connector</text>
|
||||
<polygon fill="none" stroke="black" points="570.5,-128.5 570.5,-151.5 609.5,-151.5 609.5,-128.5 570.5,-128.5"/>
|
||||
<text text-anchor="start" x="574.5" y="-136.3" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="609.5,-128.5 609.5,-151.5 648.5,-151.5 648.5,-128.5 609.5,-128.5"/>
|
||||
<text text-anchor="start" x="613.5" y="-136.3" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="648.5,-128.5 648.5,-151.5 678.5,-151.5 678.5,-128.5 648.5,-128.5"/>
|
||||
<text text-anchor="start" x="652.5" y="-136.3" font-family="arial" font-size="14.00">GN</text>
|
||||
<polygon fill="#00ff00" stroke="none" points="678.5,-128.5 678.5,-151.5 686.5,-151.5 686.5,-128.5 678.5,-128.5"/>
|
||||
<polygon fill="none" stroke="black" points="678.5,-128.5 678.5,-151.5 686.5,-151.5 686.5,-128.5 678.5,-128.5"/>
|
||||
<polygon fill="none" stroke="black" points="461.5,-105.5 461.5,-128.5 573.5,-128.5 573.5,-105.5 461.5,-105.5"/>
|
||||
<text text-anchor="start" x="513.5" y="-113.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="573.5,-105.5 573.5,-128.5 686.5,-128.5 686.5,-105.5 573.5,-105.5"/>
|
||||
<text text-anchor="start" x="625" y="-113.3" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="461.5,-82.5 461.5,-105.5 573.5,-105.5 573.5,-82.5 461.5,-82.5"/>
|
||||
<text text-anchor="start" x="513.5" y="-90.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="573.5,-82.5 573.5,-105.5 686.5,-105.5 686.5,-82.5 573.5,-82.5"/>
|
||||
<text text-anchor="start" x="625" y="-90.3" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="461.5,-59.5 461.5,-82.5 573.5,-82.5 573.5,-59.5 461.5,-59.5"/>
|
||||
<text text-anchor="start" x="513.5" y="-67.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="573.5,-59.5 573.5,-82.5 686.5,-82.5 686.5,-59.5 573.5,-59.5"/>
|
||||
<text text-anchor="start" x="625" y="-67.3" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="461.5,-36.5 461.5,-59.5 573.5,-59.5 573.5,-36.5 461.5,-36.5"/>
|
||||
<text text-anchor="start" x="513.5" y="-44.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="573.5,-36.5 573.5,-59.5 686.5,-59.5 686.5,-36.5 573.5,-36.5"/>
|
||||
<text text-anchor="start" x="625" y="-44.3" font-family="arial" font-size="14.00">D</text>
|
||||
</g>
|
||||
<!-- __F_1--X1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>__F_1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M317,-152.5C378.88,-152.5 393.45,-121.61 449.6,-117.87"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="449.61,-121.37 459.49,-117.55 449.38,-114.37 449.61,-121.37"/>
|
||||
</g>
|
||||
<!-- __F_2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>__F_2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="317,-117 229,-117 229,-94 317,-94 317,-117"/>
|
||||
<polygon fill="none" stroke="black" points="229,-93.5 229,-116.5 280,-116.5 280,-93.5 229,-93.5"/>
|
||||
<text text-anchor="start" x="233" y="-101.3" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="280,-93.5 280,-116.5 309,-116.5 309,-93.5 280,-93.5"/>
|
||||
<text text-anchor="start" x="284" y="-101.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="none" points="309,-93.5 309,-116.5 317,-116.5 317,-93.5 309,-93.5"/>
|
||||
<polygon fill="none" stroke="black" points="309,-93.5 309,-116.5 317,-116.5 317,-93.5 309,-93.5"/>
|
||||
<title>X1</title>
|
||||
<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>
|
||||
<!-- __F_2--X1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>__F_2:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M317,-105.5C377.21,-105.5 394.64,-94.95 449.5,-93.63"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="449.53,-97.13 459.49,-93.52 449.45,-90.14 449.53,-97.13"/>
|
||||
<!-- AUTOGENERATED_F_1--X1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>AUTOGENERATED_F_1:e--X1:w</title>
|
||||
<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>
|
||||
<!-- __F_3 -->
|
||||
<!-- AUTOGENERATED_F_2 -->
|
||||
<g id="node3" class="node">
|
||||
<title>__F_3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="317,-70 229,-70 229,-47 317,-47 317,-70"/>
|
||||
<polygon fill="none" stroke="black" points="229,-46.5 229,-69.5 280,-69.5 280,-46.5 229,-46.5"/>
|
||||
<text text-anchor="start" x="233" y="-54.3" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="280,-46.5 280,-69.5 309,-69.5 309,-46.5 280,-46.5"/>
|
||||
<text text-anchor="start" x="284" y="-54.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="none" points="309,-46.5 309,-69.5 317,-69.5 317,-46.5 309,-46.5"/>
|
||||
<polygon fill="none" stroke="black" points="309,-46.5 309,-69.5 317,-69.5 317,-46.5 309,-46.5"/>
|
||||
<title>AUTOGENERATED_F_2</title>
|
||||
<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>
|
||||
<!-- __F_3--X1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>__F_3:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M317,-58.5C377.21,-58.5 394.64,-69.05 449.5,-70.37"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="449.45,-73.86 459.49,-70.48 449.53,-66.87 449.45,-73.86"/>
|
||||
<!-- AUTOGENERATED_F_2--X1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>AUTOGENERATED_F_2:e--X1:w</title>
|
||||
<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>
|
||||
<!-- __F_4 -->
|
||||
<!-- AUTOGENERATED_F_3 -->
|
||||
<g id="node4" class="node">
|
||||
<title>__F_4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="317,-23 229,-23 229,0 317,0 317,-23"/>
|
||||
<polygon fill="none" stroke="black" points="229,0.5 229,-22.5 280,-22.5 280,0.5 229,0.5"/>
|
||||
<text text-anchor="start" x="233" y="-7.3" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="280,0.5 280,-22.5 309,-22.5 309,0.5 280,0.5"/>
|
||||
<text text-anchor="start" x="284" y="-7.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="none" points="309,0.5 309,-22.5 317,-22.5 317,0.5 309,0.5"/>
|
||||
<polygon fill="none" stroke="black" points="309,0.5 309,-22.5 317,-22.5 317,0.5 309,0.5"/>
|
||||
<title>AUTOGENERATED_F_3</title>
|
||||
<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>
|
||||
<!-- __F_4--X1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>__F_4:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M317,-11.5C378.98,-11.5 393.37,-43.27 449.59,-47.12"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="449.38,-50.61 459.49,-47.45 449.61,-43.62 449.38,-50.61"/>
|
||||
<!-- AUTOGENERATED_F_3--X1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>AUTOGENERATED_F_3:e--X1:w</title>
|
||||
<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="node5" class="node">
|
||||
<title>AUTOGENERATED_F_4</title>
|
||||
<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="edge4" class="edge">
|
||||
<title>AUTOGENERATED_F_4:e--X1:w</title>
|
||||
<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="85,-206.5 0,-206.5 0,-22.5 85,-22.5 85,-206.5"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-183.5 0.5,-206.5 85.5,-206.5 85.5,-183.5 0.5,-183.5"/>
|
||||
<text text-anchor="start" x="32" 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 32.5,-183.5 32.5,-160.5 0.5,-160.5"/>
|
||||
<text text-anchor="start" x="9" y="-168.3" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="32.5,-160.5 32.5,-183.5 68.5,-183.5 68.5,-160.5 32.5,-160.5"/>
|
||||
<text text-anchor="start" x="41" y="-168.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="none" points="68.5,-160.5 68.5,-183.5 85.5,-183.5 85.5,-160.5 68.5,-160.5"/>
|
||||
<polygon fill="none" stroke="black" points="68.5,-160.5 68.5,-183.5 85.5,-183.5 85.5,-160.5 68.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="none" points="0.5,-120.5 0.5,-122.5 85.5,-122.5 85.5,-120.5 0.5,-120.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-118.5 0.5,-120.5 85.5,-120.5 85.5,-118.5 0.5,-118.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-116.5 0.5,-118.5 85.5,-118.5 85.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="none" points="0.5,-95.5 0.5,-97.5 85.5,-97.5 85.5,-95.5 0.5,-95.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0.5,-93.5 0.5,-95.5 85.5,-95.5 85.5,-93.5 0.5,-93.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-91.5 0.5,-93.5 85.5,-93.5 85.5,-91.5 0.5,-91.5"/>
|
||||
<text text-anchor="start" x="13" y="-78.3" font-family="arial" font-size="14.00">     3:BU    </text>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-70.5 0.5,-72.5 85.5,-72.5 85.5,-70.5 0.5,-70.5"/>
|
||||
<polygon fill="#0066ff" stroke="none" points="0.5,-68.5 0.5,-70.5 85.5,-70.5 85.5,-68.5 0.5,-68.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-66.5 0.5,-68.5 85.5,-68.5 85.5,-66.5 0.5,-66.5"/>
|
||||
<text text-anchor="start" x="13" y="-53.3" font-family="arial" font-size="14.00">     4:BN    </text>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-45.5 0.5,-47.5 85.5,-47.5 85.5,-45.5 0.5,-45.5"/>
|
||||
<polygon fill="#895956" stroke="none" points="0.5,-43.5 0.5,-45.5 85.5,-45.5 85.5,-43.5 0.5,-43.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-41.5 0.5,-43.5 85.5,-43.5 85.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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<text text-anchor="start" x="1.63" y="-27.45" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- W1--__F_1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>W1:e--__F_1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-117.5C152.53,-118.78 165.21,-151.78 229,-150.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-119.5C150.66,-119.5 163.34,-152.5 229,-152.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-121.5C148.79,-120.22 161.47,-153.22 229,-154.5"/>
|
||||
<!-- W1--AUTOGENERATED_F_1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_1:w</title>
|
||||
<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--__F_2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--__F_2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-92.5C150.34,-92.86 165.96,-103.86 229,-103.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M85,-94.5C149.19,-94.5 164.81,-105.5 229,-105.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-96.5C148.04,-96.14 163.66,-107.14 229,-107.5"/>
|
||||
<!-- W1--AUTOGENERATED_F_2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_2:w</title>
|
||||
<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--__F_3 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>W1:e--__F_3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-67.5C148.04,-67.86 163.66,-56.86 229,-56.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M85,-69.5C149.19,-69.5 164.81,-58.5 229,-58.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-71.5C150.34,-71.14 165.96,-60.14 229,-60.5"/>
|
||||
<!-- W1--AUTOGENERATED_F_3 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_3:w</title>
|
||||
<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--__F_4 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--__F_4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-42.5C148.79,-43.78 161.47,-10.78 229,-9.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M85,-44.5C150.66,-44.5 163.34,-11.5 229,-11.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-46.5C152.53,-45.22 165.21,-12.22 229,-13.5"/>
|
||||
<!-- W1--AUTOGENERATED_F_4 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_4:w</title>
|
||||
<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 +249,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 |
328
examples/ex11.svg
generated
@ -1,172 +1,210 @@
|
||||
<?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 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="694pt" height="215pt"
|
||||
viewBox="0.00 0.00 694.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="none" points="-4,4 -4,-210.5 690,-210.5 690,4 -4,4"/>
|
||||
<!-- __F_1 -->
|
||||
<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>__F_1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="317,-164 229,-164 229,-141 317,-141 317,-164"/>
|
||||
<polygon fill="none" stroke="black" points="229,-140.5 229,-163.5 280,-163.5 280,-140.5 229,-140.5"/>
|
||||
<text text-anchor="start" x="233" y="-148.3" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="280,-140.5 280,-163.5 309,-163.5 309,-140.5 280,-140.5"/>
|
||||
<text text-anchor="start" x="284" y="-148.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="none" points="309,-140.5 309,-163.5 317,-163.5 317,-140.5 309,-140.5"/>
|
||||
<polygon fill="none" stroke="black" points="309,-140.5 309,-163.5 317,-163.5 317,-140.5 309,-140.5"/>
|
||||
<title>AUTOGENERATED_F_1</title>
|
||||
<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">
|
||||
<title>X1</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="686,-174.5 461,-174.5 461,-36.5 686,-36.5 686,-174.5"/>
|
||||
<polygon fill="none" stroke="black" points="461.5,-151.5 461.5,-174.5 686.5,-174.5 686.5,-151.5 461.5,-151.5"/>
|
||||
<text text-anchor="start" x="565.5" y="-159.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="461.5,-128.5 461.5,-151.5 570.5,-151.5 570.5,-128.5 461.5,-128.5"/>
|
||||
<text text-anchor="start" x="465.5" y="-136.3" font-family="arial" font-size="14.00">Screw connector</text>
|
||||
<polygon fill="none" stroke="black" points="570.5,-128.5 570.5,-151.5 609.5,-151.5 609.5,-128.5 570.5,-128.5"/>
|
||||
<text text-anchor="start" x="574.5" y="-136.3" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="609.5,-128.5 609.5,-151.5 648.5,-151.5 648.5,-128.5 609.5,-128.5"/>
|
||||
<text text-anchor="start" x="613.5" y="-136.3" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="648.5,-128.5 648.5,-151.5 678.5,-151.5 678.5,-128.5 648.5,-128.5"/>
|
||||
<text text-anchor="start" x="652.5" y="-136.3" font-family="arial" font-size="14.00">GN</text>
|
||||
<polygon fill="#00ff00" stroke="none" points="678.5,-128.5 678.5,-151.5 686.5,-151.5 686.5,-128.5 678.5,-128.5"/>
|
||||
<polygon fill="none" stroke="black" points="678.5,-128.5 678.5,-151.5 686.5,-151.5 686.5,-128.5 678.5,-128.5"/>
|
||||
<polygon fill="none" stroke="black" points="461.5,-105.5 461.5,-128.5 573.5,-128.5 573.5,-105.5 461.5,-105.5"/>
|
||||
<text text-anchor="start" x="513.5" y="-113.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="573.5,-105.5 573.5,-128.5 686.5,-128.5 686.5,-105.5 573.5,-105.5"/>
|
||||
<text text-anchor="start" x="625" y="-113.3" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="461.5,-82.5 461.5,-105.5 573.5,-105.5 573.5,-82.5 461.5,-82.5"/>
|
||||
<text text-anchor="start" x="513.5" y="-90.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="573.5,-82.5 573.5,-105.5 686.5,-105.5 686.5,-82.5 573.5,-82.5"/>
|
||||
<text text-anchor="start" x="625" y="-90.3" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="461.5,-59.5 461.5,-82.5 573.5,-82.5 573.5,-59.5 461.5,-59.5"/>
|
||||
<text text-anchor="start" x="513.5" y="-67.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="573.5,-59.5 573.5,-82.5 686.5,-82.5 686.5,-59.5 573.5,-59.5"/>
|
||||
<text text-anchor="start" x="625" y="-67.3" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="461.5,-36.5 461.5,-59.5 573.5,-59.5 573.5,-36.5 461.5,-36.5"/>
|
||||
<text text-anchor="start" x="513.5" y="-44.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="573.5,-36.5 573.5,-59.5 686.5,-59.5 686.5,-36.5 573.5,-36.5"/>
|
||||
<text text-anchor="start" x="625" y="-44.3" font-family="arial" font-size="14.00">D</text>
|
||||
</g>
|
||||
<!-- __F_1--X1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>__F_1:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M317,-152.5C378.88,-152.5 393.45,-121.61 449.6,-117.87"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="449.61,-121.37 459.49,-117.55 449.38,-114.37 449.61,-121.37"/>
|
||||
</g>
|
||||
<!-- __F_2 -->
|
||||
<g id="node2" class="node">
|
||||
<title>__F_2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="317,-117 229,-117 229,-94 317,-94 317,-117"/>
|
||||
<polygon fill="none" stroke="black" points="229,-93.5 229,-116.5 280,-116.5 280,-93.5 229,-93.5"/>
|
||||
<text text-anchor="start" x="233" y="-101.3" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="280,-93.5 280,-116.5 309,-116.5 309,-93.5 280,-93.5"/>
|
||||
<text text-anchor="start" x="284" y="-101.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="none" points="309,-93.5 309,-116.5 317,-116.5 317,-93.5 309,-93.5"/>
|
||||
<polygon fill="none" stroke="black" points="309,-93.5 309,-116.5 317,-116.5 317,-93.5 309,-93.5"/>
|
||||
<title>X1</title>
|
||||
<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>
|
||||
<!-- __F_2--X1 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>__F_2:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M317,-105.5C377.21,-105.5 394.64,-94.95 449.5,-93.63"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="449.53,-97.13 459.49,-93.52 449.45,-90.14 449.53,-97.13"/>
|
||||
<!-- AUTOGENERATED_F_1--X1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>AUTOGENERATED_F_1:e--X1:w</title>
|
||||
<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>
|
||||
<!-- __F_3 -->
|
||||
<!-- AUTOGENERATED_F_2 -->
|
||||
<g id="node3" class="node">
|
||||
<title>__F_3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="317,-70 229,-70 229,-47 317,-47 317,-70"/>
|
||||
<polygon fill="none" stroke="black" points="229,-46.5 229,-69.5 280,-69.5 280,-46.5 229,-46.5"/>
|
||||
<text text-anchor="start" x="233" y="-54.3" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="280,-46.5 280,-69.5 309,-69.5 309,-46.5 280,-46.5"/>
|
||||
<text text-anchor="start" x="284" y="-54.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="none" points="309,-46.5 309,-69.5 317,-69.5 317,-46.5 309,-46.5"/>
|
||||
<polygon fill="none" stroke="black" points="309,-46.5 309,-69.5 317,-69.5 317,-46.5 309,-46.5"/>
|
||||
<title>AUTOGENERATED_F_2</title>
|
||||
<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>
|
||||
<!-- __F_3--X1 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>__F_3:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M317,-58.5C377.21,-58.5 394.64,-69.05 449.5,-70.37"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="449.45,-73.86 459.49,-70.48 449.53,-66.87 449.45,-73.86"/>
|
||||
<!-- AUTOGENERATED_F_2--X1 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>AUTOGENERATED_F_2:e--X1:w</title>
|
||||
<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>
|
||||
<!-- __F_4 -->
|
||||
<!-- AUTOGENERATED_F_3 -->
|
||||
<g id="node4" class="node">
|
||||
<title>__F_4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="317,-23 229,-23 229,0 317,0 317,-23"/>
|
||||
<polygon fill="none" stroke="black" points="229,0.5 229,-22.5 280,-22.5 280,0.5 229,0.5"/>
|
||||
<text text-anchor="start" x="233" y="-7.3" font-family="arial" font-size="14.00">Ferrule</text>
|
||||
<polygon fill="none" stroke="black" points="280,0.5 280,-22.5 309,-22.5 309,0.5 280,0.5"/>
|
||||
<text text-anchor="start" x="284" y="-7.3" font-family="arial" font-size="14.00">GY</text>
|
||||
<polygon fill="#999999" stroke="none" points="309,0.5 309,-22.5 317,-22.5 317,0.5 309,0.5"/>
|
||||
<polygon fill="none" stroke="black" points="309,0.5 309,-22.5 317,-22.5 317,0.5 309,0.5"/>
|
||||
<title>AUTOGENERATED_F_3</title>
|
||||
<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>
|
||||
<!-- __F_4--X1 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>__F_4:e--X1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M317,-11.5C378.98,-11.5 393.37,-43.27 449.59,-47.12"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="449.38,-50.61 459.49,-47.45 449.61,-43.62 449.38,-50.61"/>
|
||||
<!-- AUTOGENERATED_F_3--X1 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>AUTOGENERATED_F_3:e--X1:w</title>
|
||||
<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="node5" class="node">
|
||||
<title>AUTOGENERATED_F_4</title>
|
||||
<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="edge4" class="edge">
|
||||
<title>AUTOGENERATED_F_4:e--X1:w</title>
|
||||
<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="85,-206.5 0,-206.5 0,-22.5 85,-22.5 85,-206.5"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-183.5 0.5,-206.5 85.5,-206.5 85.5,-183.5 0.5,-183.5"/>
|
||||
<text text-anchor="start" x="32" 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 32.5,-183.5 32.5,-160.5 0.5,-160.5"/>
|
||||
<text text-anchor="start" x="9" y="-168.3" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="32.5,-160.5 32.5,-183.5 68.5,-183.5 68.5,-160.5 32.5,-160.5"/>
|
||||
<text text-anchor="start" x="41" y="-168.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="none" points="68.5,-160.5 68.5,-183.5 85.5,-183.5 85.5,-160.5 68.5,-160.5"/>
|
||||
<polygon fill="none" stroke="black" points="68.5,-160.5 68.5,-183.5 85.5,-183.5 85.5,-160.5 68.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="none" points="0.5,-120.5 0.5,-122.5 85.5,-122.5 85.5,-120.5 0.5,-120.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-118.5 0.5,-120.5 85.5,-120.5 85.5,-118.5 0.5,-118.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-116.5 0.5,-118.5 85.5,-118.5 85.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="none" points="0.5,-95.5 0.5,-97.5 85.5,-97.5 85.5,-95.5 0.5,-95.5"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="0.5,-93.5 0.5,-95.5 85.5,-95.5 85.5,-93.5 0.5,-93.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-91.5 0.5,-93.5 85.5,-93.5 85.5,-91.5 0.5,-91.5"/>
|
||||
<text text-anchor="start" x="13" y="-78.3" font-family="arial" font-size="14.00">     3:BU    </text>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-70.5 0.5,-72.5 85.5,-72.5 85.5,-70.5 0.5,-70.5"/>
|
||||
<polygon fill="#0066ff" stroke="none" points="0.5,-68.5 0.5,-70.5 85.5,-70.5 85.5,-68.5 0.5,-68.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-66.5 0.5,-68.5 85.5,-68.5 85.5,-66.5 0.5,-66.5"/>
|
||||
<text text-anchor="start" x="13" y="-53.3" font-family="arial" font-size="14.00">     4:BN    </text>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-45.5 0.5,-47.5 85.5,-47.5 85.5,-45.5 0.5,-45.5"/>
|
||||
<polygon fill="#895956" stroke="none" points="0.5,-43.5 0.5,-45.5 85.5,-45.5 85.5,-43.5 0.5,-43.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-41.5 0.5,-43.5 85.5,-43.5 85.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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<text text-anchor="start" x="1.63" y="-27.45" font-family="arial" font-size="14.00"> </text>
|
||||
</g>
|
||||
<!-- W1--__F_1 -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>W1:e--__F_1:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-117.5C152.53,-118.78 165.21,-151.78 229,-150.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-119.5C150.66,-119.5 163.34,-152.5 229,-152.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-121.5C148.79,-120.22 161.47,-153.22 229,-154.5"/>
|
||||
<!-- W1--AUTOGENERATED_F_1 -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_1:w</title>
|
||||
<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--__F_2 -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>W1:e--__F_2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-92.5C150.34,-92.86 165.96,-103.86 229,-103.5"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M85,-94.5C149.19,-94.5 164.81,-105.5 229,-105.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-96.5C148.04,-96.14 163.66,-107.14 229,-107.5"/>
|
||||
<!-- W1--AUTOGENERATED_F_2 -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_2:w</title>
|
||||
<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--__F_3 -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>W1:e--__F_3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-67.5C148.04,-67.86 163.66,-56.86 229,-56.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M85,-69.5C149.19,-69.5 164.81,-58.5 229,-58.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-71.5C150.34,-71.14 165.96,-60.14 229,-60.5"/>
|
||||
<!-- W1--AUTOGENERATED_F_3 -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_3:w</title>
|
||||
<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--__F_4 -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>W1:e--__F_4:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-42.5C148.79,-43.78 161.47,-10.78 229,-9.5"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M85,-44.5C150.66,-44.5 163.34,-11.5 229,-11.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-46.5C152.53,-45.22 165.21,-12.22 229,-13.5"/>
|
||||
<!-- W1--AUTOGENERATED_F_4 -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>W1:e--AUTOGENERATED_F_4:w</title>
|
||||
<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: 15 KiB |
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
14
examples/ex12.bom.tsv
generated
@ -1,7 +1,7 @@
|
||||
Id Description Qty Unit Designators
|
||||
1 Connector, Dupont 2.54mm, female, 5 pins, BK 1 X2
|
||||
2 Connector, Dupont 2.54mm, male, 5 pins, BK 1 X1
|
||||
3 Wire, BK 0.4 m W1, W2
|
||||
4 Wire, BU 0.4 m W1, W2
|
||||
5 Wire, GN 0.4 m W1, W2
|
||||
6 Wire, RD 0.4 m W1, W2
|
||||
# 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
|
||||
|
||||
|
522
examples/ex12.gv
generated
@ -1,269 +1,295 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4
|
||||
// https://github.com/formatc1702/WireViz
|
||||
// Graph generated by WireViz 0.5-dev+refactor
|
||||
// https://github.com/wireviz/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"></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"></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"></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"></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"></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"></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"></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"></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
|
||||
}
|
||||
|
||||
397
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 - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.5-dev+refactor - https://github.com/wireviz/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,254 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1083pt" height="201pt"
|
||||
viewBox="0.00 0.00 1083.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="none" points="-4,4 -4,-196.5 1079,-196.5 1079,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="462,-161 243,-161 243,0 462,0 462,-161"/>
|
||||
<polygon fill="none" stroke="black" points="243.5,-137.5 243.5,-160.5 462.5,-160.5 462.5,-137.5 243.5,-137.5"/>
|
||||
<text text-anchor="start" x="344.5" y="-145.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="243.5,-114.5 243.5,-137.5 349.5,-137.5 349.5,-114.5 243.5,-114.5"/>
|
||||
<text text-anchor="start" x="247.5" y="-122.3" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
|
||||
<polygon fill="none" stroke="black" points="349.5,-114.5 349.5,-137.5 388.5,-137.5 388.5,-114.5 349.5,-114.5"/>
|
||||
<text text-anchor="start" x="353.5" y="-122.3" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="388.5,-114.5 388.5,-137.5 427.5,-137.5 427.5,-114.5 388.5,-114.5"/>
|
||||
<text text-anchor="start" x="392.5" y="-122.3" font-family="arial" font-size="14.00">5-pin</text>
|
||||
<polygon fill="none" stroke="black" points="427.5,-114.5 427.5,-137.5 454.5,-137.5 454.5,-114.5 427.5,-114.5"/>
|
||||
<text text-anchor="start" x="431.5" y="-122.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="none" points="454.5,-114.5 454.5,-137.5 462.5,-137.5 462.5,-114.5 454.5,-114.5"/>
|
||||
<polygon fill="none" stroke="black" points="454.5,-114.5 454.5,-137.5 462.5,-137.5 462.5,-114.5 454.5,-114.5"/>
|
||||
<polygon fill="none" stroke="black" points="243.5,-91.5 243.5,-114.5 462.5,-114.5 462.5,-91.5 243.5,-91.5"/>
|
||||
<text text-anchor="start" x="349" y="-99.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="243.5,-68.5 243.5,-91.5 462.5,-91.5 462.5,-68.5 243.5,-68.5"/>
|
||||
<text text-anchor="start" x="349" y="-76.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="243.5,-45.5 243.5,-68.5 462.5,-68.5 462.5,-45.5 243.5,-45.5"/>
|
||||
<text text-anchor="start" x="349" y="-53.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="243.5,-22.5 243.5,-45.5 462.5,-45.5 462.5,-22.5 243.5,-22.5"/>
|
||||
<text text-anchor="start" x="349" y="-30.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="243.5,0.5 243.5,-22.5 462.5,-22.5 462.5,0.5 243.5,0.5"/>
|
||||
<text text-anchor="start" x="349" 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="836,-161 606,-161 606,0 836,0 836,-161"/>
|
||||
<polygon fill="none" stroke="black" points="606,-137.5 606,-160.5 836,-160.5 836,-137.5 606,-137.5"/>
|
||||
<text text-anchor="start" x="712.5" y="-145.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="606,-114.5 606,-137.5 712,-137.5 712,-114.5 606,-114.5"/>
|
||||
<text text-anchor="start" x="610" y="-122.3" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
|
||||
<polygon fill="none" stroke="black" points="712,-114.5 712,-137.5 762,-137.5 762,-114.5 712,-114.5"/>
|
||||
<text text-anchor="start" x="716" y="-122.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="762,-114.5 762,-137.5 801,-137.5 801,-114.5 762,-114.5"/>
|
||||
<text text-anchor="start" x="766" y="-122.3" font-family="arial" font-size="14.00">5-pin</text>
|
||||
<polygon fill="none" stroke="black" points="801,-114.5 801,-137.5 828,-137.5 828,-114.5 801,-114.5"/>
|
||||
<text text-anchor="start" x="805" y="-122.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="none" points="828,-114.5 828,-137.5 836,-137.5 836,-114.5 828,-114.5"/>
|
||||
<polygon fill="none" stroke="black" points="828,-114.5 828,-137.5 836,-137.5 836,-114.5 828,-114.5"/>
|
||||
<polygon fill="none" stroke="black" points="606,-91.5 606,-114.5 836,-114.5 836,-91.5 606,-91.5"/>
|
||||
<text text-anchor="start" x="717" y="-99.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="606,-68.5 606,-91.5 836,-91.5 836,-68.5 606,-68.5"/>
|
||||
<text text-anchor="start" x="717" y="-76.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="606,-45.5 606,-68.5 836,-68.5 836,-45.5 606,-45.5"/>
|
||||
<text text-anchor="start" x="717" y="-53.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="606,-22.5 606,-45.5 836,-45.5 836,-22.5 606,-22.5"/>
|
||||
<text text-anchor="start" x="717" y="-30.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="606,0.5 606,-22.5 836,-22.5 836,0.5 606,0.5"/>
|
||||
<text text-anchor="start" x="717" 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="M462,-79.5C522,-79.5 539.81,-79.5 594.54,-79.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M462,-81.5C522,-81.5 539.81,-81.5 594.54,-81.5"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="594.49,-84 604.49,-80.5 594.49,-77 594.49,-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="1075,-192.5 980,-192.5 980,-8.5 1075,-8.5 1075,-192.5"/>
|
||||
<polygon fill="none" stroke="black" points="980.5,-169.5 980.5,-192.5 1075.5,-192.5 1075.5,-169.5 980.5,-169.5"/>
|
||||
<text text-anchor="start" x="1017" y="-177.3" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="980.5,-146.5 980.5,-169.5 1018.5,-169.5 1018.5,-146.5 980.5,-146.5"/>
|
||||
<text text-anchor="start" x="992" y="-154.3" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1018.5,-146.5 1018.5,-169.5 1075.5,-169.5 1075.5,-146.5 1018.5,-146.5"/>
|
||||
<text text-anchor="start" x="1029.5" y="-154.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="994.5" y="-133.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="982.5" y="-114.3" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<text text-anchor="start" x="1015" y="-114.3" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-106.5 980.5,-108.5 1075.5,-108.5 1075.5,-106.5 980.5,-106.5"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="980.5,-104.5 980.5,-106.5 1075.5,-106.5 1075.5,-104.5 980.5,-104.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-102.5 980.5,-104.5 1075.5,-104.5 1075.5,-102.5 980.5,-102.5"/>
|
||||
<text text-anchor="start" x="982.5" y="-89.3" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<text text-anchor="start" x="1016" y="-89.3" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-81.5 980.5,-83.5 1075.5,-83.5 1075.5,-81.5 980.5,-81.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-79.5 980.5,-81.5 1075.5,-81.5 1075.5,-79.5 980.5,-79.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-77.5 980.5,-79.5 1075.5,-79.5 1075.5,-77.5 980.5,-77.5"/>
|
||||
<text text-anchor="start" x="982.5" y="-64.3" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<text text-anchor="start" x="1015.5" y="-64.3" font-family="arial" font-size="14.00">     BU    </text>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-56.5 980.5,-58.5 1075.5,-58.5 1075.5,-56.5 980.5,-56.5"/>
|
||||
<polygon fill="#0066ff" stroke="none" points="980.5,-54.5 980.5,-56.5 1075.5,-56.5 1075.5,-54.5 980.5,-54.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-52.5 980.5,-54.5 1075.5,-54.5 1075.5,-52.5 980.5,-52.5"/>
|
||||
<text text-anchor="start" x="982.5" y="-39.3" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<text text-anchor="start" x="1014.5" y="-39.3" font-family="arial" font-size="14.00">     GN    </text>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-31.5 980.5,-33.5 1075.5,-33.5 1075.5,-31.5 980.5,-31.5"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="980.5,-29.5 980.5,-31.5 1075.5,-31.5 1075.5,-29.5 980.5,-29.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-27.5 980.5,-29.5 1075.5,-29.5 1075.5,-27.5 980.5,-27.5"/>
|
||||
<text text-anchor="start" x="994.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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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="M836,-101.5C900.25,-101.52 916.24,-103.52 980,-103.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M836,-103.5C900.01,-103.5 915.99,-105.5 980,-105.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-105.5C899.76,-105.48 915.75,-107.48 980,-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="M836,-77.5C900.13,-77.5 916.12,-78.5 980,-78.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-79.5C900,-79.5 916,-80.5 980,-80.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-81.5C899.88,-81.5 915.87,-82.5 980,-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="M836,-54.5C899.88,-54.5 915.87,-53.5 980,-53.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M836,-56.5C900,-56.5 916,-55.5 980,-55.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-58.5C900.13,-58.5 916.12,-57.5 980,-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="M836,-31.5C899.64,-31.53 915.62,-28.53 980,-28.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M836,-33.5C900.01,-33.5 915.99,-30.5 980,-30.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-35.5C900.38,-35.47 916.36,-32.47 980,-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="99,-192.5 0,-192.5 0,-8.5 99,-8.5 99,-192.5"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-169.5 0.5,-192.5 99.5,-192.5 99.5,-169.5 0.5,-169.5"/>
|
||||
<text text-anchor="start" x="39" y="-177.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-146.5 0.5,-169.5 40.5,-169.5 40.5,-146.5 0.5,-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="40.5,-146.5 40.5,-169.5 99.5,-169.5 99.5,-146.5 40.5,-146.5"/>
|
||||
<text text-anchor="start" x="52.5" y="-154.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="2.5" y="-133.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="11" y="-114.3" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<text text-anchor="start" x="69.5" y="-114.3" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-106.5 0.5,-108.5 99.5,-108.5 99.5,-106.5 0.5,-106.5"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="0.5,-104.5 0.5,-106.5 99.5,-106.5 99.5,-104.5 0.5,-104.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-102.5 0.5,-104.5 99.5,-104.5 99.5,-102.5 0.5,-102.5"/>
|
||||
<text text-anchor="start" x="12" y="-89.3" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<text text-anchor="start" x="69.5" y="-89.3" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-81.5 0.5,-83.5 99.5,-83.5 99.5,-81.5 0.5,-81.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-79.5 0.5,-81.5 99.5,-81.5 99.5,-79.5 0.5,-79.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-77.5 0.5,-79.5 99.5,-79.5 99.5,-77.5 0.5,-77.5"/>
|
||||
<text text-anchor="start" x="11.5" y="-64.3" font-family="arial" font-size="14.00">     BU    </text>
|
||||
<text text-anchor="start" x="69.5" y="-64.3" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-56.5 0.5,-58.5 99.5,-58.5 99.5,-56.5 0.5,-56.5"/>
|
||||
<polygon fill="#0066ff" stroke="none" points="0.5,-54.5 0.5,-56.5 99.5,-56.5 99.5,-54.5 0.5,-54.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-52.5 0.5,-54.5 99.5,-54.5 99.5,-52.5 0.5,-52.5"/>
|
||||
<text text-anchor="start" x="10.5" y="-39.3" font-family="arial" font-size="14.00">     GN    </text>
|
||||
<text text-anchor="start" x="69.5" y="-39.3" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-31.5 0.5,-33.5 99.5,-33.5 99.5,-31.5 0.5,-31.5"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="0.5,-29.5 0.5,-31.5 99.5,-31.5 99.5,-29.5 0.5,-29.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-27.5 0.5,-29.5 99.5,-29.5 99.5,-27.5 0.5,-27.5"/>
|
||||
<text text-anchor="start" x="2.5" 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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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="M99,-103.5C162.76,-103.52 178.75,-101.52 243,-101.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M99,-105.5C163.01,-105.5 178.99,-103.5 243,-103.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-107.5C163.25,-107.48 179.24,-105.48 243,-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="M99,-78.5C162.88,-78.5 178.87,-77.5 243,-77.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-80.5C163,-80.5 179,-79.5 243,-79.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-82.5C163.13,-82.5 179.12,-81.5 243,-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="M99,-53.5C163.13,-53.5 179.12,-54.5 243,-54.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M99,-55.5C163,-55.5 179,-56.5 243,-56.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-57.5C162.88,-57.5 178.87,-58.5 243,-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="M99,-28.5C163.38,-28.53 179.36,-31.53 243,-31.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M99,-30.5C163.01,-30.5 178.99,-33.5 243,-33.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-32.5C162.64,-32.47 178.62,-35.47 243,-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 +293,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: 29 KiB After Width: | Height: | Size: 23 KiB |
357
examples/ex12.svg
generated
@ -1,195 +1,254 @@
|
||||
<?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 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1083pt" height="201pt"
|
||||
viewBox="0.00 0.00 1083.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="none" points="-4,4 -4,-196.5 1079,-196.5 1079,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="462,-161 243,-161 243,0 462,0 462,-161"/>
|
||||
<polygon fill="none" stroke="black" points="243.5,-137.5 243.5,-160.5 462.5,-160.5 462.5,-137.5 243.5,-137.5"/>
|
||||
<text text-anchor="start" x="344.5" y="-145.3" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="243.5,-114.5 243.5,-137.5 349.5,-137.5 349.5,-114.5 243.5,-114.5"/>
|
||||
<text text-anchor="start" x="247.5" y="-122.3" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
|
||||
<polygon fill="none" stroke="black" points="349.5,-114.5 349.5,-137.5 388.5,-137.5 388.5,-114.5 349.5,-114.5"/>
|
||||
<text text-anchor="start" x="353.5" y="-122.3" font-family="arial" font-size="14.00">male</text>
|
||||
<polygon fill="none" stroke="black" points="388.5,-114.5 388.5,-137.5 427.5,-137.5 427.5,-114.5 388.5,-114.5"/>
|
||||
<text text-anchor="start" x="392.5" y="-122.3" font-family="arial" font-size="14.00">5-pin</text>
|
||||
<polygon fill="none" stroke="black" points="427.5,-114.5 427.5,-137.5 454.5,-137.5 454.5,-114.5 427.5,-114.5"/>
|
||||
<text text-anchor="start" x="431.5" y="-122.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="none" points="454.5,-114.5 454.5,-137.5 462.5,-137.5 462.5,-114.5 454.5,-114.5"/>
|
||||
<polygon fill="none" stroke="black" points="454.5,-114.5 454.5,-137.5 462.5,-137.5 462.5,-114.5 454.5,-114.5"/>
|
||||
<polygon fill="none" stroke="black" points="243.5,-91.5 243.5,-114.5 462.5,-114.5 462.5,-91.5 243.5,-91.5"/>
|
||||
<text text-anchor="start" x="349" y="-99.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="243.5,-68.5 243.5,-91.5 462.5,-91.5 462.5,-68.5 243.5,-68.5"/>
|
||||
<text text-anchor="start" x="349" y="-76.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="243.5,-45.5 243.5,-68.5 462.5,-68.5 462.5,-45.5 243.5,-45.5"/>
|
||||
<text text-anchor="start" x="349" y="-53.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="243.5,-22.5 243.5,-45.5 462.5,-45.5 462.5,-22.5 243.5,-22.5"/>
|
||||
<text text-anchor="start" x="349" y="-30.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="243.5,0.5 243.5,-22.5 462.5,-22.5 462.5,0.5 243.5,0.5"/>
|
||||
<text text-anchor="start" x="349" 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="836,-161 606,-161 606,0 836,0 836,-161"/>
|
||||
<polygon fill="none" stroke="black" points="606,-137.5 606,-160.5 836,-160.5 836,-137.5 606,-137.5"/>
|
||||
<text text-anchor="start" x="712.5" y="-145.3" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="606,-114.5 606,-137.5 712,-137.5 712,-114.5 606,-114.5"/>
|
||||
<text text-anchor="start" x="610" y="-122.3" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
|
||||
<polygon fill="none" stroke="black" points="712,-114.5 712,-137.5 762,-137.5 762,-114.5 712,-114.5"/>
|
||||
<text text-anchor="start" x="716" y="-122.3" font-family="arial" font-size="14.00">female</text>
|
||||
<polygon fill="none" stroke="black" points="762,-114.5 762,-137.5 801,-137.5 801,-114.5 762,-114.5"/>
|
||||
<text text-anchor="start" x="766" y="-122.3" font-family="arial" font-size="14.00">5-pin</text>
|
||||
<polygon fill="none" stroke="black" points="801,-114.5 801,-137.5 828,-137.5 828,-114.5 801,-114.5"/>
|
||||
<text text-anchor="start" x="805" y="-122.3" font-family="arial" font-size="14.00">BK</text>
|
||||
<polygon fill="#000000" stroke="none" points="828,-114.5 828,-137.5 836,-137.5 836,-114.5 828,-114.5"/>
|
||||
<polygon fill="none" stroke="black" points="828,-114.5 828,-137.5 836,-137.5 836,-114.5 828,-114.5"/>
|
||||
<polygon fill="none" stroke="black" points="606,-91.5 606,-114.5 836,-114.5 836,-91.5 606,-91.5"/>
|
||||
<text text-anchor="start" x="717" y="-99.3" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="606,-68.5 606,-91.5 836,-91.5 836,-68.5 606,-68.5"/>
|
||||
<text text-anchor="start" x="717" y="-76.3" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="606,-45.5 606,-68.5 836,-68.5 836,-45.5 606,-45.5"/>
|
||||
<text text-anchor="start" x="717" y="-53.3" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="606,-22.5 606,-45.5 836,-45.5 836,-22.5 606,-22.5"/>
|
||||
<text text-anchor="start" x="717" y="-30.3" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="606,0.5 606,-22.5 836,-22.5 836,0.5 606,0.5"/>
|
||||
<text text-anchor="start" x="717" 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="M462,-79.5C522,-79.5 539.81,-79.5 594.54,-79.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M462,-81.5C522,-81.5 539.81,-81.5 594.54,-81.5"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="594.49,-84 604.49,-80.5 594.49,-77 594.49,-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="1075,-192.5 980,-192.5 980,-8.5 1075,-8.5 1075,-192.5"/>
|
||||
<polygon fill="none" stroke="black" points="980.5,-169.5 980.5,-192.5 1075.5,-192.5 1075.5,-169.5 980.5,-169.5"/>
|
||||
<text text-anchor="start" x="1017" y="-177.3" font-family="arial" font-size="14.00">W2</text>
|
||||
<polygon fill="none" stroke="black" points="980.5,-146.5 980.5,-169.5 1018.5,-169.5 1018.5,-146.5 980.5,-146.5"/>
|
||||
<text text-anchor="start" x="992" y="-154.3" font-family="arial" font-size="14.00">4x</text>
|
||||
<polygon fill="none" stroke="black" points="1018.5,-146.5 1018.5,-169.5 1075.5,-169.5 1075.5,-146.5 1018.5,-146.5"/>
|
||||
<text text-anchor="start" x="1029.5" y="-154.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="994.5" y="-133.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="982.5" y="-114.3" font-family="arial" font-size="14.00">X2:1</text>
|
||||
<text text-anchor="start" x="1015" y="-114.3" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-106.5 980.5,-108.5 1075.5,-108.5 1075.5,-106.5 980.5,-106.5"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="980.5,-104.5 980.5,-106.5 1075.5,-106.5 1075.5,-104.5 980.5,-104.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-102.5 980.5,-104.5 1075.5,-104.5 1075.5,-102.5 980.5,-102.5"/>
|
||||
<text text-anchor="start" x="982.5" y="-89.3" font-family="arial" font-size="14.00">X2:2</text>
|
||||
<text text-anchor="start" x="1016" y="-89.3" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-81.5 980.5,-83.5 1075.5,-83.5 1075.5,-81.5 980.5,-81.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-79.5 980.5,-81.5 1075.5,-81.5 1075.5,-79.5 980.5,-79.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-77.5 980.5,-79.5 1075.5,-79.5 1075.5,-77.5 980.5,-77.5"/>
|
||||
<text text-anchor="start" x="982.5" y="-64.3" font-family="arial" font-size="14.00">X2:3</text>
|
||||
<text text-anchor="start" x="1015.5" y="-64.3" font-family="arial" font-size="14.00">     BU    </text>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-56.5 980.5,-58.5 1075.5,-58.5 1075.5,-56.5 980.5,-56.5"/>
|
||||
<polygon fill="#0066ff" stroke="none" points="980.5,-54.5 980.5,-56.5 1075.5,-56.5 1075.5,-54.5 980.5,-54.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-52.5 980.5,-54.5 1075.5,-54.5 1075.5,-52.5 980.5,-52.5"/>
|
||||
<text text-anchor="start" x="982.5" y="-39.3" font-family="arial" font-size="14.00">X2:4</text>
|
||||
<text text-anchor="start" x="1014.5" y="-39.3" font-family="arial" font-size="14.00">     GN    </text>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-31.5 980.5,-33.5 1075.5,-33.5 1075.5,-31.5 980.5,-31.5"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="980.5,-29.5 980.5,-31.5 1075.5,-31.5 1075.5,-29.5 980.5,-29.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="980.5,-27.5 980.5,-29.5 1075.5,-29.5 1075.5,-27.5 980.5,-27.5"/>
|
||||
<text text-anchor="start" x="994.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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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="M836,-101.5C900.25,-101.52 916.24,-103.52 980,-103.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M836,-103.5C900.01,-103.5 915.99,-105.5 980,-105.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-105.5C899.76,-105.48 915.75,-107.48 980,-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="M836,-77.5C900.13,-77.5 916.12,-78.5 980,-78.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-79.5C900,-79.5 916,-80.5 980,-80.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-81.5C899.88,-81.5 915.87,-82.5 980,-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="M836,-54.5C899.88,-54.5 915.87,-53.5 980,-53.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M836,-56.5C900,-56.5 916,-55.5 980,-55.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-58.5C900.13,-58.5 916.12,-57.5 980,-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="M836,-31.5C899.64,-31.53 915.62,-28.53 980,-28.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M836,-33.5C900.01,-33.5 915.99,-30.5 980,-30.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-35.5C900.38,-35.47 916.36,-32.47 980,-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="99,-192.5 0,-192.5 0,-8.5 99,-8.5 99,-192.5"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-169.5 0.5,-192.5 99.5,-192.5 99.5,-169.5 0.5,-169.5"/>
|
||||
<text text-anchor="start" x="39" y="-177.3" font-family="arial" font-size="14.00">W1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-146.5 0.5,-169.5 40.5,-169.5 40.5,-146.5 0.5,-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="40.5,-146.5 40.5,-169.5 99.5,-169.5 99.5,-146.5 40.5,-146.5"/>
|
||||
<text text-anchor="start" x="52.5" y="-154.3" font-family="arial" font-size="14.00">0.2 m</text>
|
||||
<text text-anchor="start" x="2.5" y="-133.3" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="11" y="-114.3" font-family="arial" font-size="14.00">     RD    </text>
|
||||
<text text-anchor="start" x="69.5" y="-114.3" font-family="arial" font-size="14.00">X1:1</text>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-106.5 0.5,-108.5 99.5,-108.5 99.5,-106.5 0.5,-106.5"/>
|
||||
<polygon fill="#ff0000" stroke="none" points="0.5,-104.5 0.5,-106.5 99.5,-106.5 99.5,-104.5 0.5,-104.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-102.5 0.5,-104.5 99.5,-104.5 99.5,-102.5 0.5,-102.5"/>
|
||||
<text text-anchor="start" x="12" y="-89.3" font-family="arial" font-size="14.00">     BK    </text>
|
||||
<text text-anchor="start" x="69.5" y="-89.3" font-family="arial" font-size="14.00">X1:2</text>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-81.5 0.5,-83.5 99.5,-83.5 99.5,-81.5 0.5,-81.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-79.5 0.5,-81.5 99.5,-81.5 99.5,-79.5 0.5,-79.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-77.5 0.5,-79.5 99.5,-79.5 99.5,-77.5 0.5,-77.5"/>
|
||||
<text text-anchor="start" x="11.5" y="-64.3" font-family="arial" font-size="14.00">     BU    </text>
|
||||
<text text-anchor="start" x="69.5" y="-64.3" font-family="arial" font-size="14.00">X1:3</text>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-56.5 0.5,-58.5 99.5,-58.5 99.5,-56.5 0.5,-56.5"/>
|
||||
<polygon fill="#0066ff" stroke="none" points="0.5,-54.5 0.5,-56.5 99.5,-56.5 99.5,-54.5 0.5,-54.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-52.5 0.5,-54.5 99.5,-54.5 99.5,-52.5 0.5,-52.5"/>
|
||||
<text text-anchor="start" x="10.5" y="-39.3" font-family="arial" font-size="14.00">     GN    </text>
|
||||
<text text-anchor="start" x="69.5" y="-39.3" font-family="arial" font-size="14.00">X1:4</text>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-31.5 0.5,-33.5 99.5,-33.5 99.5,-31.5 0.5,-31.5"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="0.5,-29.5 0.5,-31.5 99.5,-31.5 99.5,-29.5 0.5,-29.5"/>
|
||||
<polygon fill="#000000" stroke="none" points="0.5,-27.5 0.5,-29.5 99.5,-29.5 99.5,-27.5 0.5,-27.5"/>
|
||||
<text text-anchor="start" x="2.5" 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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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="M99,-103.5C162.76,-103.52 178.75,-101.52 243,-101.5"/>
|
||||
<path fill="none" stroke="#ff0000" stroke-width="2" d="M99,-105.5C163.01,-105.5 178.99,-103.5 243,-103.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-107.5C163.25,-107.48 179.24,-105.48 243,-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="M99,-78.5C162.88,-78.5 178.87,-77.5 243,-77.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-80.5C163,-80.5 179,-79.5 243,-79.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-82.5C163.13,-82.5 179.12,-81.5 243,-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="M99,-53.5C163.13,-53.5 179.12,-54.5 243,-54.5"/>
|
||||
<path fill="none" stroke="#0066ff" stroke-width="2" d="M99,-55.5C163,-55.5 179,-56.5 243,-56.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-57.5C162.88,-57.5 178.87,-58.5 243,-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="M99,-28.5C163.38,-28.53 179.36,-31.53 243,-31.5"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M99,-30.5C163.01,-30.5 178.99,-33.5 243,-33.5"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-32.5C162.64,-32.47 178.62,-35.47 243,-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: 18 KiB |
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
8
examples/ex13.bom.tsv
generated
@ -1,4 +1,4 @@
|
||||
Id Description Qty Unit Designators
|
||||
1 Cable, 4 wires 0 m C1, C2, C3
|
||||
2 Connector, 4 pins 3 X1, X2, X3
|
||||
3 Connector, ferrule 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
|
||||
|
||||
|
798
examples/ex13.gv
generated
@ -1,433 +1,461 @@
|
||||
graph {
|
||||
// Graph generated by WireViz 0.4
|
||||
// https://github.com/formatc1702/WireViz
|
||||
// Graph generated by WireViz 0.5-dev+refactor
|
||||
// https://github.com/wireviz/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">4-pin</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1">
|
||||
<tr>
|
||||
<td>A</td>
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>B</td>
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>C</td>
|
||||
<td port="p3r">3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>D</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>4-pin</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>A</td>
|
||||
<td port="p1r">1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>B</td>
|
||||
<td port="p2r">2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>C</td>
|
||||
<td port="p3r">3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>D</td>
|
||||
<td port="p4r">4</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
F1 [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>
|
||||
</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>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
F2 [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>
|
||||
</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>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
F3 [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>
|
||||
</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>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
> shape=box style=filled]
|
||||
F4 [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>
|
||||
</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>
|
||||
</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">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>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>X2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<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>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]
|
||||
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">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>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>X3</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<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>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]
|
||||
edge [color="#000000:#ffffff:#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>4x</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:1:A</td>
|
||||
<td> </td>
|
||||
<td>1:WH</td>
|
||||
<td> </td>
|
||||
<td align="right">F1 </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w1"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:2:B</td>
|
||||
<td> </td>
|
||||
<td>2:BN</td>
|
||||
<td> </td>
|
||||
<td align="right">F2 </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:3:C</td>
|
||||
<td> </td>
|
||||
<td>3:GN</td>
|
||||
<td> </td>
|
||||
<td align="right">F3 </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w3"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> X1:4:D</td>
|
||||
<td> </td>
|
||||
<td>4:YE</td>
|
||||
<td> </td>
|
||||
<td align="right">F4 </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w4"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> shape=box style=filled]
|
||||
edge [color="#000000:#FFFFFF:#000000"]
|
||||
X1:p1r:e -- C1:w1:w
|
||||
C1:w1:e -- F1:w
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
X1:p2r:e -- C1:w2:w
|
||||
C1:w2:e -- F2:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
edge [color="#000000:#00AA00:#000000"]
|
||||
X1:p3r:e -- C1:w3:w
|
||||
C1:w3:e -- F3:w
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
edge [color="#000000:#FFFF00:#000000"]
|
||||
X1:p4r:e -- C1:w4:w
|
||||
C1:w4:e -- F4: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">4x</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td>X1:1:A</td>
|
||||
<td>
|
||||
1:WH
|
||||
</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="#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:B</td>
|
||||
<td>
|
||||
2:BN
|
||||
</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="#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:C</td>
|
||||
<td>
|
||||
3:GN
|
||||
</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="#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:4:D</td>
|
||||
<td>
|
||||
4: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></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
C1:w1:e -- C1:w1:w [color="#000000:#FFFFFF:#000000" straight=straight]
|
||||
C1:w2:e -- C1:w2:w [color="#000000:#895956:#000000" straight=straight]
|
||||
C1:w3:e -- C1:w3:w [color="#000000:#00AA00:#000000" straight=straight]
|
||||
C1:w4:e -- C1:w4:w [color="#000000:#FFFF00:#000000" straight=straight]
|
||||
C2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>C2</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>4x</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> F1</td>
|
||||
<td> </td>
|
||||
<td>1:WH</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:1:A </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w1"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> F2</td>
|
||||
<td> </td>
|
||||
<td>2:BN</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:2:B </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> F3</td>
|
||||
<td> </td>
|
||||
<td>3:GN</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:3:C </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w3"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> F4</td>
|
||||
<td> </td>
|
||||
<td>4:YE</td>
|
||||
<td> </td>
|
||||
<td align="right">X2:4:D </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w4"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
edge [color="#000000:#ffffff:#000000"]
|
||||
> shape=box style=filled]
|
||||
edge [color="#000000:#FFFFFF:#000000"]
|
||||
F1:e -- C2:w1:w
|
||||
C2:w1:e -- X2:p1l:w
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
F2:e -- C2:w2:w
|
||||
C2:w2:e -- X2:p2l:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
edge [color="#000000:#00AA00:#000000"]
|
||||
F3:e -- C2:w3:w
|
||||
C2:w3:e -- X2:p3l:w
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
edge [color="#000000:#FFFF00:#000000"]
|
||||
F4:e -- C2:w4:w
|
||||
C2:w4:e -- X2:p4l:w
|
||||
C2 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">C2</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">4x</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>
|
||||
1:WH
|
||||
</td>
|
||||
<td>X2:1:A</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></td>
|
||||
<td>
|
||||
2:BN
|
||||
</td>
|
||||
<td>X2:2:B</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></td>
|
||||
<td>
|
||||
3:GN
|
||||
</td>
|
||||
<td>X2:3:C</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>
|
||||
<td>
|
||||
4:YE
|
||||
</td>
|
||||
<td>X2:4:D</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>
|
||||
</table>
|
||||
</td></tr>
|
||||
C2:w1:e -- C2:w1:w [color="#000000:#FFFFFF:#000000" straight=straight]
|
||||
C2:w2:e -- C2:w2:w [color="#000000:#895956:#000000" straight=straight]
|
||||
C2:w3:e -- C2:w3:w [color="#000000:#00AA00:#000000" straight=straight]
|
||||
C2:w4:e -- C2:w4:w [color="#000000:#FFFF00:#000000" straight=straight]
|
||||
C3 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>C3</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="1" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>4x</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table border="0" cellborder="0" cellspacing="0">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> F1</td>
|
||||
<td> </td>
|
||||
<td>1:WH</td>
|
||||
<td> </td>
|
||||
<td align="right">X3:1:A </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w1"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> F2</td>
|
||||
<td> </td>
|
||||
<td>2:BN</td>
|
||||
<td> </td>
|
||||
<td align="right">X3:2:B </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> F3</td>
|
||||
<td> </td>
|
||||
<td>3:GN</td>
|
||||
<td> </td>
|
||||
<td align="right">X3:3:C </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w3"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"> F4</td>
|
||||
<td> </td>
|
||||
<td>4:YE</td>
|
||||
<td> </td>
|
||||
<td align="right">X3:4:D </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td border="0" cellspacing="0" cellpadding="0" colspan="5" height="6" port="w4"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
edge [color="#000000:#ffffff:#000000"]
|
||||
> shape=box style=filled]
|
||||
edge [color="#000000:#FFFFFF:#000000"]
|
||||
F1:e -- C3:w1:w
|
||||
C3:w1:e -- X3:p1l:w
|
||||
edge [color="#000000:#895956:#000000"]
|
||||
F2:e -- C3:w2:w
|
||||
C3:w2:e -- X3:p2l:w
|
||||
edge [color="#000000:#00ff00:#000000"]
|
||||
edge [color="#000000:#00AA00:#000000"]
|
||||
F3:e -- C3:w3:w
|
||||
C3:w3:e -- X3:p3l:w
|
||||
edge [color="#000000:#ffff00:#000000"]
|
||||
edge [color="#000000:#FFFF00:#000000"]
|
||||
F4:e -- C3:w4:w
|
||||
C3:w4:e -- X3:p4l:w
|
||||
C3 [label=<
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">C3</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellpadding="3" cellborder="1"><tr>
|
||||
<td balign="left">4x</td>
|
||||
</tr></table>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<table border="0" cellspacing="0" cellborder="0">
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>
|
||||
1:WH
|
||||
</td>
|
||||
<td>X3:1:A</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></td>
|
||||
<td>
|
||||
2:BN
|
||||
</td>
|
||||
<td>X3:2:B</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></td>
|
||||
<td>
|
||||
3:GN
|
||||
</td>
|
||||
<td>X3:3:C</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>
|
||||
<td>
|
||||
4:YE
|
||||
</td>
|
||||
<td>X3:4:D</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>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
> fillcolor="#FFFFFF" shape=box style=filled]
|
||||
C3:w1:e -- C3:w1:w [color="#000000:#FFFFFF:#000000" straight=straight]
|
||||
C3:w2:e -- C3:w2:w [color="#000000:#895956:#000000" straight=straight]
|
||||
C3:w3:e -- C3:w3:w [color="#000000:#00AA00:#000000" straight=straight]
|
||||
C3:w4:e -- C3:w4:w [color="#000000:#FFFF00:#000000" straight=straight]
|
||||
}
|
||||
|
||||
772
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 - https://github.com/formatc1702/WireViz">
|
||||
<meta name="generator" content="WireViz 0.5-dev+refactor - https://github.com/wireviz/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,470 @@
|
||||
|
||||
<div id="diagram">
|
||||
<!-- XML and DOCTYPE declarations from SVG file removed -->
|
||||
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="959pt" height="400pt"
|
||||
viewBox="0.00 0.00 959.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="none" points="-4,4 -4,-396 955,-396 955,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="39,-256 0,-256 0,-118 39,-118 39,-256"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-233 0.5,-256 39.5,-256 39.5,-233 0.5,-233"/>
|
||||
<text text-anchor="start" x="11.5" y="-240.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-210 0.5,-233 39.5,-233 39.5,-210 0.5,-210"/>
|
||||
<text text-anchor="start" x="4.5" y="-217.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-187 0.5,-210 21.5,-210 21.5,-187 0.5,-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="21.5,-187 21.5,-210 39.5,-210 39.5,-187 21.5,-187"/>
|
||||
<text text-anchor="start" x="26.5" y="-194.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-164 0.5,-187 21.5,-187 21.5,-164 0.5,-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="21.5,-164 21.5,-187 39.5,-187 39.5,-164 21.5,-164"/>
|
||||
<text text-anchor="start" x="26.5" y="-171.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-141 0.5,-164 21.5,-164 21.5,-141 0.5,-141"/>
|
||||
<text text-anchor="start" x="6" y="-148.8" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="21.5,-141 21.5,-164 39.5,-164 39.5,-141 21.5,-141"/>
|
||||
<text text-anchor="start" x="26.5" y="-148.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-118 0.5,-141 21.5,-141 21.5,-118 0.5,-118"/>
|
||||
<text text-anchor="start" x="6" y="-125.8" font-family="arial" font-size="14.00">D</text>
|
||||
<polygon fill="none" stroke="black" points="21.5,-118 21.5,-141 39.5,-141 39.5,-118 21.5,-118"/>
|
||||
<text text-anchor="start" x="26.5" 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="306,-288 183,-288 183,-104 306,-104 306,-288"/>
|
||||
<polygon fill="none" stroke="black" points="183.5,-265 183.5,-288 306.5,-288 306.5,-265 183.5,-265"/>
|
||||
<text text-anchor="start" x="236" y="-272.8" font-family="arial" font-size="14.00">C1</text>
|
||||
<polygon fill="none" stroke="black" points="183.5,-242 183.5,-265 306.5,-265 306.5,-242 183.5,-242"/>
|
||||
<text text-anchor="start" x="237.5" y="-249.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="204.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="231.5" y="-209.8" font-family="arial" font-size="14.00">     1:WH    </text>
|
||||
<polygon fill="#000000" stroke="none" points="183.5,-202 183.5,-204 306.5,-204 306.5,-202 183.5,-202"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-200 183.5,-202 306.5,-202 306.5,-200 183.5,-200"/>
|
||||
<polygon fill="#000000" stroke="none" points="183.5,-198 183.5,-200 306.5,-200 306.5,-198 183.5,-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="234" y="-184.8" font-family="arial" font-size="14.00">     2:BN    </text>
|
||||
<polygon fill="#000000" stroke="none" points="183.5,-177 183.5,-179 306.5,-179 306.5,-177 183.5,-177"/>
|
||||
<polygon fill="#895956" stroke="none" points="183.5,-175 183.5,-177 306.5,-177 306.5,-175 183.5,-175"/>
|
||||
<polygon fill="#000000" stroke="none" points="183.5,-173 183.5,-175 306.5,-175 306.5,-173 183.5,-173"/>
|
||||
<text text-anchor="start" x="185.5" y="-159.8" font-family="arial" font-size="14.00">X1:3:C</text>
|
||||
<text text-anchor="start" x="232.5" y="-159.8" font-family="arial" font-size="14.00">     3:GN    </text>
|
||||
<polygon fill="#000000" stroke="none" points="183.5,-152 183.5,-154 306.5,-154 306.5,-152 183.5,-152"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="183.5,-150 183.5,-152 306.5,-152 306.5,-150 183.5,-150"/>
|
||||
<polygon fill="#000000" stroke="none" points="183.5,-148 183.5,-150 306.5,-150 306.5,-148 183.5,-148"/>
|
||||
<text text-anchor="start" x="185.5" y="-134.8" font-family="arial" font-size="14.00">X1:4:D</text>
|
||||
<text text-anchor="start" x="234" y="-134.8" font-family="arial" font-size="14.00">     4:YE    </text>
|
||||
<polygon fill="#000000" stroke="none" points="183.5,-127 183.5,-129 306.5,-129 306.5,-127 183.5,-127"/>
|
||||
<polygon fill="#ffff00" stroke="none" points="183.5,-125 183.5,-127 306.5,-127 306.5,-125 183.5,-125"/>
|
||||
<polygon fill="#000000" stroke="none" points="183.5,-123 183.5,-125 306.5,-125 306.5,-123 183.5,-123"/>
|
||||
<text text-anchor="start" x="204.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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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="M39,-197C103.25,-197.02 119.24,-199.02 183,-199"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M39,-199C103.01,-199 118.99,-201 183,-201"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-201C102.76,-200.98 118.75,-202.98 183,-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="M39,-173C103.13,-173 119.12,-174 183,-174"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M39,-175C103,-175 119,-176 183,-176"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-177C102.88,-177 118.87,-178 183,-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="M39,-150C102.88,-150 118.87,-149 183,-149"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M39,-152C103,-152 119,-151 183,-151"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-154C103.13,-154 119.12,-153 183,-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="M39,-127C102.64,-127.03 118.62,-124.03 183,-124"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M39,-129C103.01,-129 118.99,-126 183,-126"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-131C103.38,-130.97 119.36,-127.97 183,-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="497,-245.5 450,-245.5 450,-222.5 497,-222.5 497,-245.5"/>
|
||||
<polygon fill="none" stroke="black" points="450.5,-222 450.5,-245 497.5,-245 497.5,-222 450.5,-222"/>
|
||||
<text text-anchor="start" x="454.5" 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="768,-392 641,-392 641,-208 768,-208 768,-392"/>
|
||||
<polygon fill="none" stroke="black" points="641.5,-369 641.5,-392 768.5,-392 768.5,-369 641.5,-369"/>
|
||||
<text text-anchor="start" x="696" y="-376.8" font-family="arial" font-size="14.00">C2</text>
|
||||
<polygon fill="none" stroke="black" points="641.5,-346 641.5,-369 768.5,-369 768.5,-346 641.5,-346"/>
|
||||
<text text-anchor="start" x="697.5" y="-353.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="643.5" y="-332.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="651.5" y="-313.8" font-family="arial" font-size="14.00">     1:WH    </text>
|
||||
<text text-anchor="start" x="725" y="-313.8" font-family="arial" font-size="14.00">X2:1:A</text>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-306 641.5,-308 768.5,-308 768.5,-306 641.5,-306"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="641.5,-304 641.5,-306 768.5,-306 768.5,-304 641.5,-304"/>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-302 641.5,-304 768.5,-304 768.5,-302 641.5,-302"/>
|
||||
<text text-anchor="start" x="654" y="-288.8" font-family="arial" font-size="14.00">     2:BN    </text>
|
||||
<text text-anchor="start" x="725" y="-288.8" font-family="arial" font-size="14.00">X2:2:B</text>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-281 641.5,-283 768.5,-283 768.5,-281 641.5,-281"/>
|
||||
<polygon fill="#895956" stroke="none" points="641.5,-279 641.5,-281 768.5,-281 768.5,-279 641.5,-279"/>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-277 641.5,-279 768.5,-279 768.5,-277 641.5,-277"/>
|
||||
<text text-anchor="start" x="652.5" y="-263.8" font-family="arial" font-size="14.00">     3:GN    </text>
|
||||
<text text-anchor="start" x="724.5" y="-263.8" font-family="arial" font-size="14.00">X2:3:C</text>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-256 641.5,-258 768.5,-258 768.5,-256 641.5,-256"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="641.5,-254 641.5,-256 768.5,-256 768.5,-254 641.5,-254"/>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-252 641.5,-254 768.5,-254 768.5,-252 641.5,-252"/>
|
||||
<text text-anchor="start" x="654" y="-238.8" font-family="arial" font-size="14.00">     4:YE    </text>
|
||||
<text text-anchor="start" x="724.5" y="-238.8" font-family="arial" font-size="14.00">X2:4:D</text>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-231 641.5,-233 768.5,-233 768.5,-231 641.5,-231"/>
|
||||
<polygon fill="#ffff00" stroke="none" points="641.5,-229 641.5,-231 768.5,-231 768.5,-229 641.5,-229"/>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-227 641.5,-229 768.5,-229 768.5,-227 641.5,-227"/>
|
||||
<text text-anchor="start" x="643.5" 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="M497,-232C570.36,-233.96 571.64,-304.96 641,-303"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M497,-234C568.36,-234 569.64,-305 641,-305"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-236C566.36,-234.04 567.64,-305.04 641,-307"/>
|
||||
</g>
|
||||
<!-- C3 -->
|
||||
<g id="node10" class="node">
|
||||
<title>C3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="768,-184 641,-184 641,0 768,0 768,-184"/>
|
||||
<polygon fill="none" stroke="black" points="641.5,-161 641.5,-184 768.5,-184 768.5,-161 641.5,-161"/>
|
||||
<text text-anchor="start" x="696" y="-168.8" font-family="arial" font-size="14.00">C3</text>
|
||||
<polygon fill="none" stroke="black" points="641.5,-138 641.5,-161 768.5,-161 768.5,-138 641.5,-138"/>
|
||||
<text text-anchor="start" x="697.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="643.5" y="-124.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="651.5" y="-105.8" font-family="arial" font-size="14.00">     1:WH    </text>
|
||||
<text text-anchor="start" x="725" y="-105.8" font-family="arial" font-size="14.00">X3:1:A</text>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-98 641.5,-100 768.5,-100 768.5,-98 641.5,-98"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="641.5,-96 641.5,-98 768.5,-98 768.5,-96 641.5,-96"/>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-94 641.5,-96 768.5,-96 768.5,-94 641.5,-94"/>
|
||||
<text text-anchor="start" x="654" y="-80.8" font-family="arial" font-size="14.00">     2:BN    </text>
|
||||
<text text-anchor="start" x="725" y="-80.8" font-family="arial" font-size="14.00">X3:2:B</text>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-73 641.5,-75 768.5,-75 768.5,-73 641.5,-73"/>
|
||||
<polygon fill="#895956" stroke="none" points="641.5,-71 641.5,-73 768.5,-73 768.5,-71 641.5,-71"/>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-69 641.5,-71 768.5,-71 768.5,-69 641.5,-69"/>
|
||||
<text text-anchor="start" x="652.5" y="-55.8" font-family="arial" font-size="14.00">     3:GN    </text>
|
||||
<text text-anchor="start" x="724.5" y="-55.8" font-family="arial" font-size="14.00">X3:3:C</text>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-48 641.5,-50 768.5,-50 768.5,-48 641.5,-48"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="641.5,-46 641.5,-48 768.5,-48 768.5,-46 641.5,-46"/>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-44 641.5,-46 768.5,-46 768.5,-44 641.5,-44"/>
|
||||
<text text-anchor="start" x="654" y="-30.8" font-family="arial" font-size="14.00">     4:YE    </text>
|
||||
<text text-anchor="start" x="724.5" y="-30.8" font-family="arial" font-size="14.00">X3:4:D</text>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-23 641.5,-25 768.5,-25 768.5,-23 641.5,-23"/>
|
||||
<polygon fill="#ffff00" stroke="none" points="641.5,-21 641.5,-23 768.5,-23 768.5,-21 641.5,-21"/>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-19 641.5,-21 768.5,-21 768.5,-19 641.5,-19"/>
|
||||
<text text-anchor="start" x="643.5" 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="M497,-232C583.39,-234.46 550.72,-97.46 641,-95"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M497,-234C585.34,-234 552.66,-97 641,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-236C587.28,-233.54 554.61,-96.54 641,-99"/>
|
||||
</g>
|
||||
<!-- F2 -->
|
||||
<g id="node3" class="node">
|
||||
<title>F2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="497,-198.5 450,-198.5 450,-175.5 497,-175.5 497,-198.5"/>
|
||||
<polygon fill="none" stroke="black" points="450.5,-175 450.5,-198 497.5,-198 497.5,-175 450.5,-175"/>
|
||||
<text text-anchor="start" x="454.5" 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="M497,-185C575.18,-187.18 566.81,-280.18 641,-278"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M497,-187C573.19,-187 564.81,-280 641,-280"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-189C571.19,-186.82 562.82,-279.82 641,-282"/>
|
||||
</g>
|
||||
<!-- F2--C3 -->
|
||||
<g id="edge19" class="edge">
|
||||
<title>F2:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-185C576.93,-187.34 557.12,-72.34 641,-70"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M497,-187C578.9,-187 559.1,-72 641,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-189C580.88,-186.66 561.07,-71.66 641,-74"/>
|
||||
</g>
|
||||
<!-- F3 -->
|
||||
<g id="node4" class="node">
|
||||
<title>F3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="497,-151.5 450,-151.5 450,-128.5 497,-128.5 497,-151.5"/>
|
||||
<polygon fill="none" stroke="black" points="450.5,-128 450.5,-151 497.5,-151 497.5,-128 450.5,-128"/>
|
||||
<text text-anchor="start" x="454.5" 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="M497,-138C580.88,-140.34 561.07,-255.34 641,-253"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M497,-140C578.9,-140 559.1,-255 641,-255"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-142C576.93,-139.66 557.12,-254.66 641,-257"/>
|
||||
</g>
|
||||
<!-- F3--C3 -->
|
||||
<g id="edge21" class="edge">
|
||||
<title>F3:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-138C571.19,-140.18 562.82,-47.18 641,-45"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M497,-140C573.19,-140 564.81,-47 641,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-142C575.18,-139.82 566.81,-46.82 641,-49"/>
|
||||
</g>
|
||||
<!-- F4 -->
|
||||
<g id="node5" class="node">
|
||||
<title>F4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="497,-104.5 450,-104.5 450,-81.5 497,-81.5 497,-104.5"/>
|
||||
<polygon fill="none" stroke="black" points="450.5,-81 450.5,-104 497.5,-104 497.5,-81 450.5,-81"/>
|
||||
<text text-anchor="start" x="454.5" 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="M497,-91C587.28,-93.46 554.61,-230.46 641,-228"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M497,-93C585.34,-93 552.66,-230 641,-230"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-95C583.39,-92.54 550.72,-229.54 641,-232"/>
|
||||
</g>
|
||||
<!-- F4--C3 -->
|
||||
<g id="edge23" class="edge">
|
||||
<title>F4:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-91C566.36,-92.96 567.64,-21.96 641,-20"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M497,-93C568.36,-93 569.64,-22 641,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-95C570.36,-93.04 571.64,-22.04 641,-24"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node6" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="951,-360 912,-360 912,-222 951,-222 951,-360"/>
|
||||
<polygon fill="none" stroke="black" points="912.5,-337 912.5,-360 951.5,-360 951.5,-337 912.5,-337"/>
|
||||
<text text-anchor="start" x="923.5" y="-344.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-314 912.5,-337 951.5,-337 951.5,-314 912.5,-314"/>
|
||||
<text text-anchor="start" x="916.5" y="-321.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-291 912.5,-314 931.5,-314 931.5,-291 912.5,-291"/>
|
||||
<text text-anchor="start" x="918" y="-298.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="931.5,-291 931.5,-314 951.5,-314 951.5,-291 931.5,-291"/>
|
||||
<text text-anchor="start" x="936.5" y="-298.8" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-268 912.5,-291 931.5,-291 931.5,-268 912.5,-268"/>
|
||||
<text text-anchor="start" x="918" y="-275.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="931.5,-268 931.5,-291 951.5,-291 951.5,-268 931.5,-268"/>
|
||||
<text text-anchor="start" x="936.5" y="-275.8" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-245 912.5,-268 931.5,-268 931.5,-245 912.5,-245"/>
|
||||
<text text-anchor="start" x="918" y="-252.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="931.5,-245 931.5,-268 951.5,-268 951.5,-245 931.5,-245"/>
|
||||
<text text-anchor="start" x="936.5" y="-252.8" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-222 912.5,-245 931.5,-245 931.5,-222 912.5,-222"/>
|
||||
<text text-anchor="start" x="918" y="-229.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="931.5,-222 931.5,-245 951.5,-245 951.5,-222 931.5,-222"/>
|
||||
<text text-anchor="start" x="936.5" 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="951,-152 912,-152 912,-14 951,-14 951,-152"/>
|
||||
<polygon fill="none" stroke="black" points="912.5,-129 912.5,-152 951.5,-152 951.5,-129 912.5,-129"/>
|
||||
<text text-anchor="start" x="923.5" y="-136.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-106 912.5,-129 951.5,-129 951.5,-106 912.5,-106"/>
|
||||
<text text-anchor="start" x="916.5" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-83 912.5,-106 931.5,-106 931.5,-83 912.5,-83"/>
|
||||
<text text-anchor="start" x="918" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="931.5,-83 931.5,-106 951.5,-106 951.5,-83 931.5,-83"/>
|
||||
<text text-anchor="start" x="936.5" y="-90.8" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-60 912.5,-83 931.5,-83 931.5,-60 912.5,-60"/>
|
||||
<text text-anchor="start" x="918" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="931.5,-60 931.5,-83 951.5,-83 951.5,-60 931.5,-60"/>
|
||||
<text text-anchor="start" x="936.5" y="-67.8" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-37 912.5,-60 931.5,-60 931.5,-37 912.5,-37"/>
|
||||
<text text-anchor="start" x="918" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="931.5,-37 931.5,-60 951.5,-60 951.5,-37 931.5,-37"/>
|
||||
<text text-anchor="start" x="936.5" y="-44.8" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-14 912.5,-37 931.5,-37 931.5,-14 912.5,-14"/>
|
||||
<text text-anchor="start" x="918" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="931.5,-14 931.5,-37 951.5,-37 951.5,-14 931.5,-14"/>
|
||||
<text text-anchor="start" x="936.5" 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="M306,-199C373.53,-200.28 386.21,-233.28 450,-232"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M306,-201C371.66,-201 384.34,-234 450,-234"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-203C369.79,-201.72 382.47,-234.72 450,-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="M306,-174C371.34,-174.36 386.96,-185.36 450,-185"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M306,-176C370.19,-176 385.81,-187 450,-187"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-178C369.04,-177.64 384.66,-188.64 450,-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="M306,-149C369.04,-149.36 384.66,-138.36 450,-138"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M306,-151C370.19,-151 385.81,-140 450,-140"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-153C371.34,-152.64 386.96,-141.64 450,-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="M306,-124C369.79,-125.28 382.47,-92.28 450,-91"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M306,-126C371.66,-126 384.34,-93 450,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-128C373.53,-126.72 386.21,-93.72 450,-95"/>
|
||||
</g>
|
||||
<!-- C2--X2 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-303C831.76,-303.02 847.75,-301.02 912,-301"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M768,-305C832.01,-305 847.99,-303 912,-303"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-307C832.25,-306.98 848.24,-304.98 912,-305"/>
|
||||
</g>
|
||||
<!-- C2--X2 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-278C831.88,-278 847.87,-277 912,-277"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M768,-280C832,-280 848,-279 912,-279"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-282C832.13,-282 848.12,-281 912,-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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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="M768,-253C832.13,-253 848.12,-254 912,-254"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M768,-255C832,-255 848,-256 912,-256"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-257C831.88,-257 847.87,-258 912,-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="M768,-228C832.38,-228.03 848.36,-231.03 912,-231"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M768,-230C832.01,-230 847.99,-233 912,-233"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-232C831.64,-231.97 847.62,-234.97 912,-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="M768,-95C831.76,-95.02 847.75,-93.02 912,-93"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M768,-97C832.01,-97 847.99,-95 912,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-99C832.25,-98.98 848.24,-96.98 912,-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="M768,-70C831.88,-70 847.87,-69 912,-69"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M768,-72C832,-72 848,-71 912,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-74C832.13,-74 848.12,-73 912,-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="M768,-45C832.13,-45 848.12,-46 912,-46"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M768,-47C832,-47 848,-48 912,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-49C831.88,-49 847.87,-50 912,-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="M768,-20C832.38,-20.03 848.36,-23.03 912,-23"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M768,-22C832.01,-22 847.99,-25 912,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-24C831.64,-23.97 847.62,-26.97 912,-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 +509,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 |
738
examples/ex13.svg
generated
@ -1,376 +1,470 @@
|
||||
<?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 7.1.0 (20230121.1956)
|
||||
<!-- Generated by graphviz version 11.0.0 (20240428.1522)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="959pt" height="400pt"
|
||||
viewBox="0.00 0.00 959.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="none" points="-4,4 -4,-396 955,-396 955,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="39,-256 0,-256 0,-118 39,-118 39,-256"/>
|
||||
<polygon fill="none" stroke="black" points="0.5,-233 0.5,-256 39.5,-256 39.5,-233 0.5,-233"/>
|
||||
<text text-anchor="start" x="11.5" y="-240.8" font-family="arial" font-size="14.00">X1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-210 0.5,-233 39.5,-233 39.5,-210 0.5,-210"/>
|
||||
<text text-anchor="start" x="4.5" y="-217.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-187 0.5,-210 21.5,-210 21.5,-187 0.5,-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="21.5,-187 21.5,-210 39.5,-210 39.5,-187 21.5,-187"/>
|
||||
<text text-anchor="start" x="26.5" y="-194.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-164 0.5,-187 21.5,-187 21.5,-164 0.5,-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="21.5,-164 21.5,-187 39.5,-187 39.5,-164 21.5,-164"/>
|
||||
<text text-anchor="start" x="26.5" y="-171.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-141 0.5,-164 21.5,-164 21.5,-141 0.5,-141"/>
|
||||
<text text-anchor="start" x="6" y="-148.8" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="21.5,-141 21.5,-164 39.5,-164 39.5,-141 21.5,-141"/>
|
||||
<text text-anchor="start" x="26.5" y="-148.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="0.5,-118 0.5,-141 21.5,-141 21.5,-118 0.5,-118"/>
|
||||
<text text-anchor="start" x="6" y="-125.8" font-family="arial" font-size="14.00">D</text>
|
||||
<polygon fill="none" stroke="black" points="21.5,-118 21.5,-141 39.5,-141 39.5,-118 21.5,-118"/>
|
||||
<text text-anchor="start" x="26.5" 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="306,-288 183,-288 183,-104 306,-104 306,-288"/>
|
||||
<polygon fill="none" stroke="black" points="183.5,-265 183.5,-288 306.5,-288 306.5,-265 183.5,-265"/>
|
||||
<text text-anchor="start" x="236" y="-272.8" font-family="arial" font-size="14.00">C1</text>
|
||||
<polygon fill="none" stroke="black" points="183.5,-242 183.5,-265 306.5,-265 306.5,-242 183.5,-242"/>
|
||||
<text text-anchor="start" x="237.5" y="-249.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="204.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="231.5" y="-209.8" font-family="arial" font-size="14.00">     1:WH    </text>
|
||||
<polygon fill="#000000" stroke="none" points="183.5,-202 183.5,-204 306.5,-204 306.5,-202 183.5,-202"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="183.5,-200 183.5,-202 306.5,-202 306.5,-200 183.5,-200"/>
|
||||
<polygon fill="#000000" stroke="none" points="183.5,-198 183.5,-200 306.5,-200 306.5,-198 183.5,-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="234" y="-184.8" font-family="arial" font-size="14.00">     2:BN    </text>
|
||||
<polygon fill="#000000" stroke="none" points="183.5,-177 183.5,-179 306.5,-179 306.5,-177 183.5,-177"/>
|
||||
<polygon fill="#895956" stroke="none" points="183.5,-175 183.5,-177 306.5,-177 306.5,-175 183.5,-175"/>
|
||||
<polygon fill="#000000" stroke="none" points="183.5,-173 183.5,-175 306.5,-175 306.5,-173 183.5,-173"/>
|
||||
<text text-anchor="start" x="185.5" y="-159.8" font-family="arial" font-size="14.00">X1:3:C</text>
|
||||
<text text-anchor="start" x="232.5" y="-159.8" font-family="arial" font-size="14.00">     3:GN    </text>
|
||||
<polygon fill="#000000" stroke="none" points="183.5,-152 183.5,-154 306.5,-154 306.5,-152 183.5,-152"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="183.5,-150 183.5,-152 306.5,-152 306.5,-150 183.5,-150"/>
|
||||
<polygon fill="#000000" stroke="none" points="183.5,-148 183.5,-150 306.5,-150 306.5,-148 183.5,-148"/>
|
||||
<text text-anchor="start" x="185.5" y="-134.8" font-family="arial" font-size="14.00">X1:4:D</text>
|
||||
<text text-anchor="start" x="234" y="-134.8" font-family="arial" font-size="14.00">     4:YE    </text>
|
||||
<polygon fill="#000000" stroke="none" points="183.5,-127 183.5,-129 306.5,-129 306.5,-127 183.5,-127"/>
|
||||
<polygon fill="#ffff00" stroke="none" points="183.5,-125 183.5,-127 306.5,-127 306.5,-125 183.5,-125"/>
|
||||
<polygon fill="#000000" stroke="none" points="183.5,-123 183.5,-125 306.5,-125 306.5,-123 183.5,-123"/>
|
||||
<text text-anchor="start" x="204.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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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="M39,-197C103.25,-197.02 119.24,-199.02 183,-199"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M39,-199C103.01,-199 118.99,-201 183,-201"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-201C102.76,-200.98 118.75,-202.98 183,-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="M39,-173C103.13,-173 119.12,-174 183,-174"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M39,-175C103,-175 119,-176 183,-176"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-177C102.88,-177 118.87,-178 183,-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="M39,-150C102.88,-150 118.87,-149 183,-149"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M39,-152C103,-152 119,-151 183,-151"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-154C103.13,-154 119.12,-153 183,-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="M39,-127C102.64,-127.03 118.62,-124.03 183,-124"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M39,-129C103.01,-129 118.99,-126 183,-126"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-131C103.38,-130.97 119.36,-127.97 183,-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="497,-245.5 450,-245.5 450,-222.5 497,-222.5 497,-245.5"/>
|
||||
<polygon fill="none" stroke="black" points="450.5,-222 450.5,-245 497.5,-245 497.5,-222 450.5,-222"/>
|
||||
<text text-anchor="start" x="454.5" 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="768,-392 641,-392 641,-208 768,-208 768,-392"/>
|
||||
<polygon fill="none" stroke="black" points="641.5,-369 641.5,-392 768.5,-392 768.5,-369 641.5,-369"/>
|
||||
<text text-anchor="start" x="696" y="-376.8" font-family="arial" font-size="14.00">C2</text>
|
||||
<polygon fill="none" stroke="black" points="641.5,-346 641.5,-369 768.5,-369 768.5,-346 641.5,-346"/>
|
||||
<text text-anchor="start" x="697.5" y="-353.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="643.5" y="-332.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="651.5" y="-313.8" font-family="arial" font-size="14.00">     1:WH    </text>
|
||||
<text text-anchor="start" x="725" y="-313.8" font-family="arial" font-size="14.00">X2:1:A</text>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-306 641.5,-308 768.5,-308 768.5,-306 641.5,-306"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="641.5,-304 641.5,-306 768.5,-306 768.5,-304 641.5,-304"/>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-302 641.5,-304 768.5,-304 768.5,-302 641.5,-302"/>
|
||||
<text text-anchor="start" x="654" y="-288.8" font-family="arial" font-size="14.00">     2:BN    </text>
|
||||
<text text-anchor="start" x="725" y="-288.8" font-family="arial" font-size="14.00">X2:2:B</text>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-281 641.5,-283 768.5,-283 768.5,-281 641.5,-281"/>
|
||||
<polygon fill="#895956" stroke="none" points="641.5,-279 641.5,-281 768.5,-281 768.5,-279 641.5,-279"/>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-277 641.5,-279 768.5,-279 768.5,-277 641.5,-277"/>
|
||||
<text text-anchor="start" x="652.5" y="-263.8" font-family="arial" font-size="14.00">     3:GN    </text>
|
||||
<text text-anchor="start" x="724.5" y="-263.8" font-family="arial" font-size="14.00">X2:3:C</text>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-256 641.5,-258 768.5,-258 768.5,-256 641.5,-256"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="641.5,-254 641.5,-256 768.5,-256 768.5,-254 641.5,-254"/>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-252 641.5,-254 768.5,-254 768.5,-252 641.5,-252"/>
|
||||
<text text-anchor="start" x="654" y="-238.8" font-family="arial" font-size="14.00">     4:YE    </text>
|
||||
<text text-anchor="start" x="724.5" y="-238.8" font-family="arial" font-size="14.00">X2:4:D</text>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-231 641.5,-233 768.5,-233 768.5,-231 641.5,-231"/>
|
||||
<polygon fill="#ffff00" stroke="none" points="641.5,-229 641.5,-231 768.5,-231 768.5,-229 641.5,-229"/>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-227 641.5,-229 768.5,-229 768.5,-227 641.5,-227"/>
|
||||
<text text-anchor="start" x="643.5" 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="M497,-232C570.36,-233.96 571.64,-304.96 641,-303"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M497,-234C568.36,-234 569.64,-305 641,-305"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-236C566.36,-234.04 567.64,-305.04 641,-307"/>
|
||||
</g>
|
||||
<!-- C3 -->
|
||||
<g id="node10" class="node">
|
||||
<title>C3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="768,-184 641,-184 641,0 768,0 768,-184"/>
|
||||
<polygon fill="none" stroke="black" points="641.5,-161 641.5,-184 768.5,-184 768.5,-161 641.5,-161"/>
|
||||
<text text-anchor="start" x="696" y="-168.8" font-family="arial" font-size="14.00">C3</text>
|
||||
<polygon fill="none" stroke="black" points="641.5,-138 641.5,-161 768.5,-161 768.5,-138 641.5,-138"/>
|
||||
<text text-anchor="start" x="697.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
|
||||
<text text-anchor="start" x="643.5" y="-124.8" font-family="arial" font-size="14.00"> </text>
|
||||
<text text-anchor="start" x="651.5" y="-105.8" font-family="arial" font-size="14.00">     1:WH    </text>
|
||||
<text text-anchor="start" x="725" y="-105.8" font-family="arial" font-size="14.00">X3:1:A</text>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-98 641.5,-100 768.5,-100 768.5,-98 641.5,-98"/>
|
||||
<polygon fill="#ffffff" stroke="none" points="641.5,-96 641.5,-98 768.5,-98 768.5,-96 641.5,-96"/>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-94 641.5,-96 768.5,-96 768.5,-94 641.5,-94"/>
|
||||
<text text-anchor="start" x="654" y="-80.8" font-family="arial" font-size="14.00">     2:BN    </text>
|
||||
<text text-anchor="start" x="725" y="-80.8" font-family="arial" font-size="14.00">X3:2:B</text>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-73 641.5,-75 768.5,-75 768.5,-73 641.5,-73"/>
|
||||
<polygon fill="#895956" stroke="none" points="641.5,-71 641.5,-73 768.5,-73 768.5,-71 641.5,-71"/>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-69 641.5,-71 768.5,-71 768.5,-69 641.5,-69"/>
|
||||
<text text-anchor="start" x="652.5" y="-55.8" font-family="arial" font-size="14.00">     3:GN    </text>
|
||||
<text text-anchor="start" x="724.5" y="-55.8" font-family="arial" font-size="14.00">X3:3:C</text>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-48 641.5,-50 768.5,-50 768.5,-48 641.5,-48"/>
|
||||
<polygon fill="#00ff00" stroke="none" points="641.5,-46 641.5,-48 768.5,-48 768.5,-46 641.5,-46"/>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-44 641.5,-46 768.5,-46 768.5,-44 641.5,-44"/>
|
||||
<text text-anchor="start" x="654" y="-30.8" font-family="arial" font-size="14.00">     4:YE    </text>
|
||||
<text text-anchor="start" x="724.5" y="-30.8" font-family="arial" font-size="14.00">X3:4:D</text>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-23 641.5,-25 768.5,-25 768.5,-23 641.5,-23"/>
|
||||
<polygon fill="#ffff00" stroke="none" points="641.5,-21 641.5,-23 768.5,-23 768.5,-21 641.5,-21"/>
|
||||
<polygon fill="#000000" stroke="none" points="641.5,-19 641.5,-21 768.5,-21 768.5,-19 641.5,-19"/>
|
||||
<text text-anchor="start" x="643.5" 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="M497,-232C583.39,-234.46 550.72,-97.46 641,-95"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M497,-234C585.34,-234 552.66,-97 641,-97"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-236C587.28,-233.54 554.61,-96.54 641,-99"/>
|
||||
</g>
|
||||
<!-- F2 -->
|
||||
<g id="node3" class="node">
|
||||
<title>F2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="497,-198.5 450,-198.5 450,-175.5 497,-175.5 497,-198.5"/>
|
||||
<polygon fill="none" stroke="black" points="450.5,-175 450.5,-198 497.5,-198 497.5,-175 450.5,-175"/>
|
||||
<text text-anchor="start" x="454.5" 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="M497,-185C575.18,-187.18 566.81,-280.18 641,-278"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M497,-187C573.19,-187 564.81,-280 641,-280"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-189C571.19,-186.82 562.82,-279.82 641,-282"/>
|
||||
</g>
|
||||
<!-- F2--C3 -->
|
||||
<g id="edge19" class="edge">
|
||||
<title>F2:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-185C576.93,-187.34 557.12,-72.34 641,-70"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M497,-187C578.9,-187 559.1,-72 641,-72"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-189C580.88,-186.66 561.07,-71.66 641,-74"/>
|
||||
</g>
|
||||
<!-- F3 -->
|
||||
<g id="node4" class="node">
|
||||
<title>F3</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="497,-151.5 450,-151.5 450,-128.5 497,-128.5 497,-151.5"/>
|
||||
<polygon fill="none" stroke="black" points="450.5,-128 450.5,-151 497.5,-151 497.5,-128 450.5,-128"/>
|
||||
<text text-anchor="start" x="454.5" 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="M497,-138C580.88,-140.34 561.07,-255.34 641,-253"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M497,-140C578.9,-140 559.1,-255 641,-255"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-142C576.93,-139.66 557.12,-254.66 641,-257"/>
|
||||
</g>
|
||||
<!-- F3--C3 -->
|
||||
<g id="edge21" class="edge">
|
||||
<title>F3:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-138C571.19,-140.18 562.82,-47.18 641,-45"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M497,-140C573.19,-140 564.81,-47 641,-47"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-142C575.18,-139.82 566.81,-46.82 641,-49"/>
|
||||
</g>
|
||||
<!-- F4 -->
|
||||
<g id="node5" class="node">
|
||||
<title>F4</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="497,-104.5 450,-104.5 450,-81.5 497,-81.5 497,-104.5"/>
|
||||
<polygon fill="none" stroke="black" points="450.5,-81 450.5,-104 497.5,-104 497.5,-81 450.5,-81"/>
|
||||
<text text-anchor="start" x="454.5" 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="M497,-91C587.28,-93.46 554.61,-230.46 641,-228"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M497,-93C585.34,-93 552.66,-230 641,-230"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-95C583.39,-92.54 550.72,-229.54 641,-232"/>
|
||||
</g>
|
||||
<!-- F4--C3 -->
|
||||
<g id="edge23" class="edge">
|
||||
<title>F4:e--C3:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-91C566.36,-92.96 567.64,-21.96 641,-20"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M497,-93C568.36,-93 569.64,-22 641,-22"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-95C570.36,-93.04 571.64,-22.04 641,-24"/>
|
||||
</g>
|
||||
<!-- X2 -->
|
||||
<g id="node6" class="node">
|
||||
<title>X2</title>
|
||||
<polygon fill="#ffffff" stroke="black" points="951,-360 912,-360 912,-222 951,-222 951,-360"/>
|
||||
<polygon fill="none" stroke="black" points="912.5,-337 912.5,-360 951.5,-360 951.5,-337 912.5,-337"/>
|
||||
<text text-anchor="start" x="923.5" y="-344.8" font-family="arial" font-size="14.00">X2</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-314 912.5,-337 951.5,-337 951.5,-314 912.5,-314"/>
|
||||
<text text-anchor="start" x="916.5" y="-321.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-291 912.5,-314 931.5,-314 931.5,-291 912.5,-291"/>
|
||||
<text text-anchor="start" x="918" y="-298.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="931.5,-291 931.5,-314 951.5,-314 951.5,-291 931.5,-291"/>
|
||||
<text text-anchor="start" x="936.5" y="-298.8" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-268 912.5,-291 931.5,-291 931.5,-268 912.5,-268"/>
|
||||
<text text-anchor="start" x="918" y="-275.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="931.5,-268 931.5,-291 951.5,-291 951.5,-268 931.5,-268"/>
|
||||
<text text-anchor="start" x="936.5" y="-275.8" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-245 912.5,-268 931.5,-268 931.5,-245 912.5,-245"/>
|
||||
<text text-anchor="start" x="918" y="-252.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="931.5,-245 931.5,-268 951.5,-268 951.5,-245 931.5,-245"/>
|
||||
<text text-anchor="start" x="936.5" y="-252.8" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-222 912.5,-245 931.5,-245 931.5,-222 912.5,-222"/>
|
||||
<text text-anchor="start" x="918" y="-229.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="931.5,-222 931.5,-245 951.5,-245 951.5,-222 931.5,-222"/>
|
||||
<text text-anchor="start" x="936.5" 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="951,-152 912,-152 912,-14 951,-14 951,-152"/>
|
||||
<polygon fill="none" stroke="black" points="912.5,-129 912.5,-152 951.5,-152 951.5,-129 912.5,-129"/>
|
||||
<text text-anchor="start" x="923.5" y="-136.8" font-family="arial" font-size="14.00">X3</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-106 912.5,-129 951.5,-129 951.5,-106 912.5,-106"/>
|
||||
<text text-anchor="start" x="916.5" y="-113.8" font-family="arial" font-size="14.00">4-pin</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-83 912.5,-106 931.5,-106 931.5,-83 912.5,-83"/>
|
||||
<text text-anchor="start" x="918" y="-90.8" font-family="arial" font-size="14.00">1</text>
|
||||
<polygon fill="none" stroke="black" points="931.5,-83 931.5,-106 951.5,-106 951.5,-83 931.5,-83"/>
|
||||
<text text-anchor="start" x="936.5" y="-90.8" font-family="arial" font-size="14.00">A</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-60 912.5,-83 931.5,-83 931.5,-60 912.5,-60"/>
|
||||
<text text-anchor="start" x="918" y="-67.8" font-family="arial" font-size="14.00">2</text>
|
||||
<polygon fill="none" stroke="black" points="931.5,-60 931.5,-83 951.5,-83 951.5,-60 931.5,-60"/>
|
||||
<text text-anchor="start" x="936.5" y="-67.8" font-family="arial" font-size="14.00">B</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-37 912.5,-60 931.5,-60 931.5,-37 912.5,-37"/>
|
||||
<text text-anchor="start" x="918" y="-44.8" font-family="arial" font-size="14.00">3</text>
|
||||
<polygon fill="none" stroke="black" points="931.5,-37 931.5,-60 951.5,-60 951.5,-37 931.5,-37"/>
|
||||
<text text-anchor="start" x="936.5" y="-44.8" font-family="arial" font-size="14.00">C</text>
|
||||
<polygon fill="none" stroke="black" points="912.5,-14 912.5,-37 931.5,-37 931.5,-14 912.5,-14"/>
|
||||
<text text-anchor="start" x="918" y="-21.8" font-family="arial" font-size="14.00">4</text>
|
||||
<polygon fill="none" stroke="black" points="931.5,-14 931.5,-37 951.5,-37 951.5,-14 931.5,-14"/>
|
||||
<text text-anchor="start" x="936.5" 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="M306,-199C373.53,-200.28 386.21,-233.28 450,-232"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M306,-201C371.66,-201 384.34,-234 450,-234"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-203C369.79,-201.72 382.47,-234.72 450,-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="M306,-174C371.34,-174.36 386.96,-185.36 450,-185"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M306,-176C370.19,-176 385.81,-187 450,-187"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-178C369.04,-177.64 384.66,-188.64 450,-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="M306,-149C369.04,-149.36 384.66,-138.36 450,-138"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M306,-151C370.19,-151 385.81,-140 450,-140"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-153C371.34,-152.64 386.96,-141.64 450,-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="M306,-124C369.79,-125.28 382.47,-92.28 450,-91"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M306,-126C371.66,-126 384.34,-93 450,-93"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-128C373.53,-126.72 386.21,-93.72 450,-95"/>
|
||||
</g>
|
||||
<!-- C2--X2 -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-303C831.76,-303.02 847.75,-301.02 912,-301"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M768,-305C832.01,-305 847.99,-303 912,-303"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-307C832.25,-306.98 848.24,-304.98 912,-305"/>
|
||||
</g>
|
||||
<!-- C2--X2 -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>C2:e--X2:w</title>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-278C831.88,-278 847.87,-277 912,-277"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M768,-280C832,-280 848,-279 912,-279"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-282C832.13,-282 848.12,-281 912,-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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
<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="M768,-253C832.13,-253 848.12,-254 912,-254"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M768,-255C832,-255 848,-256 912,-256"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-257C831.88,-257 847.87,-258 912,-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="M768,-228C832.38,-228.03 848.36,-231.03 912,-231"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M768,-230C832.01,-230 847.99,-233 912,-233"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-232C831.64,-231.97 847.62,-234.97 912,-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="M768,-95C831.76,-95.02 847.75,-93.02 912,-93"/>
|
||||
<path fill="none" stroke="#ffffff" stroke-width="2" d="M768,-97C832.01,-97 847.99,-95 912,-95"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-99C832.25,-98.98 848.24,-96.98 912,-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="M768,-70C831.88,-70 847.87,-69 912,-69"/>
|
||||
<path fill="none" stroke="#895956" stroke-width="2" d="M768,-72C832,-72 848,-71 912,-71"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-74C832.13,-74 848.12,-73 912,-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="M768,-45C832.13,-45 848.12,-46 912,-46"/>
|
||||
<path fill="none" stroke="#00ff00" stroke-width="2" d="M768,-47C832,-47 848,-48 912,-48"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-49C831.88,-49 847.87,-50 912,-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="M768,-20C832.38,-20.03 848.36,-23.03 912,-23"/>
|
||||
<path fill="none" stroke="#ffff00" stroke-width="2" d="M768,-22C832.01,-22 847.99,-25 912,-25"/>
|
||||
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-24C831.64,-23.97 847.62,-26.97 912,-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: 26 KiB After Width: | Height: | Size: 31 KiB |