From 2aa1007bc901c94d2f20b7421a77c94384f96c43 Mon Sep 17 00:00:00 2001 From: Alex Matulich Date: Wed, 30 Apr 2025 13:45:50 -0700 Subject: [PATCH] Updated Topics in fit_to_range and fit_to_box --- math.scad | 2 +- vectors.scad | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/math.scad b/math.scad index 95aa1c03..e125ba38 100644 --- a/math.scad +++ b/math.scad @@ -678,7 +678,7 @@ function mean_angle(angle1,angle2) = // Function: fit_to_range() // Synopsis: Scale the values in an array to span a range. -// Topics: Math +// Topics: Math, Bounds, Scaling // See Also: fit_to_box() // Usage: // a = fit_to_range(M, minval, maxval); diff --git a/vectors.scad b/vectors.scad index c12271a7..23877261 100644 --- a/vectors.scad +++ b/vectors.scad @@ -667,7 +667,7 @@ function _insert_many(list, k, newlist,i=0) = // Function: pointlist_bounds() // Synopsis: Returns the min and max bounding coordinates for the given list of points. -// Topics: Geometry, Bounding Boxes, Bounds +// Topics: Geometry, Bounding Boxes, Bounds, Scaling // See Also: closest_point(), furthest_point(), vnf_bounds() // Usage: // pt_pair = pointlist_bounds(pts); @@ -691,7 +691,7 @@ function pointlist_bounds(pts) = // Function: fit_to_box() // Synopsis: Scale the x, y, and/or z coordinantes of a list of points to span a range. -// Topics: Geometry, Bounding Boxes, Bounds, VNF +// Topics: Geometry, Bounding Boxes, Bounds, VNF Manipulation // See Also: fit_to_range() // Usage: // new_pts = fit_to_box(pts, [x=], [y=], [z=]);