Skip to content

Commit

Permalink
Tested merging
Browse files Browse the repository at this point in the history
  • Loading branch information
diara628 committed Aug 26, 2010
2 parents 83ed86c + add07c0 commit ebf9c54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 29 deletions.
1 change: 0 additions & 1 deletion servos.scad
Expand Up @@ -104,5 +104,4 @@ module alignds420(position, rotation, screws = 0, axle_lenght = 0)
}
}

// Tests:
module test_alignds420(){alignds420(screws=1);}
31 changes: 3 additions & 28 deletions triangles.scad
Expand Up @@ -8,33 +8,6 @@
*/


/**
* Standard right-angled triangle
*
* @param number o_len Lenght of the opposite side
* @param number a_len Lenght of the adjacent side
* @param number depth How wide/deep the triangle is in the 3rd dimension
*/
/*
module triangle_old(o_len, a_len, depth)
{
difference()
{
cube([depth, a_len, o_len], center=false);
rotate([atan(o_len/a_len),0,0])
{
translate([-2.5,0,0])
{
cube([depth+5,sqrt(pow(a_len, 2) + pow(o_len,2))+2, o_len+2], center=false);
}
}
}
}
# triangle(5,10,7);
*/


/**
* Standard right-angled triangle
*
Expand All @@ -51,5 +24,7 @@ module triangle(o_len, a_len, depth)
}
}

//triangle(5,10,7);

// Tests:
module test_triangle(){triangle(5,10,7);}

0 comments on commit ebf9c54

Please sign in to comment.