As the title says, I wish to stretch an insanely huge and complex polygon a certain distance X and Y along a constant slope.
One solution would be to move the polygon every 0.001 distance increment, and then perform a merge, but I would rather like to avoid this method... due to distance involved and, I can't just select 2 vertices on one side and move them a set X Y distance due to the millions of vertices involved.
A visual example, The US Great Lakes, as one polygon. I want to stretch that polygon from it's current location, to the south and west (225* azimuth), by a distance of 500 miles. I can move it, but that just gives me 2 polygons, I need all the space in between the orig polygon and the moved polygon to be included.
Another..
_
(_) is my polygon...
I want to stretch it 5 spaces east...
______
(______)
and get something that looks like that as a result
How do I accomplish this?
Thanks