Practicas con openscad

Page 1

Tecnologías de la Información y Comunicación 1 Jaime Velázquez Lomas

PRÁCTICAS CON OPENSCAD OpenScad es un sencillo programa para el diseño de piezas sólidas (.stl) en 3D. Es un software libre válido para Linux/UNIX, Windows y Mac OS X. Es de software libre, con lo que no tendremos que pagar nada y tambien y lo mejoras tu por tu cuenta lo podras compartir.

HAZ CLICK PARA DESCARGAR http://www.openscad.org/ PRÁCTICA 1 : HACER UN CUBO. cube([2,3,4]);

1 IES Valentín Turienzo

La pagina es:


Tecnologías de la Información y Comunicación 2 Jaime Velázquez Lomas

PRÁCTICA 2: HACER UN CILINDRO. cylinder(h=40,r=10);

PRÁCTICA 3: ESFERA sphere(20);

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.

2 IES Valentín Turienzo


Tecnologías de la Información y Comunicación 3 Jaime Velázquez Lomas

PRACTICA 5: CUBO INTERSECTADO POR UN CILINDRO. difference() { cube(30, center=true); sphere(20); } translate([0, 0, 30]) { cylinder(h=40, r=10); }

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]);

3 IES Valentín Turienzo


Tecnologías de la Información y Comunicación 4 Jaime Velázquez Lomas

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); 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:

4 IES Valentín Turienzo


Turn static files into dynamic content formats.

Create a flipbook
Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.