Mass Fillet Group of Lines
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi I was wondering if the community could help me solve an issue I am facing. What I would like to achieve is mass fillet (at hard edges, 0 radius) 2 groups of lines, with each group containing lines going in the same direction. For example if Group A was a group of HORIZONTAL lines like:
-
-
-
-
and Group B was a group of Vertical lines like:
| | | | |
I would like to fillet the lowest line of Group A to the first line starting on the left of Group B and so on.
____
___ |
_ | |
| | |
I imagine the initial logic would be to prompt selection of group A and sort them according to their respective Y values, then prompt selection group B and sort them to their respective X values and then fillet index[x] of group A to group B. I would also like this to work regardless if the counts of lines in each group don't match up. If group A has 10 lines but group B has 5 lines, it would just do 5 sets. I suppose the logic to test this would be to get the list count of each group and whichever is smaller....For loop that resulting count and fillet index[x] of each respective group. Any ideas? Thank you!