From ee07b4f87aeb8ae82b1959fa8975406628ea71f5 Mon Sep 17 00:00:00 2001 From: Adrian Mariano Date: Fri, 16 Jun 2023 19:24:31 -0400 Subject: [PATCH] add includes --- tutorials/Attachments.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tutorials/Attachments.md b/tutorials/Attachments.md index 28983a5..0a22073 100644 --- a/tutorials/Attachments.md +++ b/tutorials/Attachments.md @@ -394,6 +394,7 @@ children to the parent in different locations, each child needs a different anch be achieved using the `$align` variable: ```openscad-3D +include cuboid([50,40,15]) position([RIGHT+TOP,LEFT+TOP]) color("lightblue")prismoid([10,5],[7,4],height=4, anchor=$align); @@ -493,6 +494,7 @@ can be eliminated using the `$align` variable which takes into account the spin that the `orient()` module applies. ```openscad-3D +include cuboid([50,40,15]) position(RIGHT+TOP) orient(RIGHT) @@ -504,6 +506,7 @@ with the appropriate anchor taking the spin into account. You can use this meth for children placed on the top by using orient with a TOP direction, but nonzero spin. ```openscad-3D +include cuboid([50,40,15]) position(RIGHT+TOP) orient(TOP, spin=90)