<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>GuruBlog : Articles about openscad</title>
    <description>local-guru.net</description>
    <link>http://www.local-guru.net/blog</link>
    <ttl>40</ttl>
    <item>
      <title>3D printed Heptagonal-Finger-Ring</title>
      <link>http://www.local-guru.net//blog/2011/10/8/3D-printed-Heptagonal-Finger-Ring</link>
      <description>&lt;p&gt;I just printed a Heptagonal-Finger-Ring for my wife. I like 3d printed jewelry. And I also like to work with heptagons.
I dont't get that chance very often, since they don't make patterns that easy - at least not in an euclidian space that doesn't
cause your mind to explode&lt;/p&gt;

&lt;p&gt;you can
&lt;a href="http://www.local-guru.net/things/ring/ring1.scad"&gt;download the openscad source&lt;/a&gt;
or &lt;a href="http://www.local-guru.net/things/ring/ring1.stl"&gt;download the stl file&lt;/a&gt;
if you like to print one yourself&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/things/ring/ring1.jpg" alt="heptagonal ring" /&gt;&lt;/p&gt;
</description>
      <pubDate>2011-10-08T13:36:32+02:00</pubDate>
    </item>
    <item>
      <title>personalizing an Ikea pen holder with an 3D-Printer</title>
      <link>http://www.local-guru.net//blog/2011/10/5/personalizing-an-Ikea-pen-holder-with-an-3D-Printer</link>
      <description>&lt;p&gt;I own a Ikea-pen holder on my desk which I like very much, but It has one very large compartment in the front,
where I wanted to put my markers. Since I don't have enough markers to fill the whole compartment, I designed
a small box in openscad and printed it on my makerbot - et voila! a smaller compartment for my pens.&lt;/p&gt;

&lt;p&gt;The box is for sure not the biggest innovation in 3D desgin and I could have used cardboard boxes too,
but I really like the idea using a 3D printer to personalize off the shelf furniture :-)&lt;/p&gt;

&lt;p&gt;If you like to print your own you can &lt;a href="http://www.local-guru.net/things/pen_box/pen_box.scad"&gt;download the openscad-source&lt;/a&gt;
or &lt;a href="http://www.local-guru.net/things/pen_box/pen_box.stl"&gt;download the stl-file&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/things/pen_box/pen_box1.jpg" alt="Pen holder compartments" /&gt;
&lt;img src="http://www.local-guru.net/things/pen_box/pen_box2.jpg" alt="Pen holder compartments" /&gt;&lt;/p&gt;
</description>
      <pubDate>2011-10-05T06:54:09+02:00</pubDate>
    </item>
    <item>
      <title>3D-Printed Brush-Holder</title>
      <link>http://www.local-guru.net//blog/2011/4/25/3d-printed-brush-holder</link>
      <description>&lt;p&gt;Bathroom-real-estate is a very limited resource in our flat, so I designed a brush-holder that can
be glued to the wall and printed it on my makerbot.&lt;/p&gt;

&lt;p&gt;I really like how a 3D-printer helps from getting "would be nice if .." into "cool - lets try it"&lt;/p&gt;

&lt;p&gt;you can download the
&lt;a href="http://www.local-guru.net/things/brush-holder/brushholder.scad"&gt;brushholder openscad source&lt;/a&gt;
or the exported
&lt;a href="http://www.local-guru.net/things/brush-holder/brushholder.stl"&gt;brushholder stl&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/things/brush-holder/brushholder_sc.png" alt="brush holder" /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/things/brush-holder/brushholder.jpg" alt="brushholder" /&gt;&lt;/p&gt;
</description>
      <pubDate>2011-04-25T08:21:36+02:00</pubDate>
    </item>
    <item>
      <title>Parametric Button Generator</title>
      <link>http://www.local-guru.net//blog/2011/2/20/parametric-button-generator</link>
      <description>&lt;p&gt;Have you ever lost a button? One that is unique and cannot be found anywere? Do you want to sew something special
and need very special buttons?&lt;/p&gt;

