Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
The function (vlax-get <vla-obj> 'Coordinates) applied to a multiline returns a list of coordinates of the format:
'(1.0 1.0 0.0 4.0 1.0 0.0 4.0 2.0 0.0)
How can I convert it to LWPolyline entity list format:
'((1.0 1.0) (4.0 1.0) (4.0 2.0))
That is, the resulting list must contain sublists of X and Y coordinates, and Z-coordinate must be removed.
Thanks in advance.
Solved! Go to Solution.