From fe7b87e92d3bbdee50033c09e72a115ac4d7c400 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Mon, 6 Jan 2020 16:55:22 -0800 Subject: [PATCH] Fixed argument typo in skew() --- affine.scad | 2 +- version.scad | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/affine.scad b/affine.scad index ca741ba..ac230c6 100644 --- a/affine.scad +++ b/affine.scad @@ -288,7 +288,7 @@ function affine3d_mirror(v) = // syz = Skew factor multiplier for skewing along the Y axis as you get farther from the Z axis. Default: 0 // szx = Skew factor multiplier for skewing along the Z axis as you get farther from the X axis. Default: 0 // szy = Skew factor multiplier for skewing along the Z axis as you get farther from the Y axis. Default: 0 -function affine3d_skew(sxy=0, sxz=0, syx=0, xyz=0, szx=0, szy=0) = [ +function affine3d_skew(sxy=0, sxz=0, syx=0, syz=0, szx=0, szy=0) = [ [ 1, sxy, sxz, 0], [syx, 1, syz, 0], [szx, szy, 1, 0], diff --git a/version.scad b/version.scad index d8ef10d..c2e126c 100644 --- a/version.scad +++ b/version.scad @@ -8,7 +8,7 @@ ////////////////////////////////////////////////////////////////////// -BOSL_VERSION = [2,0,73]; +BOSL_VERSION = [2,0,74]; // Section: BOSL Library Version Functions