Add openscad app to close #556
parent
ef351ab35f
commit
74f3bdf484
@ -0,0 +1 @@
|
|||||||
|
|
@ -0,0 +1,16 @@
|
|||||||
|
OpenSCAD is software for creating solid 3D CAD models.
|
||||||
|
|
||||||
|
Unlike most free software for creating 3D models, OpenSCAD does not focus on
|
||||||
|
the artistic aspects of 3D modelling but instead on the CAD aspects.
|
||||||
|
OpenSCAD is more suitable for creating 3D models of machine parts but
|
||||||
|
perhaps not when creating computer-animated movies.
|
||||||
|
|
||||||
|
OpenSCAD is not an interactive modeller. Instead OpenSCAD is something like
|
||||||
|
a 3D-compiler that reads in a script file that describes the object
|
||||||
|
and renders the 3D model from this script file. This gives designers
|
||||||
|
full control over the modelling process and enables them to easily
|
||||||
|
change any step in the modelling process or make designs that are
|
||||||
|
defined by configurable parameters.
|
||||||
|
|
||||||
|
To run: Menu -> Graphics -> OpenSCAD
|
||||||
|
To run in a terminal: OpenSCAD.AppImage
|
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.7 KiB |
@ -0,0 +1,25 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||||
|
|
||||||
|
function error {
|
||||||
|
echo -e "\\e[91m$1\\e[39m"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
wget 'https://github.com/koendv/openscad-raspberrypi/releases/download/v1.6/OpenSCAD-2021.03.26-armhf.AppImage' -O ~/OpenSCAD.AppImage || error "Failed to download appimage!"
|
||||||
|
|
||||||
|
chmod +x ~/OpenSCAD.AppImage || error "Failed to mark as executable!"
|
||||||
|
|
||||||
|
echo "[Desktop Entry]
|
||||||
|
Name=OpenSCAD
|
||||||
|
GenericName=The Programmers Solid 3D CAD Modeller
|
||||||
|
Comment=OpenSCAD is a software for creating 3D CAD objects.
|
||||||
|
Exec=bash -c 'sudo modprobe fuse; ~/OpenSCAD.AppImage'
|
||||||
|
Icon=$(dirname $0)/icon-64.png
|
||||||
|
Terminal=false
|
||||||
|
Type=Application
|
||||||
|
MimeType=application/x-openscad;
|
||||||
|
Categories=Graphics;3DGraphics;Engineering;
|
||||||
|
Keywords=3d;solid;geometry;csg;model;stl;
|
||||||
|
StartupNotify=true" > ~/.local/share/applications/OpenSCAD.desktop || error "Failed to create menu button!"
|
@ -0,0 +1,25 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||||
|
|
||||||
|
function error {
|
||||||
|
echo -e "\\e[91m$1\\e[39m"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
wget 'https://files.openscad.org/OpenSCAD-2021.01-aarch64.AppImage' -O ~/OpenSCAD.AppImage || error "Failed to download appimage!"
|
||||||
|
|
||||||
|
chmod +x ~/OpenSCAD.AppImage || error "Failed to mark as executable!"
|
||||||
|
|
||||||
|
echo "[Desktop Entry]
|
||||||
|
Name=OpenSCAD
|
||||||
|
GenericName=The Programmers Solid 3D CAD Modeller
|
||||||
|
Comment=OpenSCAD is a software for creating 3D CAD objects.
|
||||||
|
Exec=bash -c 'sudo modprobe fuse; ~/OpenSCAD.AppImage'
|
||||||
|
Icon=$(dirname $0)/icon-64.png
|
||||||
|
Terminal=false
|
||||||
|
Type=Application
|
||||||
|
MimeType=application/x-openscad;
|
||||||
|
Categories=Graphics;3DGraphics;Engineering;
|
||||||
|
Keywords=3d;solid;geometry;csg;model;stl;
|
||||||
|
StartupNotify=true" > ~/.local/share/applications/OpenSCAD.desktop || error "Failed to create menu button!"
|
@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||||
|
|
||||||
|
function error {
|
||||||
|
echo -e "\\e[91m$1\\e[39m"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
rm -f ~/OpenSCAD.AppImage ~/.local/share/applications/OpenSCAD.desktop
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
|
@ -0,0 +1,2 @@
|
|||||||
|
http://www.openscad.org/
|
||||||
|
https://github.com/koendv/openscad-raspberrypi
|
Loading…
Reference in New Issue