added 3d model for coil

This commit is contained in:
2017-01-10 14:04:02 +01:00
parent 703d820b95
commit 1b0f13bd16
4 changed files with 228 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,14 @@
#!/bin/bash
echo "Enter the path to the packages3d folder. This script will symlink all 3d models into this folder"
echo -n "Path: "
read packagedir
shimattadir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $packagedir
for lib in $shimattadir/*.shapes3d; do
echo "$lib"
if [[ -d "$lib" ]]; then
ln -s "$lib"
fi
done