From 386e99326e93b6642d39c0a66b3167a2cc704682 Mon Sep 17 00:00:00 2001 From: Adrian Mariano Date: Wed, 8 May 2024 21:31:28 -0400 Subject: [PATCH] remove alias --- masks3d.scad | 8 +++++--- shapes3d.scad | 4 ++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/masks3d.scad b/masks3d.scad index 604d2ef..739553c 100644 --- a/masks3d.scad +++ b/masks3d.scad @@ -173,7 +173,6 @@ module chamfer_cylinder_mask(r, chamfer, d, ang=45, from_end=false, anchor=CENTE // Section: Rounding Masks // Module: rounding_edge_mask() -// Aliases: fillet() // Synopsis: Creates a shape to round a 90° edge. // SynTags: Geom // Topics: Masks, Rounding, Shapes (3D) @@ -182,9 +181,12 @@ module chamfer_cylinder_mask(r, chamfer, d, ang=45, from_end=false, anchor=CENTE // rounding_edge_mask(l|h=|length=|height=, r|d=, [ang], [excess=]) [ATTACHMENTS]; // rounding_edge_mask(l|h=|length=|height=, r1=|d1=, r2=|d2=, [ang=], [excess=]) [ATTACHMENTS]; // Description: -// Creates a shape that can be used to round a vertical 90° edge. +// Creates a shape that can be used to round a straight edge at any angle. // Difference it from the object to be rounded. The center of the mask -// object should align exactly with the edge to be rounded. +// object should align exactly with the edge to be rounded. You can use it with {{diff()}} and +// {{edge_mask()}} to attach masks automatically to objects. The default "remove" tag is set +// automatically. +// // Arguments: // l/h/length/height = Length of mask. // r = Radius of the rounding. diff --git a/shapes3d.scad b/shapes3d.scad index 1ade77f..dd9e596 100644 --- a/shapes3d.scad +++ b/shapes3d.scad @@ -3280,14 +3280,14 @@ module path_text(path, text, font, size, thickness, lettersize, offset=0, revers // Module: fillet() -// Aliases: rounding_edge_mask() // Synopsis: Creates a smooth fillet between two faces. // SynTags: Geom, VNF // Topics: Shapes (3D), Attachable // See Also: mask2d_roundover() // Description: // Creates a shape that can be unioned into a concave joint between two faces, to fillet them. -// Center this part along the concave edge to be chamfered and union it in. +// Note that this module is the same as {{rounding_edge_mask()}}, except that it does not +// apply the default "remove" tag. // // Usage: // fillet(l|h=|length=|height=, r|d=, [ang=], [excess=]) [ATTACHMENTS];