Some adjustments to the new files

This commit is contained in:
Elmom 2010-07-26 09:10:01 +03:00
parent 8bb788d435
commit cc49f67109
3 changed files with 33 additions and 30 deletions

View file

@ -2,7 +2,7 @@
* Material colors. * Material colors.
* *
* Originally by Hans Häggström, 2010. * Originally by Hans Häggström, 2010.
* Licenced under Creative Commons Attribution-Share Alike 3.0. * Dual licenced under Creative Commons Attribution-Share Alike 3.0 and LGPL2 or later
*/ */
// Material colors // Material colors
@ -18,7 +18,9 @@ Aluminum = [0.77, 0.77, 0.8];
Brass = [0.88, 0.78, 0.5]; Brass = [0.88, 0.78, 0.5];
// Example, uncomment to view // Example, uncomment to view
/* //demo();
module nema_demo(){
// Wood // Wood
colorTest(Oak, 0, 0); colorTest(Oak, 0, 0);
colorTest(Pine, 1, 0); colorTest(Pine, 1, 0);
@ -35,8 +37,7 @@ colorTest(FiberBoard, 0, 2);
// Paints // Paints
colorTest(BlackPaint, 0, 3); colorTest(BlackPaint, 0, 3);
}
*/
module colorTest(col, row=0, c=0) { module colorTest(col, row=0, c=0) {
color(col) translate([row * 30,c*30,0]) sphere(r=10); color(col) translate([row * 30,c*30,0]) sphere(r=10);

View file

@ -2,15 +2,17 @@
* A nema standard stepper motor module. * A nema standard stepper motor module.
* *
* Originally by Hans Häggström, 2010. * Originally by Hans Häggström, 2010.
* Licenced under Creative Commons Attribution-Share Alike 3.0. * Dual licenced under Creative Commons Attribution-Share Alike 3.0 and LGPL2 or later
*/ */
<units.scad> include <units.scad>
<materials.scad> include <materials.scad>
// Demo, uncomment to show: // Demo, uncomment to show:
/* //nema_demo();
module nema_demo(){
for (size = [NemaShort, NemaMedium, NemaLong]) { for (size = [NemaShort, NemaMedium, NemaLong]) {
translate([-100,size*100,0]) motor(Nema34, size, dualAxis=true); translate([-100,size*100,0]) motor(Nema34, size, dualAxis=true);
translate([0,size*100,0]) motor(Nema23, size, dualAxis=true); translate([0,size*100,0]) motor(Nema23, size, dualAxis=true);
@ -19,7 +21,7 @@ for (size = [NemaShort, NemaMedium, NemaLong]) {
translate([300,size*100,0]) motor(Nema11, size, dualAxis=true); translate([300,size*100,0]) motor(Nema11, size, dualAxis=true);
translate([400,size*100,0]) motor(Nema08, size, dualAxis=true); translate([400,size*100,0]) motor(Nema08, size, dualAxis=true);
} }
*/ }
// Parameters: // Parameters:

View file

@ -2,7 +2,7 @@
* Basic units. * Basic units.
* *
* Originally by Hans Häggström, 2010. * Originally by Hans Häggström, 2010.
* Licenced under Creative Commons Attribution-Share Alike 3.0. * Dual licenced under Creative Commons Attribution-Share Alike 3.0 and LGPL2 or later
*/ */
@ -20,5 +20,5 @@ M8 = 8*mm;
// When a small distance is needed to overlap shapes for boolean cutting, etc. // When a small distance is needed to overlap shapes for boolean cutting, etc.
epsilon = 1*mm; epsilon = 0.0001*mm;