aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2016-06-12 12:35:17 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2016-06-12 12:40:10 +0200
commit4d0ded8232f24370c586637c2ccd009725ffd53f (patch)
treed8df79e290b3f11b968261e713b5701a8bdeed85 /README.md
parent05347f2f8df2437c9a915858bc89035901feda5d (diff)
downloadfreecad-boxer-4d0ded8232f24370c586637c2ccd009725ffd53f.tar.gz
freecad-boxer-4d0ded8232f24370c586637c2ccd009725ffd53f.tar.bz2
freecad-boxer-4d0ded8232f24370c586637c2ccd009725ffd53f.tar.xz
freecad-boxer-4d0ded8232f24370c586637c2ccd009725ffd53f.zip
o More work on disabling sides.
Diffstat (limited to 'README.md')
-rw-r--r--README.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/README.md b/README.md
index 298feaf..969fea3 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,22 @@
FreeCAD module for creating boxes / cases suitable for laser cutting.
+
+# 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
+ import Boxer; import BoxerGui; import BoxerDockWidget
+
+ # Reloads all the modules
+ reload(Boxer); reload(BoxerGui); reload(BoxerDockWidget)
+
+## Possible new features
+
+**Make text labels indicating the box sides**:
+
+ import Draft
+ Draft.makeText(["Front"], point = FreeCAD.Vector(50.0,50.0,0.0))