
Parametric dovetail generator for OpenScad
prusaprinters
<p>Create parametric dovetail.</p><p>You want to print a OpenSCAD design too large for your 3D printer ?</p><p>Try to cut them with a dovetail !</p><p>Updated version : <a href="https://github.com/hugokernel/OpenSCAD_Dovetail">https://github.com/hugokernel/OpenSCAD\_Dovetail</a></p><h3>Example</h3><pre><code class="language-plaintext">// Your amazing design you want to cut module amazing_design() { cube(size=[50, 50, 10], center=true); } // First, setup the cutting position: middle cut position = [0, 0, 0]; // Next, setup the dimension of the cut: use the bounding box of your design dimension = [50, 50, 10]; // Finally, setup the dovetail: // - Teeth count // - Teeth height // - Teeth Clearance teeth = [5, 8, 0.5]; // Now, cut ! // Extract the first part... intersection() { amazing_design(); cutter(position=[0, 0, 0], dimension=dimension, teeths=teeth, male=true); } // ... and the second part intersection() { amazing_design(); cutter(position=[0, 0, 0], dimension=dimension, teeths=teeth, male=false); }</code></pre><p>Category: Other</p>
With this file you will be able to print Parametric dovetail generator for OpenScad with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on Parametric dovetail generator for OpenScad.