Added a test case.

This commit is contained in:
Bryan Varner 2020-07-08 11:11:00 -04:00
parent 2021b75ceb
commit 9734ccdea3

12
tests/taptest.scad Normal file
View File

@ -0,0 +1,12 @@
use <threadlib/threadlib.scad>;
intersection() {
union() {
difference() {
cylinder(r = 15, h = 20);
tap("G1/2", 8);
}
bolt("G1/2", 8);
}
cube([20, 20, 20]);
}