如何将 scad 文件转换为 stl?

如何将 scad 文件转换为 stl?

我正在尝试将 scad 文件从 OpenSCAD 导出到 STL。我一直收到错误:

当前顶层对象不是 3D 模型。

如果它不是 3d 模型,如果我知道尺寸,我该如何将其转换为 3d 模型?

来源位于https://github.com/hugs/bitbeam

答案1

projection()调用使其成为 2D 对象。删除此行和最后}

use <arduino.scad>

beam_width = 7.9375;   // 5/16 inches

projection(){        // <------ REMOVE THIS
    difference(){

        // Base plate
        cube([8*9, beam_width * 9, 1]);

        // Bottom row
        for (x=[8 : 8 : beam_width * 10]) {
            translate([x-4, beam_width/2, -10])
            cylinder(r=2.4, h=20, $fn=25);
        }

        // Top row
        for (x=[8 : 8 : beam_width * 10]) {
            translate([x-4, (beam_width/2) + beam_width * 8, -10])
            cylinder(r=2.4, h=20, $fn=25);
       }

        translate([17,60,0]) MountingHoles();
    }
} // <----------- REMOVE THIS

// Uncomment next line if you want to see the entire board
//translate([17,60,2]) Arduino();

相关内容