-
Notifications
You must be signed in to change notification settings - Fork 249
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
[Core] Brep Surface - trimmed integration (Part 1 - Outer loop) #13072
Conversation
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.
When Máté's comments are addressed, I will approve the PR 👍
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 agree with this change 👍
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 agree with the changes but we need to be sure that the chosen tolerances are robust enough. I think the tests for this will be provided in the 3rd PR regarding trimming, won't they?
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.
How rigid is your function interface? If not much, you could pass in the tolerance as an argument.
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.
Yes, all the stuff with the tolerances will be discussed in other PR: This one just remedies the general problem related the outer trimming.
Co-authored-by: Máté Kelemen <[email protected]>
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.
👌
📝 Description
This is the first part of the PR series to fix the problem related to the trimmed integration in the IGA application.
This PR corrects some issues for the outer loop trimming.
🆕 Changelog
clip_area
(to avoid a case wheresolution.size() == 0
)The inner trimming and test cases will be elaborated on in the next PRs.