
3d 模型 外框 框架
// 哈雷双灯滑翔 14-19款 屏幕边框模型 // 适配 SoundStream HDHU.14Si // 基础参数 outer_width = 203; // 原厂开孔宽度 outer_height = 108; // 原厂开孔高度 frame_thickness = 3; // 边框厚度 screen_width = 190; // 屏幕外框宽度 screen_height = 100; // 屏幕外框高度 screw_hole_dist_h = 180; // 水平螺丝孔距 screw_hole_dist_v = 90; // 垂直螺丝孔距 screw_hole_dia = 4; // 螺丝孔直径 // 外层装饰框 difference() { cube([outer_width, outer_height, frame_thickness]); // 内层屏幕开孔 translate([(outer_width - screen_width)/2, (outer_height - screen_height)/2, 0]) cube([screen_width, screen_height, frame_thickness + 1]); } // 背部固定筋 for (i = [-1, 1]) { for (j = [-1, 1]) { translate([outer_width/2 + i*(screw_hole_dist_h/2), outer_height/2 + j*(screw_hole_dist_v/2), -10]) cube([5, 5, 10]); // 螺丝孔 translate([outer_width/2 + i*(screw_hole_dist_h/2), outer_height/2 + j*(screw_hole_dist_v/2), -8]) cylinder(r = screw_hole_dia
4K·v3.1-20260211









