Prácticas con OpenSCAD
PRÁCTICAS CON OPENSCAD PRÁCTICA 1 : HACER UN CUBO. cube([2,3,4]);
PRÁCTICA 2: HACER UN CILINDRO. cylinder(h=40,r=10);
PRÁCTICA 3: ESFERA sphere(20);
I.E.S Valentín Turienzo
David Ortiz Madrazo 1ºBach.A
Página 1
Prácticas con OpenSCAD PRÁCTICA 4: POSICIONAR UN OBJETO cube([2,3,4]); translate([3,0,0]) { cube([2,3,4]); } Ejercicio: .- Hacer una cruz colocando 3 cubos en cada uno de los ejes.
PRACTICA 5: CUBO INTERSECTADO POR UN CILINDRO. difference() { cube(30, center=true); sphere(20); } translate([0, 0, 30]) { cylinder(h=40, r=10); }
I.E.S Valentín Turienzo
David Ortiz Madrazo 1ºBach.A
Página 2
Prácticas con OpenSCAD
PRÁCTICA 6: COLORES. color([1,0,0]) cube([2,3,4]); translate([3,0,0]) color([0,1,0]) cube([2,3,4]); translate([6,0,0]) color([0,0,1]) cube([2,3,4]);
Ejercicio: .- Haz el ejercicio 4 con un color en cada parte de la cruz. Solución: translate([3,0,0]) color([1,0,0]) sphere(1); translate([6,0,0]) color([1,0,0]) sphere(1); translate([9,0,0]) color([1,0,0]) sphere(1); translate([0,3,0]) color([0,1,0]) sphere(1); translate([0,6,0]) color([0,1,0]) sphere(1); translate([0,9,0]) color([0,1,0]) sphere(1); translate([0,0,3]) color([0,0,1]) sphere(1); translate([0,0,6]) color([0,0,1]) sphere(1); translate([0,0,9]) color([0,0,1]) sphere(1); I.E.S Valentín Turienzo
David Ortiz Madrazo 1ºBach.A
Página 3
Prácticas con OpenSCAD translate([-3,0,0]) color([1,1,0]) sphere(1); translate([-6,0,0]) color([1,1,0]) sphere(1); translate([-9,0,0]) color([1,1,0]) sphere(1); translate([0,-3,0]) color([0,1,1]) sphere(1); translate([0,-6,0]) color([0,1,1]) sphere(1); translate([0,-9,0]) color([0,1,1]) sphere(1); translate([0,0,-3] )color([1,1,1]) sphere(1); translate([0,0,-6]) color([1,1,1]) sphere(1); translate([0,0,-9]) color([1,1,1]) sphere(1); Otros:
OpenSCAD es un software para la creación de sólidos 3D. Es un software libre y está disponible tanto para GNU/Linux, MS Windows y Apple OS X. Pincha aquí http://www.openscad.org/
I.E.S Valentín Turienzo
David Ortiz Madrazo 1ºBach.A
Página 4