diff --git a/CadQuery/Libs/cadquery-lib/README.md b/CadQuery/Libs/cadquery-lib/README.md
index 29775d0..75c50da 100644
--- a/CadQuery/Libs/cadquery-lib/README.md
+++ b/CadQuery/Libs/cadquery-lib/README.md
@@ -34,6 +34,83 @@ It has tons of awesome features like integration with FreeCAD so you can see you
We also have a Google Group to make it easy to get help from other CadQuery users. Please join the group and introduce yourself, and we would also love to hear what you are doing with CadQuery. https://groups.google.com/forum/#!forum/cadquery
+Examples
+======================
+
+This resin mold was modeled using cadquery and then created on a CNC machine:
+
+
+
+
+
+
+The cadquery script is surprisingly short, and allows easily customizing any of the variables::
+
+ import cadquery as cq
+ from Helpers import show
+ BS = cq.selectors.BoxSelector
+
+ # PARAMETERS
+ mount_holes = True
+
+ # mold size
+ mw = 40
+ mh = 13
+ ml = 120
+
+ # wire and fix size
+ wd = 6 # wire diameter
+ rt = 7 # resin thickness
+ rl = 50 # resin length
+ rwpl = 10 # resin to wire pass length
+
+ # pocket fillet
+ pf = 18
+
+ # mount holes
+ mhd = 7 # hole diameter
+ mht = 3 # hole distance from edge
+
+ # filling hole
+ fhd = 6
+
+ # DRAWING
+
+ # draw base
+ base = cq.Workplane("XY").box(ml, mw, mh, (True, True, False))
+
+ # draw wire
+ pocket = cq.Workplane("XY", (0, 0, mh)).moveTo(-ml/2., 0).line(0, wd/2.)\
+ .line((ml-rl)/2.-rwpl, 0).line(rwpl, rt).line(rl, 0)\
+ .line(rwpl, -rt).line((ml-rl)/2.-rwpl, 0)\
+ .line(0, -(wd/2.)).close().revolve(axisEnd=(1, 0))\
+ .edges(BS((-rl/2.-rwpl-.1, -100, -100), (rl/2.+rwpl+.1, 100, 100)))\
+ .fillet(pf)
+
+ r = base.cut(pocket)
+
+ # mount holes
+ if mount_holes:
+ px = ml/2.-mht-mhd/2.
+ py = mw/2.-mht-mhd/2
+ r = r.faces("`_ ), a popular framework that
+CadQuery is inspired by jQuery, a popular framework that
revolutionized web development involving javascript.
If you are familiar with how jQuery, you will probably recognize several jQuery features that CadQuery uses:
diff --git a/CadQuery/Libs/cadquery-lib/doc/_static/hyOzd-cablefix.png b/CadQuery/Libs/cadquery-lib/doc/_static/hyOzd-cablefix.png
new file mode 100644
index 0000000..2831731
Binary files /dev/null and b/CadQuery/Libs/cadquery-lib/doc/_static/hyOzd-cablefix.png differ
diff --git a/CadQuery/Libs/cadquery-lib/doc/_static/hyOzd-finished.jpg b/CadQuery/Libs/cadquery-lib/doc/_static/hyOzd-finished.jpg
new file mode 100644
index 0000000..ec56567
Binary files /dev/null and b/CadQuery/Libs/cadquery-lib/doc/_static/hyOzd-finished.jpg differ