minor doc correction

This commit is contained in:
RonaldoCMP 2021-06-21 19:57:28 +01:00 committed by GitHub
parent 83e9bfb2fa
commit 4d09b78771
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2257,7 +2257,7 @@ function is_convex_polygon(poly,eps=EPSILON) =
// convex_distance(pts1, pts2,<eps=>);
// 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,<eps=>);
// 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.