mirror of
https://github.com/kennetek/gridfinity-rebuilt-openscad.git
synced 2024-11-17 22:10:50 +00:00
Removed whitespace in attempt to pass merge test
Pre-merge test showed a failure in removing 'trailing whitespace'. Some whitespaces removed in an attempt to pass this.
This commit is contained in:
parent
1bc283cf59
commit
2f2567d7a9
1 changed files with 2 additions and 2 deletions
|
@ -119,7 +119,7 @@ module cutEqualBins(bins_x=1, bins_y=1, len_x=1, len_y=1, pos_x=0, pos_y=0, styl
|
|||
// Calculate width and height of each bin based on total length and number of bins
|
||||
bin_width = len_x / bins_x;
|
||||
bin_height = len_y / bins_y;
|
||||
|
||||
|
||||
// Loop through each bin position in x and y direction
|
||||
for (i = [0:bins_x-1]) {
|
||||
for (j = [0:bins_y-1]) {
|
||||
|
@ -127,7 +127,7 @@ module cutEqualBins(bins_x=1, bins_y=1, len_x=1, len_y=1, pos_x=0, pos_y=0, styl
|
|||
// Adjust position by adding pos_x and pos_y to shift the entire grid of bins as needed
|
||||
bin_start_x = pos_x + i * bin_width;
|
||||
bin_start_y = pos_y + j * bin_height;
|
||||
|
||||
|
||||
// Call the cut module to create each bin with calculated position and dimensions
|
||||
// Pass through the style_tab and scoop parameters
|
||||
cut(bin_start_x, bin_start_y, bin_width, bin_height, style_tab, scoop, tab_width=tab_width, tab_height=tab_height);
|
||||
|
|
Loading…
Reference in a new issue