IES Valentín Turienzo
TIC
PRÁCTICAS CON OPENSCAD
Es un software libre disponible para Linux/UNIX, MS Windows and Mac OS X para crear representaciones 3D. Picha aquí para descargar.
PRÁCTICA 1 : HACER UN CUBO. cube([2,3,4]);
PRÁCTICA 2: HACER UN CILINDRO. cylinder(h=40,r=10);
Natalia Retuerto Solana
1ºBach.A
IES Valentテュn Turienzo
TIC
PRテ,TICA 3: ESFERA sphere(20);
PRテ,TICA 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.
Natalia Retuerto Solana
1ツコBach.A
IES Valentテュn Turienzo
TIC
PRACTICA 5: CUBO INTERSECTADO POR UN CILINDRO. difference() { cube(30, center=true); sphere(20); } translate([0, 0, 30]) { cylinder(h=40, r=10); }
PRテ,TICA 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:
Natalia Retuerto Solana
1ツコBach.A
IES Valentín Turienzo
TIC
.- 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); 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:
Natalia Retuerto Solana
1ºBach.A
IES Valentín Turienzo
Natalia Retuerto Solana
TIC
1ºBach.A