We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Our code for matrix decomposition can only deal with radians and degrees.
[{transform: 'translate(1000px) rotate(200grad)'}, {transform: 'rotate(40deg)'}]
looks like
[{transform: 'translate(1000px) rotate(0deg)'}, {transform: 'rotate(40deg)'}]
which is wrong.
This is not the case for transforms which don't use matrix decomp.
[{transform: 'rotate(200grad)'}, {transform: 'rotate(40deg)'}]
[{transform: 'rotate(180deg)'}, {transform: 'rotate(40deg)'}]
which is right.
The text was updated successfully, but these errors were encountered:
Matrix decomposition: support angle units grad and turn
da7cdd2
Spec: https://drafts.csswg.org/css-values-3/#angles Issue reported in bug web-animations#176 and bug web-animations#355
rjwright
No branches or pull requests
Our code for matrix decomposition can only deal with radians and degrees.
looks like
which is wrong.
This is not the case for transforms which don't use matrix decomp.
looks like
which is right.
The text was updated successfully, but these errors were encountered: