Thingiverse
Simple pipe design to try remix
by bsurnida
0
Downloads
0
Likes
0
Makes
This is a simple pipe design to try remix
The scad is simple as below
// Parameters
inner_diameter = 57; // Inner diameter in mm
thickness = 2; // Wall thickness in mm
height = 5; // Length (height) in mm
// Outer diameter
outer_diameter = inner_diameter + 2 * thickness;
// Create the hollow cylinder
difference() {
// Outer cylinder
cylinder(h = height, d = outer_diameter, center = true);
// Inner cylinder (hollow part)
cylinder(h = height + 1, d = inner_diameter, center = true);
}
The scad is simple as below
// Parameters
inner_diameter = 57; // Inner diameter in mm
thickness = 2; // Wall thickness in mm
height = 5; // Length (height) in mm
// Outer diameter
outer_diameter = inner_diameter + 2 * thickness;
// Create the hollow cylinder
difference() {
// Outer cylinder
cylinder(h = height, d = outer_diameter, center = true);
// Inner cylinder (hollow part)
cylinder(h = height + 1, d = inner_diameter, center = true);
}
Did you print this model? Sign in and share your make!
Sign in to leave a comment
Sign inNo comments yet – be the first!