how to check break point along a polyline

how to check break point along a polyline

Anonymous
Not applicable
1,963 Views
2 Replies
Message 1 of 3

how to check break point along a polyline

Anonymous
Not applicable

I want to circle them up

0 Likes
1,964 Views
2 Replies
Replies (2)
Message 2 of 3

Vinayv4v
Advisor
Advisor

Hi,

 

Here is a Lisp From Kent Cooper for circling break points along lines

 

(defun c:cmark (/ crad ss ln)
(Command "ucs" "World")
(setq
crad (getdist "\nSpecify radius: ")
ss (ssget "X" '((0 . "LINE")))
)
(repeat (sslength ss)
(setq ln (entget (ssname ss 0)))
(command
"_.circle"
(cdr (assoc 10 ln))
crad
"_.circle"
(cdr (assoc 11 ln))
crad
)
(ssdel (ssname ss 0) ss)
)
(Command "ucs" "p")
)

 

 

https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/circles-at-line-end-points/td-p/3316...

 

You need a little bit of modification to try this on polylines.

Cheers,

Vinay Vijayakumaran

Message 3 of 3

Kent1Cooper
Consultant
Consultant

If you mean what most people call the vertices of Polylines, this routine places Points at all of them [you can set the PDMODE System Variable to make the Points visible in whatever style you prefer], and could easily be adjusted to draw circles, if you need that specifically.

Kent Cooper, AIA
0 Likes