From 7749eb47962bef72c4573237a0e294f46cbd9802 Mon Sep 17 00:00:00 2001 From: Alex Matulich Date: Wed, 12 Feb 2025 22:34:10 -0800 Subject: [PATCH] typo --- isosurface.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isosurface.scad b/isosurface.scad index 9c437621..5f2f06de 100644 --- a/isosurface.scad +++ b/isosurface.scad @@ -1289,7 +1289,7 @@ function mb_torus(r_maj, r_min, cutoff=INF, influence=1, negative=false, d_maj, // otherwise transformed. Nested metaball specifications are supported: // Instead of specifying a transform and function, you specify a transform and then another metaball // specification. For example, you could set `finger=[t0,f0,t1,f1,t2,f2]` and then set -// `hand=[u0,finger,u1,finger,...]` and then invoke metaball with `[s0, hand]`. +// `hand=[u0,finger,u1,finger,...]` and then invoke `metaballs()` with `[s0, hand]`. // In effect, any metaball specification array can be treated as a single metaball. // This is a powerful technique that lets you make groups of metaballs that you can use as individual // metaballs in other groups, and can make your code compact and simpler to understand. See Example 21.