symbol_frames.py zur Visualisierung der Grenzen um eine Symbol dazu
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
"""
|
||||
Kabellaengen Library Package
|
||||
|
||||
Dieses Package enthält alle Module für die Kabelrouting-Automatisierung.
|
||||
"""
|
||||
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
# Füge das lib Verzeichnis zum Python-Pfad hinzu,
|
||||
# damit relative Imports zwischen den Modulen funktionieren
|
||||
_lib_dir = Path(__file__).parent
|
||||
if str(_lib_dir) not in sys.path:
|
||||
sys.path.insert(0, str(_lib_dir))
|
||||
Reference in New Issue
Block a user