chiark / gitweb /
clip-spring-holder-clip: v1
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Wed, 23 Nov 2022 22:20:16 +0000 (22:20 +0000)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Wed, 23 Nov 2022 22:20:16 +0000 (22:20 +0000)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
clip-spring-holder-clip.scad

index 0018cf1feca38b815e3712a548fed0562d2ec37c..b87c101cec9ad2b7d36674a5867ef7b4031c8c96 100644 (file)
@@ -2,22 +2,26 @@
 //
 // For holding the spring while reassembling a candle holder.
 
+include <utils.scad>
+
 spring_body_w = 5.0;
 spring_body_l = 6.0;
 axle_dia = 2.0;
 recess_d = 13.0;
 total_len = 30.0;
 
-th_y = 1;
+th_y = 1.5;
 th_x = 2;
 handle_th = 2.5;
 
 // calculated
 
-outer_sz = [spring_body_l + th_x, spring_body_w + th_y];
+outer_sz = [spring_body_l + th_x*2, spring_body_w + th_y*2];
 handle_sz = [outer_sz[0], handle_th];
 th_z = th_x;
 
+echo(outer_sz);
+
 module OuterElevation(){
   square(center=true, outer_sz);
 }