File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -1311,7 +1311,7 @@ rotateMatrix[0][1] = sinAngle
1311
1311
rotateMatrix[1][0] = -sinAngle
1312
1312
rotateMatrix[1][1] = cosAngle
1313
1313
1314
- matrix = multiply(matrix, rotateMatrix )
1314
+ matrix = post- multiply(rotateMatrix, matrix )
1315
1315
1316
1316
// Scale matrix.
1317
1317
matrix[0][0] *= scale[0]
@@ -1391,7 +1391,9 @@ The following changes were made since the <a href="https://www.w3.org/TR/2017/WD
1391
1391
* Added <a href="#priv-sec">privacy and security</a> section.
1392
1392
* Use [[SVG2]] definitions for <a>transformable elements</a> .
1393
1393
* Added special syntax for <a element-attr for>transform</a> , <{linearGradient/gradientTransform}> and <{pattern/patternTransform}> attributes.
1394
+ * Clarify multiplication order by using terms <a>post-multiply</a> and <a>pre-multiply</a> .
1394
1395
* Clarify index order of matrix entries in pseudo-code.
1396
+ * Clarify multiplication order in recomposition pseudo-code.
1395
1397
1396
1398
ISSUE: Add all changes.
1397
1399
You can’t perform that action at this time.
0 commit comments