I have a floor plan with an unknown number of rectangles - probably dozens, maybe hundreds.
(There are more types of objects, but they do not matter, as I know how to keep them out of harm’s way. Let’s pretend it’s only rectangles.)
There is a mistake in that floor plan: One vertical distance is too small.
I.e.
- I have a horizontal line.
- All objects below that line must move down.
- All objects that straddle that line must have their height increases.
Imagine cutting the drawing at the horizontal line, inserting a paper strip, and reconnecting all the cut-up rectangles.
The approach that I know from a CAD program I had access to earlier was:
- Activate point selection mode.
- Do a rectangular selection of the entire drawing below the line. The points would be from multiple objects.
- Move the selected points down by whatever amount I wanted.
I Draw, I cannot find a way to select points from multiple objects; is that indeed the case?
The alternative approach that I can come up with is:
Select all objects that are completely below the horizontal line, move these down by the needed amount.
Select all objects that are partly above and partly below, then increase their height by a given numeric value. (Is such an operation even available? I have no idea how one would name it, so I can’t find it. It’s NOT scaling: Scaling vertically would move each point down by a different amount depending on its exact y value, I need something more binary, something that leaves all points above the line unmodified and moves all points below it by the intended distance.)