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
this issue is part of Fillet project: #2606
continues AST mod: #3680
Issue:
When selecting multiple edges and applying a fillet in one operation, the AST mod currently creates a new fillet expression for each selected edge. This results in multiple fillet expressions instead of grouping all fillets under a single expression.
Originally, the fillet AST mod was designed to handle a single edge. In a later iteration, the functionality was extended to support multiple selections by looping through the same function for each edge. This approach was simple and made it easy to extend the code from handling single to multiple selections. Additionally, it worked well for cases where edges in different bodies were selected.
Improvement Proposal:
To improve both efficiency and code clarity, all fillet tags should be grouped under the same fillet expression when multiple edges are selected and filleted in a single operation. This will streamline the operation and result in cleaner, more maintainable code.
this issue is part of Fillet project: #2606
continues AST mod: #3680
Issue:
When selecting multiple edges and applying a fillet in one operation, the AST mod currently creates a new fillet expression for each selected edge. This results in multiple fillet expressions instead of grouping all fillets under a single expression.
Background:
Originally, the fillet AST mod was designed to handle a single edge. In a later iteration, the functionality was extended to support multiple selections by looping through the same function for each edge. This approach was simple and made it easy to extend the code from handling single to multiple selections. Additionally, it worked well for cases where edges in different bodies were selected.
Improvement Proposal:
To improve both efficiency and code clarity, all fillet tags should be grouped under the same fillet expression when multiple edges are selected and filleted in a single operation. This will streamline the operation and result in cleaner, more maintainable code.
related comments:
The text was updated successfully, but these errors were encountered: