// Dimensions principales
base_height = 10;        // Hauteur de la base (en mm)
base_radius = 60;        // Rayon de la base (en mm)
pole_height = 200;       // Hauteur du poteau central (en mm)
pole_radius = 10;        // Rayon du poteau (en mm)

// Création du porte-sopalin
porte_sopalin();

module porte_sopalin() {
    // Base du porte-sopalin
    cylinder(h = base_height, r = base_radius, center = false);
    
    // Poteau central
    translate([0, 0, base_height]) {
        cylinder(h = pole_height, r = pole_radius, center = false);
    }
}