Lt Dan's legs Posted August 25, 2010 Posted August 25, 2010 I'm trying to create a list of a polyline's points, Just not sure how to retrieve the other points of the entity (defun c:test (/ ent plist) (while (not (and (setq ent (car (entsel "\nSpecify Polyline: "))) (setq ent (entget ent)) (eq "LWPOLYLINE" (cdr (assoc 0 ent))) ) ) (prompt "\n**Select text a Polyline!**") ) (setq plist (append plist (cdr (assoc 10 ent)))) (princ) ) Quote
lpseifert Posted August 25, 2010 Posted August 25, 2010 http://www.cadtutor.net/forum/showthread.php?51700-Vertices-of-a-Polyline Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.