Read time: 0.0 minutes (1 words)

part: rubber_motor

Design Notes

(None)

part Design File

rubber_motor/rubber_motor.scad
 1//##################################################
 2// rubber_motor.scad - Math-Magik-LPP
 3// (c) 2021 by Roie R Black
 4//==================================================
 5$fn=100;
 6include <MMlib/colors.scad>
 7
 8// alignment: centered along X axis
 9
10module rubber_motor() {
11	rotate([0,90,0])
12		color("Tan") cylinder(h=10, r=1/8);
13}
14
15//=================================================
16rubber_motor();

Component Data File(s)

rubber_motor/rubber_motor_data.scad
1//###################################################
2// rubber_motor_data.scad - Math-Magik-LPP
3// (c) 2021 by Roie R Black
4//===================================================
5
6rubber_motor_length = 10;
7rubber_motor_radius = 1/8;