graflow 1.0

This commit is contained in:
STEINNI
2025-12-22 16:38:45 +00:00
parent 0b708c2dbd
commit 906dd7b317
8 changed files with 327 additions and 245 deletions
+30
View File
@@ -0,0 +1,30 @@
{
"nodesFile": "/app/assets/html/bzGraflow/nodesTest1.html",
"flow": {
"nodes":[
{ "nodeType": "inc",
"id": "aze",
"coords": { "x": 20, "y": 10}
},
{ "nodeType": "factor",
"id": "qsd",
"coords": { "x": 270, "y": 50}
},
{ "nodeType": "inc",
"id": "wcx",
"coords": { "x": 520, "y": 50}
},
{ "nodeType": "inc",
"id": "ert",
"coords": { "x": 150, "y": 350}
}
],
"links": [
{ "from": ["aze", "out1"], "to": ["qsd", "inp1"] },
{ "from": ["qsd", "out1"], "to": ["wcx", "inp1"] },
{ "from": ["qsd", "out1"], "to": ["ert", "inp2"] },
{ "from": ["ert", "out1"], "to": ["aze", "inp2"] }
]
}
}