Fixed argument typo in skew()

This commit is contained in:
Revar Desmera 2020-01-06 16:55:22 -08:00
parent 1ce899c412
commit fe7b87e92d
2 changed files with 2 additions and 2 deletions

View file

@ -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],

View file

@ -8,7 +8,7 @@
//////////////////////////////////////////////////////////////////////
BOSL_VERSION = [2,0,73];
BOSL_VERSION = [2,0,74];
// Section: BOSL Library Version Functions