From fbcf8b02b7c44aad34bc78dab88740684f92ca10 Mon Sep 17 00:00:00 2001 From: Adrian Mariano Date: Tue, 2 Feb 2021 18:00:07 -0500 Subject: [PATCH] doc fix --- geometry.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geometry.scad b/geometry.scad index b11fa0f..6e7f6c4 100644 --- a/geometry.scad +++ b/geometry.scad @@ -1604,7 +1604,7 @@ function circle_circle_tangents(c1,r1,c2,r2,d1,d2) = // line = two points defining the unbounded line // bounded = false for unbounded line, true for a segment, or a vector [false,true] or [true,false] to specify a ray with the first or second end unbounded. Default: false // eps = epsilon used for identifying the case with one solution. Default: 1e-9 -// -- +// --- // d = diameter of circle function circle_line_intersection(c,r,line,d,bounded=false,eps=EPSILON) = let(r=get_radius(r=r,d=d,dflt=undef))