Search models, users, collections, and posts

pot liner without drain hole

IP Report

Print Profile(1)

All
A1
A1 mini
P1S
X1
P1P
H2D
X1E
X1 Carbon
H2D Pro
H2S
P2S
H2C
X2D
A2L

0.2mm layer, 4 walls, 20% infill
0.2mm layer, 4 walls, 20% infill
Designer
3.9 h
1 plate

Open in Bambu Studio
Boost
4
4
0
0
9
5
Released 

Description

its a pot liner i made for wife. not optmized. my first model.  used openscad to make this.

 

---code start----------

// Units: mm
height = 120;
top_diameter = 125;
bottom_diameter = 90;
wall_thickness = 2;

$fn = 100;

module pot_liner() {
   difference() {
       // Outer shell
       cylinder(h = height, d1 = bottom_diameter, d2 = top_diameter);

       // Inner hollow part
       translate([0, 0, wall_thickness])  // Start a bit above bottom
           cylinder(h = height - wall_thickness, 
                    d1 = bottom_diameter - 2 * wall_thickness, 
                    d2 = top_diameter - 2 * wall_thickness);
   }
}

pot_liner();

 

 

---------code end---------

Comment & Rating (0)

(0/1000)