miroben<p><span class="h-card" translate="no"><a href="https://mastodon.social/@fmn" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>fmn</span></a></span> That was quick! I'm still learning, but really like <a href="https://mastodon.social/tags/openscad" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>openscad</span></a> and I like it even more since I discovered <a href="https://mastodon.social/tags/BOSL2" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>BOSL2</span></a>. Here is one way to make the same object using this library:</p><p>include <BOSL2/std.scad><br>$fn = ($preview ? 45 : 90);</p><p>vals=[360, 350, 1.5];<br>grid_size=[340,340];<br>hole_r = 2.75;</p><p>difference() <br>{<br> cuboid(vals, rounding=vals.z, except=BOTTOM, anchor=BOT);<br> grid_copies(size=grid_size, spacing=[10,10]) down(0.1) cylinder(r=hole_r, h=vals.z+0.2);<br>}</p>