2017-04-23 10:52:45 +08:00
# rounded_cube
2021-02-20 20:25:58 +08:00
Creates a cube in the first octant.
2017-04-23 10:52:45 +08:00
## Parameters
- `size` : Accepts a single value, cube with all sides this length. It also accepts 3 value array `[x, y, z]` , cube with dimensions `x` , `y` and `z` .
- `corner_r` : The corner is one-eight of a sphere. The `corner_r` parameter determines the sphere radius.
- `center` : `false` (default), 1st (positive) octant, one corner at (0,0,0). `true` , cube is centered at (0,0).
2017-04-26 21:12:37 +08:00
- `$fa` , `$fs` , `$fn` : Used to control the eight quadrants. Check [the circle module ](https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Using_the_2D_Subsystem#circle ) for more details. The final fragments of a sphere will be a multiple of 4 to fit edges.
2017-04-23 10:52:45 +08:00
## Examples
2020-01-28 17:51:20 +08:00
use < rounded_cube.scad > ;
2017-04-23 10:52:45 +08:00
rounded_cube(20, 5);
2021-02-20 20:25:58 +08:00
![rounded_cube ](images/lib3x-rounded_cube-1.JPG )
2017-04-23 10:52:45 +08:00
2020-01-28 17:51:20 +08:00
use < rounded_cube.scad > ;
2017-04-23 10:52:45 +08:00
rounded_cube(
size = [50, 25, 15],
corner_r = 5,
center = true
);
2021-02-20 20:25:58 +08:00
![rounded_cube ](images/lib3x-rounded_cube-2.JPG )
2017-04-23 10:52:45 +08:00
2020-01-28 17:51:20 +08:00
use < rounded_cube.scad > ;
2017-04-23 10:52:45 +08:00
$fn = 8;
rounded_cube(
size = [50, 25, 15],
corner_r = 5,
center = true
);
2021-02-20 20:25:58 +08:00
![rounded_cube ](images/lib3x-rounded_cube-3.JPG )
2017-04-23 10:52:45 +08:00