From a233d8e04f2aec99ecdb528124eccc321278fed5 Mon Sep 17 00:00:00 2001 From: Adrian Mariano Date: Sat, 1 Jan 2022 22:00:26 -0500 Subject: [PATCH] doc tweaks --- distributors.scad | 2 +- drawing.scad | 2 +- paths.scad | 1 + skin.scad | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/distributors.scad b/distributors.scad index 8823bd2..d5b351d 100644 --- a/distributors.scad +++ b/distributors.scad @@ -4,7 +4,7 @@ // Includes: // include // FileGroup: Basic Modeling -// FileSummary: Shortcuts for translation, rotation, etc. Can act on geometry, paths, or can return a matrix. +// FileSummary: Copy or distribute objects onto a line or grid. Mirror shortcuts. // FileFootnotes: STD=Included in std.scad ////////////////////////////////////////////////////////////////////// diff --git a/drawing.scad b/drawing.scad index da464ae..e62ed6b 100644 --- a/drawing.scad +++ b/drawing.scad @@ -9,7 +9,7 @@ // Includes: // include // FileGroup: Basic Modeling -// FileSummary: Attachable cubes, cylinders, spheres, ruler, and text. Many can produce a VNF. +// FileSummary: Create and draw 2D and 3D paths: arc, helix, turtle graphics // FileFootnotes: STD=Included in std.scad ////////////////////////////////////////////////////////////////////// diff --git a/paths.scad b/paths.scad index 40becf1..089d3d6 100644 --- a/paths.scad +++ b/paths.scad @@ -741,6 +741,7 @@ function path_chamfer_and_rounding(path, closed=true, chamfer, rounding) = is_vector(rounding)? list_pad(rounding,lp,0) : is_num(rounding)? repeat(rounding,lp) : assert(false, "Bad rounding value."), + corner_paths = [ for (i=(closed? [0:1:lp-1] : [1:1:lp-2])) let( p1 = select(path,i-1), diff --git a/skin.scad b/skin.scad index ca41a92..03cc471 100644 --- a/skin.scad +++ b/skin.scad @@ -10,7 +10,7 @@ // Includes: // include // FileGroup: Advanced Modeling -// FileSummary: Construct 3D shapes from a 2D cross sections of the desired shape. +// FileSummary: Construct 3D shapes from 2D cross sections of the desired shape. // FileFootnotes: STD=Included in std.scad //////////////////////////////////////////////////////////////////////