OpenFlexure Microscope OpenSCAD docs

separate_z_actuator.scad

module separate_z_actuator_with_smart_brim(params)
[Source]
module separate_z_actuator_with_smart_brim(params){
    $fn=32;
    // Adds a smart brim to the z-only module to prevent the back from peeling upwards when printing
    // Smart brim is required instead of typical brim to prevent the brim affecting the internal structures
    smart_brim_r = key_lookup("smart_brim_r", params);
    exterior_brim(r=smart_brim_r){
        separate_z_actuator(params, cable_guides = false, cable_housing = false, rectangular = true);
    }
}