documentation improvement on pr#5
fixed some spelling errors, made more general grouping to match vase mode scripts customizer
This commit is contained in:
parent
678f4ef8c6
commit
db9bfcc6df
1 changed files with 30 additions and 29 deletions
|
@ -26,47 +26,48 @@ $fa = 8;
|
||||||
$fs = 0.25;
|
$fs = 0.25;
|
||||||
|
|
||||||
/* [General Settings] */
|
/* [General Settings] */
|
||||||
gridx = 1; // number of bases along x-axis
|
// number of bases along x-axis
|
||||||
gridy = 1; // number of bases along y-axis
|
gridx = 1;
|
||||||
gridz = 6; // bin height. See bin height information and "gridz_define" below.
|
// number of bases along y-axis
|
||||||
length = 42;// base unit (if you want to go rogue ig)
|
gridy = 1;
|
||||||
|
// bin height. See bin height information and "gridz_define" below.
|
||||||
|
gridz = 6;
|
||||||
|
// base unit
|
||||||
|
length = 42;
|
||||||
|
|
||||||
/* [Divisions] */
|
/* [Compartments] */
|
||||||
// DivX Number of x Divisions
|
// DivX Number of x Divisions
|
||||||
divx = 1; //[1,2,3,4,5,6,7,8,9,10]
|
divx = 1;
|
||||||
|
|
||||||
// DivY Number of y Divisions
|
// DivY Number of y Divisions
|
||||||
divy = 1; //[1,2,3,4,5,6,7,8,9,10]
|
divy = 1;
|
||||||
/* [Holes] */
|
|
||||||
// Bottom screw/magnate holes?
|
/* [Toggles] */
|
||||||
enable_holes = true; // [ture:false]
|
// Bottom screw/magnet holes
|
||||||
// Extra cut for better slicing
|
enable_holes = true;
|
||||||
enable_hole_slit = true; // [true:false]
|
// Extra cut inside magnet holes for better slicing
|
||||||
/* [z Snap] */
|
enable_hole_slit = true;
|
||||||
enable_zsnap = false; // [true:false]
|
// Snap gridx height to nearest 7mm increment
|
||||||
/* [Stacking Lip?] */
|
enable_zsnap = false;
|
||||||
enable_lip = true; // [true:false]
|
// enable upper lip for stacking other bins
|
||||||
|
enable_lip = true;
|
||||||
|
// internal fillet for easy part removal
|
||||||
|
scoop = true;
|
||||||
|
|
||||||
|
/* [Other] */
|
||||||
|
|
||||||
// determine what the variable "gridz" applies to based on your use case
|
// determine what the variable "gridz" applies to based on your use case
|
||||||
// 0: gridz is the height of bins in units (7mm increments)
|
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]
|
||||||
// 1: gridz is the internal height in millimeters, or how tall an item inside the bin can be
|
// the type of tabs
|
||||||
// 2: gridz is the overall external height of the bin in millimeters
|
tab_style = 0; //[0:Full,1:Auto,2:Left,3:Center,4:Right,5:None]
|
||||||
/* [Gridz Define] */
|
|
||||||
gridz_define = 0; //[0:bin is 7mm increments, 1:Internal height, 2:External height]
|
|
||||||
|
|
||||||
/* [Tab Style] */
|
|
||||||
tab_style = 0; //[0:Full,1:Auto,2:Left,3:Center,4:Right,5:No Tab]
|
|
||||||
|
|
||||||
/*[Scoop]*/
|
|
||||||
scoop = true; //[true:false]
|
|
||||||
|
|
||||||
// ===== Commands ===== //
|
// ===== Commands ===== //
|
||||||
|
|
||||||
color("aqua")
|
color("tomato")
|
||||||
gridfinityEqual(n_divx = divx, n_divy = divy, style_tab = tab_style, enable_scoop = scoop);
|
gridfinityEqual(n_divx = divx, n_divy = divy, style_tab = tab_style, enable_scoop = scoop);
|
||||||
|
|
||||||
// ===== Reference Dimensions ===== //
|
// ===== Reference Dimensions ===== //
|
||||||
/*[Other features that can be reset]*/
|
/*[Other Miscellaneous Features]*/
|
||||||
h_base = 5; // height of the base
|
h_base = 5; // height of the base
|
||||||
r_base = 4; // outside rounded radius of bin
|
r_base = 4; // outside rounded radius of bin
|
||||||
r_c1 = 0.8; // lower base chamfer "radius"
|
r_c1 = 0.8; // lower base chamfer "radius"
|
||||||
|
|
Loading…
Reference in a new issue