The Belfry OpenScad Library, v2.0. An OpenSCAD library of shapes, masks, and manipulators to make working with OpenSCAD easier. BETA
Find a file
Adrian Mariano 33d9ca4352 bug fix
2022-05-15 13:47:00 -04:00
.github
examples
images
scripts
tests
tutorials bug fixes 2022-05-15 11:47:44 -04:00
.gitignore
.openscad_docsgen_rc add tripod mount 2022-05-01 18:43:08 -04:00
.openscad_mdimggen_rc
affine.scad
attachments.scad rewrite of tag handling 2022-05-15 10:51:45 -04:00
beziers.scad degenerate examples for bezier normals 2022-04-26 22:39:16 -04:00
bosl1compat.scad
bottlecaps.scad Merge pull request #850 from adrianVmariano/master 2022-04-21 20:47:12 -07:00
builtins.scad bug fixes for "default" color 2022-03-20 09:03:18 -04:00
color.scad Typo fix: raindow() 2022-04-21 23:34:15 -07:00
comparisons.scad
constants.scad tags->tag 2022-05-15 13:05:24 -04:00
CONTRIBUTING.md
coords.scad usage messages fixes and some arg tweaks 2022-04-07 17:28:41 -04:00
cubetruss.scad make slop undef and add get_slop() 2022-04-11 22:18:52 -04:00
distributors.scad Major rework on joiners. 2022-04-24 18:18:24 -07:00
drawing.scad typo fix 2022-05-04 00:31:55 -04:00
fnliterals.scad
gears.scad file summary improvements and tweaks 2022-04-21 00:26:20 -04:00
geometry.scad
hingesnaps.scad file summary improvements and tweaks 2022-04-21 00:26:20 -04:00
joiners.scad bug fix 2022-05-15 13:47:00 -04:00
LICENSE Updated copyright years. Split math.scad up. Enabled attach for lots of shapes. Removed backwards compatability. 2019-04-19 17:02:17 -07:00
linalg.scad
linear_bearings.scad file summary improvements and tweaks 2022-04-21 00:26:20 -04:00
lists.scad
masks2d.scad Fixed weird default excess= in masks2d.scad. 2022-04-24 19:22:18 -07:00
masks3d.scad rewrite of tag handling 2022-05-15 10:51:45 -04:00
math.scad
metric_screws.scad
modular_hose.scad tags->tag 2022-05-15 13:05:24 -04:00
mutators.scad usage message fixes and doc tweaks 2022-04-08 19:37:46 -04:00
nema_steppers.scad file summary improvements and tweaks 2022-04-21 00:26:20 -04:00
partitions.scad make slop undef and add get_slop() 2022-04-11 22:18:52 -04:00
paths.scad file summary improvements and tweaks 2022-04-21 00:26:20 -04:00
polyhedra.scad usage fixes 2022-04-10 09:45:33 -04:00
README.md
regions.scad file summary improvements and tweaks 2022-04-21 00:26:20 -04:00
rounding.scad bugfix for offset_sweep check_valid 2022-05-06 19:03:52 -04:00
screw_drive.scad file summary improvements and tweaks 2022-04-21 00:26:20 -04:00
screws.scad doc tweak 2022-05-07 12:21:03 -04:00
shapes2d.scad rewrite of tag handling 2022-05-15 10:51:45 -04:00
shapes3d.scad tags->tag 2022-05-15 13:05:24 -04:00
skin.scad doc bugfix 2022-05-15 10:37:45 -04:00
sliders.scad make slop undef and add get_slop() 2022-04-11 22:18:52 -04:00
std.scad
strings.scad bug fixes 2022-05-15 11:47:44 -04:00
structs.scad file summary improvements and tweaks 2022-04-21 00:26:20 -04:00
threading.scad tags->tag 2022-05-15 13:05:24 -04:00
transforms.scad
trigonometry.scad
tripod_mounts.scad rewrite of tag handling 2022-05-15 10:51:45 -04:00
turtle3d.scad
utility.scad
vectors.scad
version.scad
vnf.scad Anchoring bugfixes. Added example to vnf_vertex_array() 2022-05-12 13:27:34 -07:00
walls.scad file summary improvements and tweaks 2022-04-21 00:26:20 -04:00
wiring.scad file summary improvements and tweaks 2022-04-21 00:26:20 -04:00
WRITING_DOCS.md

BOSL2

BOSL2 Logo

The Belfry OpenScad Library, v2

A library for OpenSCAD, filled with useful tools, shapes, masks, math and manipulators, designed to make OpenSCAD easier to use.

  • NOTE: BOSL2 IS BETA CODE. THE CODE IS STILL BEING REORGANIZED.
  • NOTE2: CODE WRITTEN FOR BOSLv1 PROBABLY WON'T WORK WITH BOSL2!

Join the chat at https://gitter.im/revarbat/BOSL2 BOSL2 Docs

Installation

  1. Download the .zip or .tar.gz release file for this library.
  2. Unpack it. Make sure that you unpack the whole file structure. Some zipfile unpackers call this option "Use folder names". It should create either a BOSL-v2.0 or BOSL2-master directory with the library files within it. You should see "examples", "scripts", "tests", and other subdirectories.
  3. Rename the unpacked main directory to BOSL2.
  4. Move the BOSL2 directory into the apropriate OpenSCAD library directory for your platform:
    • Windows: My Documents\OpenSCAD\libraries\
    • Linux: $HOME/.local/share/OpenSCAD/libraries/
    • Mac OS X: $HOME/Documents/OpenSCAD/libraries/
  5. Restart OpenSCAD.

Examples

A lot of the features of this library are to allow shorter, easier-to-read, intent-based coding. For example:

BOSL2/transforms.scad Examples Raw OpenSCAD Equivalent
up(5) translate([0,0,5])
xrot(30,cp=[0,10,20]) translate([0,10,20]) rotate([30,0,0]) translate([0,-10,-20])
xcopies(20,n=3) for (dx=[-20,0,20]) translate([dx,0,0])
zrot_copies(n=6,r=20) for (zr=[0:5]) rotate([0,0,zr*60]) translate([20,0,0])
skew_xy(xa=30,ya=45) multmatrix([[1,0,tan(30),0],[0,1,tan(45),0],[0,0,1,0],[0,0,0,1]])
BOSL2/shapes.scad Examples Raw OpenSCAD Equivalent
cube([10,20,30], anchor=BOTTOM); translate([0,0,15]) cube([10,20,30], center=true);
cuboid([20,20,30], fillet=5); minkowski() {cube([10,10,20], center=true); sphere(r=5, $fn=32);}
prismoid([30,40],[20,30],h=10); hull() {translate([0,0,0.005]) cube([30,40,0.01], center=true); translate([0,0,9.995]) cube([20,30,0.01],center=true);}
xcyl(l=20,d=4); rotate([0,90,0]) cylinder(h=20, d=4, center=true);
cyl(l=100, d=40, fillet=5); translate([0,0,50]) minkowski() {cylinder(h=90, d=30, center=true); sphere(r=5);}

Documentation

The full library docs can be found at https://github.com/revarbat/BOSL2/wiki