-
-
Notifications
You must be signed in to change notification settings - Fork 561
New issue
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
Add test for chained GRS transformations #2475
Merged
0HyperCube
merged 8 commits into
GraphiteEditor:master
from
rahat2134:grs-chained-tests
Mar 29, 2025
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
3a466ea
added tests for chained tasks
rahat2134 04d295c
added tests for chained tasks, applied the feedback from 0hypercube
rahat2134 feec990
Merge branch 'master' into grs-chained-tests
rahat2134 4069a8b
Merge branch 'master' into grs-chained-tests
rahat2134 f3b7a3b
some changes in grs chained test to make it more robust
rahat2134 dbbd9d6
Merge branch 'master' of https://github.com/GraphiteEditor/Graphite i…
rahat2134 6fe5f5a
Merge branch 'grs-chained-tests' of https://github.com/rahat2134/Grap…
rahat2134 12fdb2c
unnecessary changes
rahat2134 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Verifying that the transform is different is not really good enough. We are trying to test that the pivots and transformations all work correctly, which was fixed in #2450.
I would expect you to build a transform based on the expected scaling and translation and then to assert that it is equal to the actual transform of the layer. Thanks.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@0HyperCube I'm having difficulty with your suggestion to "build a transform based on the expected scaling and translation and then assert that it is equal to the actual transform".
What I've tried:
For example, moving to (20,30) resulted in:
Could you point me to the specific transformation logic in the codebase I should use to calculate the expected transform matrix?
Or
If i am doing something wrong!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rahat2134 You where presumably moving the mouse from (50,50) to (20,30) in order to get a translation on the object of (-30, -20)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The approach that you had at the start seems reasonable. However you will obviously need to ensure you have the correct pivot position.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @0HyperCube Does this make any sense, Here we are checking expected scaling and translation?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I am going in right way then what do you want me to check finally after committing (please tell elaborately)? i.e after
editor.handle_message(TransformLayerMessage::ApplyTransformOperation { final_transform: true }).await;
if not going in right way then also give some suggestions or guidance!
Thank you so much!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please just update the PR instead of putting an 80 line code block.
I'm extremly confused by:
Please note that the
editor.move_mouse
function moves the mouse from whatever position it was at previously to the position specified. Since the last operation was to draw a rectangle to (100,100), the mouse will therefore be at (100,100). Moving it to (80.0, 70.0) will clearly mean a transform of (-20, -30).Also please can you use the
DAffine2::abs_diff_eq
function as previously requested. This ensures that all components of the transform are correct.Thanks again.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried it again, Please have a look!