Pratique pour la caisse?
https://www.youtube.com/watch?v=7ILHtAPY29I
eeeeet si on l'imprimait en 3d?
https://www.thingiverse.com/thing:2822039
ce serait drole de trier en masse et avoir un compteur
On a designé une partie à imprimer en 3D. C'est fait paramétriquement avec OpenSCAD
gap = 30;
coins=[25.75,24.25,23.25, 22.25, 21.25, 19.75, 18.75, 16.25];
// holes have a width of 2 coins =~ 50
hole_width = 50;
bar_height = 50;
bar_depth = 3;
a_lot = 30; // this is the depth of the hole, make it a lot
hole_vertical_offset = 5;
ramp_height = 5;
ramp_depth = 20;
start_width = 70;
difference(){
translate([-gap,0,0]) // keep a gap on the left
cube([(hole_width + gap)*len(coins) + start_width,bar_height,bar_depth]);
union(){
for (i=[0:len(coins) - 1]){
trans = i*gap + i * hole_width;
translate([trans,hole_vertical_offset,-a_lot/2])
cube([hole_width, coins[i] - hole_vertical_offset, a_lot]);
}
}
}
translate([-gap, -ramp_height, 0])
cube([(hole_width + gap) * len(coins) + start_width, ramp_height, ramp_depth]);