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

Currently, affine2d_skew and affine3d_skew_xy have different behaviour. ```openscad include sq = square(10, center=true); m2 = affine2d_skew(45, 0); m3 = affine3d_skew_xy(45, 0); linear_extrude(1) polygon(apply(m2, sq)); translate([0, 0, 5]) multmatrix(m3) linear_extrude(1) polygon(sq);...

The torx depths are not meaningful: they are the minimum length of the GO gauge, not a typical recess depth. Recess depth should be much smaller.

These files need to be checked for usage text correctness according to our latest conventions, so with indication of positional vs named args, with [ATTACHMENTS]; if appropriate, possibly check for...

Now that there are several texture modules I wonder if they should be in their own file, maybe texture.scad. They aren't thematically very close to the other contents of skin.scad....

**Is your feature request related to a problem? Please describe.** The documentation for the text3d() module is a bit confusing in that the size parameter is referred to as "font...

**Code To Reproduce Bug** ``` path = [ each arc(r=8, corner=[[0,-20],[20,-20],[15,20]]), each arc(r=8, corner=[[20,-20],[15,20],[0,20]]), ]; tex = texture("vnf_dots"); textured_revolution(path, closed=false, texture="vnf_dots", tex_size=[5,5], samples=4); ``` **Expected behavior** Should create a rounded...

Bug

Clearly state multiple times the axis that spin operates around, because this is unexpected/non-intuitive. Cylinder example should show the spin=0 case as transparent object or second example for clarity. Show...

Docs

In seems like attachable() provides 4 services blended together: positioning the object, positioning of child objects, tagged operations, and coloring. Should we have a form of attachable for objects that...

Three of the modules in masks3d are not attachable. Two of them were written to take anchor, spin and orient args but ignored those args. I've cleaned that up and...

The intro in gears.scad is terse and has no pics. Expand intro to have a small diagram of each type of gear as they are described, and then include a...