From 2d09b9ae5a7a563f7fa2fd6286d08d05e6405b2a Mon Sep 17 00:00:00 2001 From: Nicolas MASSE Date: Thu, 15 Mar 2018 15:04:53 +0100 Subject: [PATCH] children --- 010-Children/ball-bearing.scad | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/010-Children/ball-bearing.scad b/010-Children/ball-bearing.scad index 83da572..3c9b7a0 100644 --- a/010-Children/ball-bearing.scad +++ b/010-Children/ball-bearing.scad @@ -2,7 +2,7 @@ $fa=1; $fs=0.5; $fn = 50; -// Place balls inside the bearing groove based on a sample ball provided as +// Place balls inside the bearing groove, based on a sample ball provided as // children module place_evenly(n) { step = 360 / n; @@ -12,6 +12,13 @@ module place_evenly(n) { } } +// Create a ball bearing based on: +// - outer diameter +// - inner diameter +// - ball diameter +// - width +// - groove depth (as a percentage of the ball size) +// - space between balls (as a percentage of the ball size) module ball_bearing(od, id, bd, width, groove, space) { center_line_radius = (od-id)/4+id/2;