From dc05cbe4bad6961a4aa600c9c05b9c2df93e1a65 Mon Sep 17 00:00:00 2001 From: Roland Hieber Date: Fri, 7 Jun 2013 02:23:29 +0200 Subject: [PATCH] final example of fully customized bottle_clip() usage --- examples.scad | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/examples.scad b/examples.scad index c71383c..291a390 100644 --- a/examples.scad +++ b/examples.scad @@ -30,4 +30,11 @@ bottle_clip(name="Zero Cool"); // ...or DIN 6199 ("Steinie") beer bottles. Note that these have no logo. //bottle_clip_steinie(name="ohbier"); +// ...or just do your own variant: Measure the diameter of your bottle at two +// different heights, and pass those as parameters rl (lower diameter), ru +// (upper diameter) and ht (height) to the bottle_clip() module. You can also +// use the other parameters from above, if you set logo="", then only the text +// is rendered. +//bottle_clip(name="Niobe", rl=15, ru=12, ht=16, logo=""); + // vim: set noet ts=2 sw=2 tw=80: