From 76c57ca78605b9ab8dd02f7e95bbee371e671ed5 Mon Sep 17 00:00:00 2001 From: Richard Milewski Date: Sun, 17 Mar 2024 13:26:39 -0700 Subject: [PATCH] Fix small omission --- tutorials/Rounding_the_Cube.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/Rounding_the_Cube.md b/tutorials/Rounding_the_Cube.md index 21063c9..ae115f7 100644 --- a/tutorials/Rounding_the_Cube.md +++ b/tutorials/Rounding_the_Cube.md @@ -226,7 +226,7 @@ include diff() prismoid([30,20], [40,30], rounding = 2, h = 20, $fn = 64) edge_profile(BOT, excess = 15) - mask2d_teardrop(h = 5, mask_angle = $edge_angle, $fn = 64); + mask2d_teardrop(h = 5, angle = 40, mask_angle = $edge_angle, $fn = 64); ``` ```openscad-3d; ImgOnly VPR=[85,0,5] @@ -234,7 +234,7 @@ include diff() prismoid([30,20], [40,30], rounding = 2, h = 20, $fn = 64) edge_profile(BOT, excess = 15) - mask2d_teardrop(h = 5, mask_angle = $edge_angle, $fn = 64); + mask2d_teardrop(h = 5, angle = 40, mask_angle = $edge_angle, $fn = 64); ``` In addition to the simple [roundover](https://github.com/BelfrySCAD/BOSL2/wiki/masks2d.scad#functionmodule-mask2d_roundover) mask, and the [teardrop](https://github.com/BelfrySCAD/BOSL2/wiki/masks2d.scad#functionmodule-mask2d_teardrop) mask, there are masks for [cove](https://github.com/BelfrySCAD/BOSL2/wiki/masks2d.scad#functionmodule-mask2d_cove), [chamfer](https://github.com/BelfrySCAD/BOSL2/wiki/masks2d.scad#functionmodule-mask2d_chamfer), [rabbet](https://github.com/BelfrySCAD/BOSL2/wiki/masks2d.scad#functionmodule-mask2d_rabbet), [dovetail](https://github.com/BelfrySCAD/BOSL2/wiki/masks2d.scad#functionmodule-mask2d_dovetail) and [ogee](https://github.com/BelfrySCAD/BOSL2/wiki/masks2d.scad#functionmodule-mask2d_ogee) edges.