From 27d6e0a80c782de0bab4143135dae0684110d1d9 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Thu, 8 Jun 2017 14:41:43 +0800 Subject: [PATCH] added test hook --- src/hull_polyline3d.scad | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/hull_polyline3d.scad b/src/hull_polyline3d.scad index f773e36a..cb1b5693 100644 --- a/src/hull_polyline3d.scad +++ b/src/hull_polyline3d.scad @@ -26,6 +26,9 @@ module hull_polyline3d(points, thickness) { translate(point2) sphere(half_thickness); } + + // hook for testing + test_line_segment(index, point1, point2, half_thickness); } module polyline3d_inner(index) { @@ -36,4 +39,9 @@ module hull_polyline3d(points, thickness) { } polyline3d_inner(1); +} + +// override it to test +module test_line_segment(index, point1, point2, radius) { + } \ No newline at end of file