Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Im using this functions to get coordinates pointes of a ployline:
(defun PointsOfPline(Pline)
(mapcar 'cdr (vl-remove-if-not '(lambda (x) (= (car x) 10)) (entget Pline)))
)
but it doesnt work with this p-line, because after calling (entget) the list starting with "10" is: (10 0 0 0) ??
(My pline here called B5Am)
Solved! Go to Solution.