From eab6aadc051bf92f56cd897af40a5cf7bc85ae56 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Mon, 27 Jan 2020 16:23:39 +0800 Subject: [PATCH] refactor deps --- src/sphere_spiral.scad | 2 ++ test/test_sphere_spiral.scad | 5 ++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/sphere_spiral.scad b/src/sphere_spiral.scad index 9fb211ba..f5d28678 100644 --- a/src/sphere_spiral.scad +++ b/src/sphere_spiral.scad @@ -8,6 +8,8 @@ * **/ +use ; + function sphere_spiral(radius, za_step, z_circles = 1, begin_angle = 0, end_angle = 0, vt_dir = "SPI_DOWN", rt_dir = "CT_CLK") = let( a_end = 90 * z_circles - end_angle diff --git a/test/test_sphere_spiral.scad b/test/test_sphere_spiral.scad index 531dd073..af0ec092 100644 --- a/test/test_sphere_spiral.scad +++ b/test/test_sphere_spiral.scad @@ -1,6 +1,5 @@ -include ; -include ; -include ; +use ; +use ; module test_sphere_spiral() { echo("==== test_sphere_spiral ====");