&lt;p&gt;And do you own a 3D-Printer?&lt;/p&gt;

&lt;p&gt;Then there is a solution to your problems - The Parametric-Button-Generator!&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.local-guru.net/things/button/button.scad"&gt;Download the openscad file&lt;/a&gt;, adjust the parameters and print your buttons&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/things/button/button1.png" alt="example button" /&gt;
&lt;img src="http://www.local-guru.net/things/button/button2.png" alt="example button" /&gt;
&lt;img src="http://www.local-guru.net/things/button/button3.png" alt="example button" /&gt;&lt;/p&gt;
</description>
      <pubDate>2011-02-20T15:22:54+01:00</pubDate>
    </item>
    <item>
      <title>Printable Lighning</title>
      <link>http://www.local-guru.net//blog/2011/2/12/printable-lighning</link>
      <description>&lt;p&gt;I made a lightning bolt to test the openscad polygon and linear_extrude functions.&lt;br/&gt;
To define a polygon you have to define a set of 2D-coordinates and some sets that define the paths. In this example only one
path is defined that connects all the points. Then I extruded the polygon to make it 3D and centered it using translate, to
make it printable.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;translate(v=[0,-45,1]) {
    linear_extrude( height=2, center=true)
    polygon( points = [[-5,0], [15,40], [5, 55], [20, 75], [0, 90], [-15, 55 ], [2, 36]],
        paths=[[0,1,2,3,4,5,6]]
    );
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;you can download the &lt;a href="http://www.local-guru.net/things/lightning/lightning.scad"&gt;openscad source&lt;/a&gt; or the &lt;a href="http://www.local-guru.net/things/lightning/lightning.stl"&gt;stl file&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/things/lightning/lightning.png" alt="lightning" /&gt;&lt;/p&gt;
</description>
      <pubDate>2011-02-12T09:50:00+01:00</pubDate>
    </item>
    <item>
      <title>Generative Battery Compartment</title>
      <link>http://www.local-guru.net//blog/2010/12/6/generative-battery-compartment</link>
      <description>&lt;p&gt;I need Battery compartments for many of my electronics projects and buy them usually in various sizes, but since
i have a makerbot I am thinking about how to print them myself. So I just wrote a openscad-script that generates
battery compartments. It handles various battery types from AAA to D and can generate compartments for even
and odd battery numbers.&lt;/p&gt;

&lt;p&gt;Download the &lt;a href="http://www.local-guru.net/things/battery/battery.scad"&gt;OpenSCAD file&lt;/a&gt; enter the type and number
of batteries you need and generate a stl file. Then either add it to your model or use it as a standalone
compartment. The only thing you need to add (besides batteries) are litte metall stripes for the contacts.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/things/battery/AA2.jpg" alt="Battery Compartement" /&gt;
&lt;img src="http://www.local-guru.net/things/battery/2_AA_example.png" alt="2 AA batteries" /&gt;
&lt;img src="http://www.local-guru.net/things/battery/4_AAA_example.jpg" alt="4 AAA batteries" /&gt;&lt;/p&gt;
</description>
      <pubDate>2010-12-06T10:09:49+01:00</pubDate>
    </item>
    <item>
      <title>printed phonestand</title>
      <link>http://www.local-guru.net//blog/2010/1/11/printed-phonestand</link>
      <description>&lt;p&gt;I designed a simple stand for my phone unsing openscad.
&lt;a href="http://www.local-guru.net/things/phonestand.stl"&gt;click here&lt;/a&gt; to download the stl file
or &lt;a href="http://www.local-guru.net/things/phonestand.scad"&gt;click here&lt;/a&gt; for the openscad script&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/things/phonestand1.jpg" alt="cableclip1" /&gt;
&lt;img src="http://www.local-guru.net/things/phonestand2.jpg" alt="cableclip2" /&gt;&lt;/p&gt;
</description>
      <pubDate>2010-01-11T16:55:00+01:00</pubDate>
    </item>
  </channel>
</rss>

