My self designed awesome 3D printer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

linear_bearing.scad 448B

12345678910111213141516171819
  1. // #######################################################
  2. // ################### Linear Bearings ###################
  3. // #######################################################
  4. lm8uu_outer = 15;
  5. lm8uu_inner = 8;
  6. lm8uu_height = 24;
  7. module lm8uu() {
  8. $fn = 15;
  9. difference() {
  10. cylinder(d = lm8uu_outer, h = lm8uu_height);
  11. translate([0, 0, -1])
  12. cylinder(d = lm8uu_inner, h = lm8uu_height + 2);
  13. }
  14. }
  15. //lm8uu();