diff --git a/source b/source index 3eca50aa5e6..07a0bec2cf0 100644 --- a/source +++ b/source @@ -56,7 +56,7 @@ .applies td { text-align: center; } .matrix, .matrix td { border: hidden; text-align: right; } - .matrix { margin-left: 2em; } + .matrix, .equations { margin-left: 2em; } .vertical-summary-table tr > th[rowspan="2"]:first-child + th, .vertical-summary-table tr > td[rowspan="2"]:first-child + td { border-bottom: hidden; } @@ -62716,6 +62716,37 @@ try { +
Given a matrix of the form created by the transform()
and setTransform()
methods, i.e.,
a | +c | +e | +
b | +d | +f | +
0 | +0 | +1 | +
the resulting transformed coordinates after transform matrix multiplication will be
+ +
+ xnew = a x + c y + e
+ ynew = b x + d y + f
+