From e89d303c5221279df8d2d963e02da21ee6d520e7 Mon Sep 17 00:00:00 2001 From: Garth Minette Date: Tue, 12 Oct 2021 19:54:13 -0700 Subject: [PATCH] Fixed See Also links in geometry.scad --- geometry.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geometry.scad b/geometry.scad index b6b419e..1e0df7b 100644 --- a/geometry.scad +++ b/geometry.scad @@ -494,7 +494,7 @@ function _covariance_evec_eval(points) = // Usage: // plane = plane_from_points(points, [fast], [eps]); // Topics: Geometry, Planes, Points -// See Also: plane_from_polygon +// See Also: plane_from_polygon() // Description: // Given a list of 3 or more coplanar 3D points, returns the coefficients of the normalized cartesian equation of a plane, // that is [A,B,C,D] where Ax+By+Cz=D is the equation of the plane and norm([A,B,C])=1. @@ -531,7 +531,7 @@ function plane_from_points(points, fast=false, eps=EPSILON) = // Usage: // plane = plane_from_polygon(points, [fast], [eps]); // Topics: Geometry, Planes, Polygons -// See Also: plane_from_points +// See Also: plane_from_points() // Description: // Given a 3D planar polygon, returns the normalized cartesian equation of its plane. // Returns [A,B,C,D] where Ax+By+Cz=D is the equation of the plane where norm([A,B,C])=1.