2022-11-06 06:19:56 +00:00
include < gridfinity-rebuilt-utility.scad >
2022-11-17 19:58:46 +00:00
// ===== INFORMATION ===== //
/*
IMPORTANT : rendering will be better for analyzing the model if fast - csg is enabled . As of writing , this feature is only available in the development builds and not the official release of OpenSCAD , but it makes rendering only take a couple seconds , even for comically large bins . Enable it in Edit > Preferences > Features > fast - csg
https : //github.com/kennetek/gridfinity-rebuilt-openscad
* /
// ===== PARAMETERS ===== //
2022-11-06 06:19:56 +00:00
/* [Setup Parameters] */
$fa = 8 ;
$fs = 0.25 ;
/* [General Settings] */
// number of bases along x-axis
gridx = 3 ;
// number of bases along y-axis
gridy = 3 ;
// bin height. See bin height information and "gridz_define" below.
2023-05-31 15:46:30 +00:00
gridz = 6 ;
2022-11-06 06:19:56 +00:00
/* [Compartments] */
// number of X Divisions
divx = 2 ;
// number of y Divisions
divy = 2 ;
/* [Toggles] */
// snap gridz height to nearest 7mm increment
enable_zsnap = false ;
2023-02-14 22:17:06 +00:00
// how should the top lip act
style_lip = 0 ; //[0: Regular lip, 1:remove lip subtractively, 2: remove lip and retain height]
2022-11-06 06:19:56 +00:00
/* [Other] */
// determine what the variable "gridz" applies to based on your use case
gridz_define = 0 ; // [0:gridz is the height of bins in units of 7mm increments - Zack's method,1:gridz is the internal height in millimeters, 2:gridz is the overall external height of the bin in millimeters]
// the type of tabs
style_tab = 1 ; //[0:Full,1:Auto,2:Left,3:Center,4:Right,5:None]
/* [Base] */
2022-11-18 01:26:43 +00:00
style_hole = 0 ; // [0:no holes, 1:magnet holes only, 2: magnet and screw holes - no printable slit, 3: magnet and screw holes - printable slit]
2023-02-17 17:23:59 +00:00
// only cut magnet/screw holes at the corners of the bin to save uneccesary print time
2023-03-20 17:48:28 +00:00
only_corners = false ;
2022-11-06 06:19:56 +00:00
// number of divisions per 1 unit of base along the X axis. (default 1, only use integers. 0 means automatically guess the right division)
div_base_x = 0 ;
// number of divisions per 1 unit of base along the Y axis. (default 1, only use integers. 0 means automatically guess the right division)
div_base_y = 0 ;
2023-02-15 16:04:27 +00:00
// thickness of bottom layer
bottom_layer = 1 ;
2022-11-06 06:19:56 +00:00
2022-11-17 19:58:46 +00:00
// ===== IMPLEMENTATION ===== //
2022-11-06 06:19:56 +00:00
// Input all the cutter types in here
2022-11-18 01:26:43 +00:00
color ( "tomato" )
2023-05-31 17:01:00 +00:00
gridfinityLite ( gridx , gridy , gridz , gridz_define , style_lip , enable_zsnap , l_grid , div_base_x , div_base_y , style_hole , only_corners ) {
2023-02-14 22:17:06 +00:00
cutEqual ( n_divx = divx , n_divy = divy , style_tab = style_tab , scoop_weight = 0 ) ;
2022-11-06 06:19:56 +00:00
}
2022-11-17 19:58:46 +00:00
// ===== CONSTRUCTION ===== //
2022-11-06 06:19:56 +00:00
2023-03-20 17:48:28 +00:00
module gridfinityLite ( gridx , gridy , gridz , gridz_define , style_lip , enable_zsnap , length , div_base_x , div_base_y , style_hole , only_corners ) {
2022-11-06 06:19:56 +00:00
difference ( ) {
union ( ) {
2023-02-14 22:17:06 +00:00
gridfinityInit ( gridx , gridy , height ( gridz , gridz_define , style_lip , enable_zsnap ) , 0 , length )
2022-11-18 01:26:43 +00:00
children ( ) ;
2023-03-20 17:48:28 +00:00
gridfinityBase ( gridx , gridy , length , div_base_x , div_base_y , style_hole , only_corners = only_corners ) ;
2022-11-18 01:26:43 +00:00
}
difference ( ) {
union ( ) {
intersection ( ) {
difference ( ) {
2023-03-20 17:48:28 +00:00
gridfinityBase ( gridx , gridy , length , div_base_x , div_base_y , style_hole , - d_wall * 2 , false , only_corners = only_corners ) ;
2022-11-18 01:26:43 +00:00
translate ( [ - gridx * length / 2 , - gridy * length / 2 , 2 * h_base ] )
cube ( [ gridx * length , gridy * length , 1000 ] ) ;
}
translate ( [ 0 , 0 , - 1 ] )
rounded_rectangle ( gridx * length - 0.5005 - d_wall * 2 , gridy * length - 0.5005 - d_wall * 2 , 1000 , r_f2 ) ;
2023-02-15 16:04:27 +00:00
translate ( [ 0 , 0 , bottom_layer ] )
rounded_rectangle ( gridx * 1000 , gridy * 1000 , 1000 , r_f2 ) ;
2022-11-06 06:19:56 +00:00
}
2022-11-18 01:26:43 +00:00
translate ( [ 0 , 0 , h_base + d_clear ] )
rounded_rectangle ( gridx * length - 0.5005 - d_wall * 2 , gridy * length - 0.5005 - d_wall * 2 , h_base , r_f2 ) ;
2022-11-06 06:19:56 +00:00
}
2022-11-18 01:26:43 +00:00
translate ( [ 0 , 0 , - 4 * h_base ] )
gridfinityInit ( gridx , gridy , height ( 20 , 0 ) , 0 , length )
children ( ) ;
2022-11-06 06:19:56 +00:00
}
}
}