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
It seems wrong to do have this line in a link function in RightAngleArrow.js:
` self.matrix = Matrix3.scale( scale );`
When I converted RightAngleArrow.js to inherit from Path, this line ruined the transform unless I added a mutate call under it:
self.matrix = Matrix3.scale( scale ); self.mutate( options );
I don't yet know how I should fix it.
The text was updated successfully, but these errors were encountered:
fix scaling of RightAngleArrow, #57
ef45103
fix scaling and translation of letters in FormulaNode, #57
f1cdcbd
this issue is from code review: #51
@jessegreenberg and I were able to simplify this operation nicely, closing
Sorry, something went wrong.
zepumph
No branches or pull requests
It seems wrong to do have this line in a link function in RightAngleArrow.js:
When I converted RightAngleArrow.js to inherit from Path, this line ruined the transform unless I added a mutate call under it:
I don't yet know how I should fix it.
The text was updated successfully, but these errors were encountered: