Skip to content

Commit 58d3713

Browse files
authored
Merge pull request #238 from pathsim/feature/simulink-wire-routing
Simulink-style Wire Routing
2 parents 5ea9c07 + 3b08872 commit 58d3713

File tree

23 files changed

+2938
-240
lines changed

23 files changed

+2938
-240
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ CLAUDE.md
3737
tmpclaude-*
3838

3939

40-
*.Identifier
40+
__pycache__/

package-lock.json

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"@sveltejs/kit": "^2.0.0",
2424
"@sveltejs/vite-plugin-svelte": "^6.2.1",
2525
"@types/node": "^22.0.0",
26+
"@types/pathfinding": "^0.1.0",
2627
"@types/plotly.js": "^3.0.8",
2728
"eslint": "^9.0.0",
2829
"eslint-plugin-svelte": "^2.0.0",
@@ -39,6 +40,7 @@
3940
"@xyflow/svelte": "^1.5.0",
4041
"codemirror": "^6.0.0",
4142
"katex": "^0.16.0",
43+
"pathfinding": "^0.4.18",
4244
"plotly.js-dist-min": "^2.35.0",
4345
"pyodide": "^0.26.0"
4446
}

scripts/extract.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,6 @@
2424
from typing import Any
2525

2626

27-
# =============================================================================
28-
# PathSim Path Discovery
29-
# =============================================================================
30-
31-
PATHSIM_PATH = Path(__file__).parent.parent.parent / "pathsim" / "src"
32-
if PATHSIM_PATH.exists():
33-
sys.path.insert(0, str(PATHSIM_PATH))
34-
3527
# Optional docutils for RST to HTML conversion
3628
try:
3729
from docutils.core import publish_parts

0 commit comments

Comments
 (0)