diff options
-rw-r--r-- | testdata/scad/misc/use-tests-template.scad | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testdata/scad/misc/use-tests-template.scad b/testdata/scad/misc/use-tests-template.scad index 47a62a2..24591f8 100644 --- a/testdata/scad/misc/use-tests-template.scad +++ b/testdata/scad/misc/use-tests-template.scad @@ -26,7 +26,7 @@ use </> include <@CMAKE_SOURCE_DIR@/../testdata/scad/misc/sub2/test7.scad> // Test simple MCAD library -include <MCAD/boxes.scad> +include <MCAD/teardrop.scad> // Test MCAD library which includes another file include <MCAD/math.scad> @@ -49,7 +49,7 @@ module test1() translate([0,-2,0]) sphere(test2_variable, $fn=16); // MCAD - translate([0,-4,0]) roundedBox([0.5,1.5,0.5], 0.2, true); + translate([0,-4,0]) teardrop(0.3, 1.5, 90); translate([-2,-4,0]) cube([deg(0.5)/20,0.5,0.5], center=true); translate([2,-4,-0.5]) scale(0.05) alignds420([0,0,0], [0,0,0]); } |