I think that you are mistaking me for somebody who knows a lot more than I do
I want to do something much simpler than what you have described. To give a (ficticious, but concrete example), suppose I had a script in which I had drawn a bunch of lines, arcs, faces, etc... In that script, I would like to select every entity that exists to the right of the plane defined by x=1. Then I would like to rotate all of those entities by 10 degrees (about the Y axis).
I think that I need to start by grabbing a hold of all of the entities that exist to the right of x=1.
I'm just not sure how to do that.
It seems like this would be a good candidate for a helper method.
It seems like somebody has probably already figured out how to do this and may have even published the helper method.
If not (to both), then I think I just need to iterate through all of the entities in my model, keep track of which ones start or end at x > 10, select them or add them to a group, and then rotate, move, delete, or do whatever I want to do to that selection/group.
--wpd