From c9e99420709b1ac0da0026970bc3934f2bdf8559 Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Sat, 23 Jan 2021 21:15:00 +0000 Subject: [PATCH] Fixed some paths that used NopSCADlib instead of .. --- printed/printed_pulleys.scad | 4 ++-- utils/rounded_right_triangle.scad | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/printed/printed_pulleys.scad b/printed/printed_pulleys.scad index c00675d..f5ae327 100644 --- a/printed/printed_pulleys.scad +++ b/printed/printed_pulleys.scad @@ -21,8 +21,8 @@ //! Creative Commons - Attribution - Share Alike license (see ) // -include -include +include <../core.scad> +include <../vitamins/pulleys.scad> printed_pulley_GT2_profile = [[0.747183,-0.5],[0.747183,0],[0.647876,0.037218],[0.598311,0.130528],[0.578556,0.238423],[0.547158,0.343077],[0.504649,0.443762],[0.451556,0.53975],[0.358229,0.636924],[0.2484,0.707276],[0.127259,0.750044],[0,0.76447],[-0.127259,0.750044],[-0.2484,0.707276],[-0.358229,0.636924],[-0.451556,0.53975],[-0.504797,0.443762],[-0.547291,0.343077],[-0.578605,0.238423],[-0.598311,0.130528],[-0.648009,0.037218],[-0.747183,0],[-0.747183,-0.5]]; diff --git a/utils/rounded_right_triangle.scad b/utils/rounded_right_triangle.scad index 013216e..200809d 100644 --- a/utils/rounded_right_triangle.scad +++ b/utils/rounded_right_triangle.scad @@ -21,7 +21,7 @@ //! Draw a 3D right triangle with rounded edges. Intended to be embedded in other parts. Can be optionally offset by the filleted amount. // include <../utils/core/core.scad> -include +include <..//utils/core/rounded_rectangle.scad> module rounded_right_triangle(x, y, z, fillet, center = true, offset = false) { //! Draw a 3D right triangle with rounded edges. fillet = max(fillet, eps); @@ -43,4 +43,3 @@ module rounded_right_triangle(x, y, z, fillet, center = true, offset = false) { rounded_rectangle([size.z, 2 * fillet, eps], fillet - eps, center = false, xy_center = false); } } -