From 92413f1800f29bcbc3f8d3e82cce22464e22a019 Mon Sep 17 00:00:00 2001 From: Adrian Mariano Date: Fri, 19 Nov 2021 22:35:36 -0500 Subject: [PATCH] missed a few --- shapes3d.scad | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shapes3d.scad b/shapes3d.scad index 23433d0..1af3154 100644 --- a/shapes3d.scad +++ b/shapes3d.scad @@ -101,14 +101,14 @@ function cube(size=1, center, anchor, spin=0, orient=UP) = // Negative chamfers and roundings can be applied to create external fillets, but they // but only apply to edges around the top or bottom faces. If you specify an edge set other than "ALL" // with such roundings or chamfers then you will get an error. See -// [Specifying Edges](edges.scad#section-specifying-edges) for information on how to specify edge sets. +// [Specifying Edges](attachments.scad#section-specifying-edges) for information on how to specify edge sets. // Arguments: // size = The size of the cube, a number or length 3 vector. // --- // chamfer = Size of chamfer, inset from sides. Default: No chamfering. // rounding = Radius of the edge rounding. Default: No rounding. -// edges = Edges to mask. See [Specifying Edges](edges.scad#section-specifying-edges). Default: all edges. -// except = Edges to explicitly NOT mask. See [Specifying Edges](edges.scad#section-specifying-edges). Default: No edges. +// edges = Edges to mask. See [Specifying Edges](attachments.scad#section-specifying-edges). Default: all edges. +// except = Edges to explicitly NOT mask. See [Specifying Edges](attachments.scad#section-specifying-edges). Default: No edges. // trimcorners = If true, rounds or chamfers corners where three chamfered/rounded edges meet. Default: `true` // p1 = Align the cuboid's corner at `p1`, if given. Forces `anchor=FRONT+LEFT+BOTTOM`. // p2 = If given with `p1`, defines the cornerpoints of the cuboid.