From 4d09b78771e3a69aa1b7983248cd362989d41290 Mon Sep 17 00:00:00 2001 From: RonaldoCMP Date: Mon, 21 Jun 2021 19:57:28 +0100 Subject: [PATCH] minor doc correction --- geometry.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geometry.scad b/geometry.scad index e2569b9..46cff38 100644 --- a/geometry.scad +++ b/geometry.scad @@ -2257,7 +2257,7 @@ function is_convex_polygon(poly,eps=EPSILON) = // convex_distance(pts1, pts2,); // See also: // convex_collision -// Descrition: +// Description: // Returns the smallest distance between a point in convex hull of `points1` // and a point in the convex hull of `points2`. All the points in the lists // should have the same dimension, either 2D or 3D. @@ -2317,7 +2317,7 @@ function _GJK_distance(points1, points2, eps=EPSILON, lbd, d, simplex=[]) = // convex_collision(pts1, pts2,); // See also: // convex_distance -// Descrition: +// Description: // Returns `true` if the convex hull of `points1` intercepts the convex hull of `points2` // otherwise, `false`. // All the points in the lists should have the same dimension, either 2D or 3D.