2019-04-19 06:45:46 +00:00
# BOSL2
2020-12-30 23:44:17 +00:00
![BOSL2 Logo ](images/BOSL2logo.png )
2019-05-05 04:24:08 +00:00
2019-05-05 19:07:47 +00:00
**The Belfry OpenScad Library, v2**
2019-05-05 19:08:05 +00:00
2019-05-05 18:58:18 +00:00
A library for OpenSCAD, filled with useful tools, shapes, masks, math and manipulators, designed to make OpenSCAD easier to use.
2017-08-30 00:59:43 +00:00
2022-07-11 03:58:19 +00:00
Requires OpenSCAD 2021.01 or later.
2021-04-13 22:10:56 +00:00
- **NOTE:** BOSL2 IS BETA CODE. THE CODE IS STILL BEING REORGANIZED.
2019-05-05 18:58:18 +00:00
- **NOTE2:** CODE WRITTEN FOR BOSLv1 PROBABLY WON'T WORK WITH BOSL2!
2017-08-30 00:59:43 +00:00
2023-05-22 04:00:05 +00:00
[![Join the chat at https://gitter.im/BelfrySCAD/BOSL2 ](https://badges.gitter.im/BelfrySCAD/BOSL2.svg )](https://gitter.im/BelfrySCAD/BOSL2?utm_source=badge& utm_medium=badge& utm_campaign=pr-badge& utm_content=badge)
2023-05-04 03:20:26 +00:00
## Documentation
2023-05-22 04:00:05 +00:00
You can find the full BOSL2 library documentation at: https://github.com/BelfrySCAD/BOSL2/wiki
2023-05-04 03:20:26 +00:00
2019-05-05 19:09:20 +00:00
2019-05-05 18:58:18 +00:00
## Installation
2023-05-22 04:00:05 +00:00
1. Download the .zip or .tar.gz release file for this library. Currently you should be able to find this at https://github.com/BelfrySCAD/BOSL2/archive/refs/heads/master.zip
2020-12-13 01:42:14 +00:00
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` .
2019-05-05 18:58:18 +00:00
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.
2019-02-22 06:00:32 +00:00
## Examples
A lot of the features of this library are to allow shorter, easier-to-read, intent-based coding. For example:
2023-05-22 04:00:05 +00:00
[`BOSL2/transforms.scad` ](https://github.com/BelfrySCAD/BOSL2/wiki/transforms.scad ) Examples | Raw OpenSCAD Equivalent
2019-02-22 06:39:10 +00:00
------------------------------- | -------------------------------
`up(5)` | `translate([0,0,5])`
2019-02-22 06:40:34 +00:00
`xrot(30,cp=[0,10,20])` | `translate([0,10,20]) rotate([30,0,0]) translate([0,-10,-20])`
2021-04-13 22:10:56 +00:00
`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])`
2022-07-11 03:58:19 +00:00
`skew(sxz=0.5,syz=0.333)` | `multmatrix([[1,0,0.5,0],[0,1,0.333,0],[0,0,1,0],[0,0,0,1]])`
2019-02-22 06:39:10 +00:00
2023-05-22 04:00:05 +00:00
[`BOSL2/shapes.scad` ](https://github.com/BelfrySCAD/BOSL2/wiki/shapes.scad ) Examples | Raw OpenSCAD Equivalent
2019-02-22 06:39:10 +00:00
---------------------------------- | -------------------------------
2019-04-23 22:59:43 +00:00
`cube([10,20,30], anchor=BOTTOM);` | `translate([0,0,15]) cube([10,20,30], center=true);`
2022-07-11 03:58:19 +00:00
`cuboid([20,20,30], rounding=5);` | `minkowski() {cube([10,10,20], center=true); sphere(r=5, $fn=32);}`
2019-02-24 15:09:47 +00:00
`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);}`
2019-02-22 06:39:10 +00:00
`xcyl(l=20,d=4);` | `rotate([0,90,0]) cylinder(h=20, d=4, center=true);`
2023-05-04 03:20:26 +00:00
`cyl(l=100, d=40, rounding=5);` | `minkowski() {cylinder(h=90, d=30, center=true); sphere(r=5);}`
`tube(od=40,wall=5,h=30);` | `difference() {cylinder(d=40,h=30,center=true); cylinder(d=30,h=31,center=true);}`
`torus(d_maj=100, d_min=30);` | `rotate_extrude() translate([50,0,0]) circle(d=30);`
2017-08-31 03:29:49 +00:00
2021-04-13 22:10:56 +00:00