mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-05-16 17:51:07 +00:00
Update parser.js
This commit is contained in:
parent
42477fbeab
commit
30eaf11872
1 changed files with 2 additions and 2 deletions
|
|
@ -142,11 +142,11 @@
|
|||
}
|
||||
|
||||
function skewXMatrix(matrix, args) {
|
||||
matrix[2] = args[0];
|
||||
matrix[2] = Math.tan(fabric.util.degreesToRadians(args[0]));
|
||||
}
|
||||
|
||||
function skewYMatrix(matrix, args) {
|
||||
matrix[1] = args[0];
|
||||
matrix[1] = Math.tan(fabric.util.degreesToRadians(args[0]));
|
||||
}
|
||||
|
||||
function translateMatrix(matrix, args) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue