BOSL2 icon indicating copy to clipboard operation
BOSL2 copied to clipboard

The Belfry OpenScad Library, v2.0. An OpenSCAD library of shapes, masks, and manipulators to make working with OpenSCAD easier. BETA

Results 65 BOSL2 issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** path_sweep(2d) is great to extrude complex curved shapes. But while the extruded shape (polygon) can easily be rounded, there's no...

**Describe the bug** I downloaded the latest version of the library today (3/9/2024), version 2.0.716. This never version has more functionality than the previous version I downloaded on on 2/19/2024,...

**Proposal** For my own library I've created hex_panel(), a module that produces a panel in any shape whose inkier is a honeycomb. I believe it would be a good addition...

**Describe the bug** When using `inside=true` together with `align=*` on `attach()` the object is positioned unexpectedly. **Code To Reproduce Bug** ``` cube([50,10,50]) { attach(FRONT,BOTTOM,align=BOTTOM+LEFT,inset=5) recolor("red") cube(10); attach(FRONT,BOTTOM,align=BOTTOM+RIGHT,inset=5, inside=true) recolor("blue") cube(10);...