From 1cab868d8a0f099fec4fc5f36193cf97616e9a60 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Mon, 6 Apr 2020 18:53:12 -0700 Subject: [PATCH] Chamferred is spelled chamfered. --- masks.scad | 12 ++++++------ primitives.scad | 2 +- shapes.scad | 6 +++--- version.scad | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/masks.scad b/masks.scad index 6731626..01f9a03 100644 --- a/masks.scad +++ b/masks.scad @@ -63,7 +63,7 @@ module angle_pie_mask( // one or both ends of the cylindrical region. Difference the mask // from the region, making sure the center of the mask object is // anchored exactly with the center of the cylindrical region to -// be chamferred. +// be chamfered. // Arguments: // l = Length of the cylindrical/conical region. // r = Radius of cylindrical region to chamfer. @@ -279,13 +279,13 @@ module chamfer(chamfer=1, size=[1,1,1], edges=EDGES_ALL, except_edges=[]) // chamfer_cylinder_mask(r|d, chamfer, [ang], [from_end]) // Description: // Create a mask that can be used to bevel/chamfer the end of a cylindrical region. -// Difference it from the end of the region to be chamferred. The center of the mask +// Difference it from the end of the region to be chamfered. The center of the mask // object should align exactly with the center of the end of the cylindrical region -// to be chamferred. +// to be chamfered. // Arguments: // r = Radius of cylinder to chamfer. // d = Diameter of cylinder to chamfer. Use instead of r. -// chamfer = Size of the edge chamferred, inset from edge. (Default: 0.25) +// chamfer = Size of the edge chamfered, inset from edge. (Default: 0.25) // ang = Angle of chamfer in degrees from vertical. (Default: 45) // from_end = If true, chamfer size is measured from end of cylinder. If false, chamfer is measured outset from the radius of the cylinder. (Default: false) // anchor = Translate so anchor point is at origin (0,0,0). See [anchor](attachments.scad#anchor). Default: `CENTER` @@ -316,8 +316,8 @@ module chamfer_cylinder_mask(r=undef, d=undef, chamfer=0.25, ang=45, from_end=fa // chamfer_hole_mask(r|d, chamfer, [ang], [from_end]); // Description: // Create a mask that can be used to bevel/chamfer the end of a cylindrical hole. -// Difference it from the hole to be chamferred. The center of the mask object -// should align exactly with the center of the end of the hole to be chamferred. +// Difference it from the hole to be chamfered. The center of the mask object +// should align exactly with the center of the end of the hole to be chamfered. // Arguments: // r = Radius of hole to chamfer. // d = Diameter of hole to chamfer. Use instead of r. diff --git a/primitives.scad b/primitives.scad index eb85ef6..7a56a45 100644 --- a/primitives.scad +++ b/primitives.scad @@ -16,7 +16,7 @@ // Usage: // square(size, [center], [rounding], [chamfer], [anchor], [spin]) // Description: -// When called as a module, creates a 2D square of the given size, with optional rounding or chamferring. +// When called as a module, creates a 2D square of the given size, with optional rounding or chamfering. // When called as a function, returns a 2D path/list of points for a square/rectangle of the given size. // Arguments: // size = The size of the square to create. If given as a scalar, both X and Y will be the same size. diff --git a/shapes.scad b/shapes.scad index ccacb22..9279902 100644 --- a/shapes.scad +++ b/shapes.scad @@ -20,11 +20,11 @@ // // Arguments: // size = The size of the cube. -// chamfer = Size of chamfer, inset from sides. Default: No chamferring. +// chamfer = Size of chamfer, inset from sides. Default: No chamfering. // rounding = Radius of the edge rounding. Default: No rounding. // edges = Edges to chamfer/round. See the docs for [`edges()`](edges.scad#edges) to see acceptable values. Default: All edges. // except_edges = Edges to explicitly NOT chamfer/round. See the docs for [`edges()`](edges.scad#edges) to see acceptable values. Default: No edges. -// trimcorners = If true, rounds or chamfers corners where three chamferred/rounded edges meet. Default: `true` +// 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=ALLNEG`. // p2 = If given with `p1`, defines the cornerpoints of the cuboid. // anchor = Translate so anchor point is at origin (0,0,0). See [anchor](attachments.scad#anchor). Default: `CENTER` @@ -1193,7 +1193,7 @@ module pie_slice( // // 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 chamferred and union it in. +// Center this part along the concave edge to be chamfered and union it in. // // Usage: // interior_fillet(l, r, [ang], [overlap]); diff --git a/version.scad b/version.scad index 1fff64e..16efa00 100644 --- a/version.scad +++ b/version.scad @@ -8,7 +8,7 @@ ////////////////////////////////////////////////////////////////////// -BOSL_VERSION = [2,0,255]; +BOSL_VERSION = [2,0,257]; // Section: BOSL Library Version Functions