From 7c9c6805f70457db33c21049bf54bee4e05aa968 Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Sat, 15 Jun 2019 08:18:33 +0100 Subject: [PATCH] Typo --- utils/core/global.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/core/global.scad b/utils/core/global.scad index f97946c..b601cad 100644 --- a/utils/core/global.scad +++ b/utils/core/global.scad @@ -32,7 +32,7 @@ function r2sides4n(r) = floor((r2sides(r) + 3) / 4) * 4; module translate_z(z) translate([0, 0, z]) children(); //! Shortcut for Z only translations module vflip() rotate([180, 0, 0]) children(); //! Invert children by doing a 180 flip around the X axis -module hflip() rotate([0, 180, 0]) children(); //! Invert children by doing a 180 glip around the Y axis +module hflip() rotate([0, 180, 0]) children(); //! Invert children by doing a 180 flip around the Y axis module ellipse(xr, yr) scale([1, yr / xr]) circle4n(xr); //! Draw an ellipse module extrude_if(h, center = true) //! Extrudes 2D object to 3D when ```h``` is nonzero, otherwise leaves it 2D