From fa81543d2a34d42c3e6e0a65871f336f679ba698 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 2 May 2023 16:13:02 +0100 Subject: [PATCH] yubikey-5c-nano-loop: time_square Signed-off-by: Ian Jackson --- yubikey-5c-nano-loop.scad | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/yubikey-5c-nano-loop.scad b/yubikey-5c-nano-loop.scad index a0e2add..c410427 100644 --- a/yubikey-5c-nano-loop.scad +++ b/yubikey-5c-nano-loop.scad @@ -9,6 +9,8 @@ base_slope = 2.0; hoop_th = 2.4; hoop_inner_dia = 2.5; +time_square = 8; + $fa = 3; $fs = 0.1; @@ -44,9 +46,18 @@ module Loop() { } } +module UseUpTime() { + linextr(-base_th, hoop_inner_dia/2 + hoop_th) + translate([0, base[0] * 3, 0]) + square(time_square, center=true); +} + module Whole() { - Base(); - Loop(); + rotate([0,0, 90]) { + Base(); + Loop(); + } + UseUpTime(); } Whole(); -- 2.30.2