From be0dec0120b162cb790dcb3fbce9aadb7fde1c1e Mon Sep 17 00:00:00 2001
From: Adrian Mariano <avm4@cornell.edu>
Date: Mon, 20 Mar 2023 20:55:11 -0400
Subject: [PATCH] add see alsos

---
 shapes3d.scad | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/shapes3d.scad b/shapes3d.scad
index 79a237e..4516d81 100644
--- a/shapes3d.scad
+++ b/shapes3d.scad
@@ -120,6 +120,7 @@ function cube(size=1, center, anchor, spin=0, orient=UP) =
 //   anchor = Translate so anchor point is at origin (0,0,0).  See [anchor](attachments.scad#subsection-anchor).  Default: `CENTER`
 //   spin = Rotate this many degrees around the Z axis.  See [spin](attachments.scad#subsection-spin).  Default: `0`
 //   orient = Vector to rotate top towards.  See [orient](attachments.scad#subsection-orient).  Default: `UP`
+// See Also: prismoid(), rounded_prism()
 // Example: Simple regular cube.
 //   cuboid(40);
 // Example: Cube with minimum cornerpoint given.
@@ -598,7 +599,7 @@ function cuboid(
 //   spin = Rotate this many degrees around the Z axis after anchor.  See [spin](attachments.scad#subsection-spin).  Default: `0`
 //   orient = Vector to rotate top towards, after spin.  See [orient](attachments.scad#subsection-orient).  Default: `UP`
 //
-// See Also: rounded_prism()
+// See Also: cuboid(), rounded_prism()
 //
 // Example: Rectangular Pyramid
 //   prismoid([40,40], [0,0], h=20);