From 6fb5f45466b771c73d9fe4a7292a63fa3d528100 Mon Sep 17 00:00:00 2001 From: Adrian Mariano Date: Mon, 16 Jun 2025 20:00:52 -0400 Subject: [PATCH 1/2] doc fix --- attachments.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attachments.scad b/attachments.scad index a031a18f..8df23b79 100644 --- a/attachments.scad +++ b/attachments.scad @@ -3168,7 +3168,7 @@ module _show_ghost() // that use the parent geometry such as {{attach()}}, {{align()}}, {{position()}} or {{parent()}} // will reference the geometry for the specified part. This allows you to access the inner wall // of tubes, for example. -// Argument: +// Argument: // name = name of part to use for subsequent attachments. // Example: This example shows attaching the light blue cube normally, on the outside of the tube, and the pink cube using the "inside" attachment part. // tube(ir1=10,ir2=20,h=20, wall=3){ From 207750b16aefcab2db1b50f927acc2df08b4c3b9 Mon Sep 17 00:00:00 2001 From: Adrian Mariano Date: Mon, 16 Jun 2025 20:48:19 -0400 Subject: [PATCH 2/2] doc fix --- attachments.scad | 1 + 1 file changed, 1 insertion(+) diff --git a/attachments.scad b/attachments.scad index 8df23b79..0e645ea6 100644 --- a/attachments.scad +++ b/attachments.scad @@ -3595,6 +3595,7 @@ function attach_geom( // Arguments: // name = name of part // geom = geometry of part produced by {{attach_geom()}} +// --- // inside = if true, reverse the attachment direction for children. Default: false // T = Transformation to apply to children. Default: IDENT // Example(3D): This example shows how to create a custom object with two different parts that are both transformed away from the origin. The basic object is two cylinders with a cube shaped attachment geometry that doesn't match the object very well. The "left" and "right" parts attach to each of the two cylinders.