Como converter arquivos scad para stl?

0

Estou tentando exportar arquivos scad de OpenSCAD para STL. Eu continuo recebendo um erro:

Current top level object is not a 3d model.

Se não é um modelo 3D, como faço para convertê-lo em modelo 3D? Se eu souber as dimensões?

A fonte está localizada em link

    
por Kevin Panko 24.06.2013 / 06:39

1 resposta

1

a chamada projection() faz dele um objeto 2D. remova esta linha e o último }

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();
    
por 24.06.2013 / 06:46

Tags