From b71668bdcc67356030e2cc295f8c828705050f0d Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Mon, 25 Aug 2025 05:28:13 -0700 Subject: [PATCH] Corrected a comment in octa sphere code. --- shapes3d.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shapes3d.scad b/shapes3d.scad index a8216412..8a16c0fb 100644 --- a/shapes3d.scad +++ b/shapes3d.scad @@ -3370,7 +3370,7 @@ function _make_octa_sphere(r) = edge2 = zrot(90, p=edge1), edge3 = xrot(-90, p=edge1), - // Precache edge points, axes, and angles + // Precache edge points edge_pts1 = [for (i = [0:1:subdivs]) [edge1[i], edge2[i]]], edge_pts2 = [for (i = [0:1:subdivs]) [edge1[subdivs-i], edge3[subdivs-i]]], edge_pts3 = [for (i = [0:1:subdivs]) [edge2[subdivs-i], edge3[i]]],