FreeCAD module for creating boxes / cases suitable for laser cutting. # Installation Create the installation directory: mkdir -p ~/.FreeCAD/Mod Either unzip the downloaded zip file or git clone the repository: cd ~/.FreeCAD/Mod unzip ../freecad-boxer.zip # or git clone https://trygvis.io/git/2016/05/freecad-boxer.git # Development ## Tips and tricks When developing this module make sure you have the *Python console* and *report views* visible. Enable them under View -> Panels if you don't have them visible. To reload the module when running: # This is only needed once def r(): import Boxer; import BoxerGui; import BoxerDockWidget reload(Boxer); reload(BoxerGui); reload(BoxerDockWidget) # Reloads all the modules r() ## Possible new features **Make text labels indicating the box sides**: import Draft Draft.makeText(["Front"], point = FreeCAD.Vector(50.0,50.0,0.0))