added 3d model for coil
This commit is contained in:
208
footprints/packages3d/smd.shapes3d/LPISM-13x9.55.x3d
Normal file
208
footprints/packages3d/smd.shapes3d/LPISM-13x9.55.x3d
Normal file
File diff suppressed because one or more lines are too long
14
footprints/packages3d/symlink.sh
Executable file
14
footprints/packages3d/symlink.sh
Executable 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
|
Reference in New Issue
Block a user