ForceOrderPoints: fix interior ring order
- Reverse interior ring order to be opposite of exterior ring
- Modify logic to operate on object reference instead of copy
Previously, the interior ring order was always identical to the exterior ring order, which was incorrect. This fix ensures that the interior ring order is the inverse of the exterior ring order, as required.
Additionally, the reversal operation was being performed on a copy of the object rather than a reference, rendering it ineffective. This has been corrected to operate on the actual object.
These changes should resolve issues #268 (closed)