You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The stage, shouldn't be able to be moved, scaled, or rotated in any way. Its matrix should be the identity, and hence its inverse matrix should be the identity. However, you can see here that some of the entries that are supposed to be 0 are as large as -.002, which is a pretty high error.
Here's another time where I ran it on the same machine, but the results were different 🤔
The result of this is that calculations are slightly wrong. For instance, here, the localPosition[0] calculation should come out to 0, but it's negative, which caused the touching white issue here: #676 (comment)
Having a 1e-6 error margin is kind of large and feels rather hacky at ffa53a6, so ideally we would fix the underlying math
Steps to Reproduce
Check drawable._inverseMatrix on the stage and see that it's not the identity
Operating System and Browser
any
The text was updated successfully, but these errors were encountered:
Expected Behavior
The drawable's rotation should be 0 by default
Actual Behavior
The stage, shouldn't be able to be moved, scaled, or rotated in any way. Its matrix should be the identity, and hence its inverse matrix should be the identity. However, you can see here that some of the entries that are supposed to be 0 are as large as -.002, which is a pretty high error.
Here's another time where I ran it on the same machine, but the results were different 🤔
The result of this is that calculations are slightly wrong. For instance, here, the localPosition[0] calculation should come out to 0, but it's negative, which caused the touching white issue here: #676 (comment)
Having a 1e-6 error margin is kind of large and feels rather hacky at ffa53a6, so ideally we would fix the underlying math
Steps to Reproduce
Check drawable._inverseMatrix on the stage and see that it's not the identity
Operating System and Browser
any
The text was updated successfully, but these errors were encountered: