From 48ccc85c168c623aceda2f27eaee891dc31b5ff6 Mon Sep 17 00:00:00 2001 From: Adrian Mariano Date: Wed, 22 Sep 2021 16:18:54 -0400 Subject: [PATCH] fix doc error --- paths.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paths.scad b/paths.scad index 961c6d56..462fa280 100644 --- a/paths.scad +++ b/paths.scad @@ -451,7 +451,7 @@ function is_path_simple(path, closed=false, eps=EPSILON) = // pt = the point to find the closest point to. // Example(2D): // path = circle(d=100,$fn=6); -// pt = [20,10];q +// pt = [20,10]; // closest = path_closest_point(path, pt); // stroke(path, closed=true); // color("blue") translate(pt) circle(d=3, $fn=12);