Dimension All Angles At Bends In Polyline

Dimension All Angles At Bends In Polyline

Anonymous
Not applicable
2,354 Views
6 Replies
Message 1 of 7

Dimension All Angles At Bends In Polyline

Anonymous
Not applicable

Hello All,

I'm looking to see if anyone has a lisp routine that will automatically "DimAngular" all vertices along a Polyline. I have a project with several very long polylines and hundereds of angles I need to take out. 

 

Thank you for any feedback. 

0 Likes
Accepted solutions (1)
2,355 Views
6 Replies
Replies (6)
Message 2 of 7

hak_vz
Advisor
Advisor

You should upload a sample drawing or a screenshot . It makes it easy to "connect the dots".

Miljenko Hatlak

EESignature

Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.
0 Likes
Message 3 of 7

Kent1Cooper
Consultant
Consultant

Have you done a Search of this Forum?  I think something like this has come up before [but I'll let you experiment with what terms to Search for].

Kent Cooper, AIA
0 Likes
Message 4 of 7

Anonymous
Not applicable
Thank you for response Kent1Cooper.
I went through all the posts and I could find a routine that would give a list of all angles, but not one that would label them in the model space. If I missed it, my apologies but I did didn't see one specific to labeling each one.
0 Likes
Message 5 of 7

doaiena
Collaborator
Collaborator

(strcat "GOOGLE " "DIM" "POLY" "ANGLES") 

0 Likes
Message 6 of 7

hak_vz
Advisor
Advisor
Accepted solution

Here is @marko_ribar  solution at augi forum.

 

https://forums.augi.com/showthread.php?168619-Automatically-dimension-all-sides-and-angles-of-select... 

 

It works on closed polylines and creates automatic dimensions .

 

If you need it to work on open polylines then in code  make change in

  (setq sel (ssget (list '(0 . "LWPOLYLINE") '(-4 . "&=") '(70 . 1) '(-4 . "<not") '(-4 . "<>") '(42 . 0.0) '(-4 . "not>"))))

 

 

Miljenko Hatlak

EESignature

Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.
0 Likes
Message 7 of 7

Anonymous
Not applicable

Thank you all for the feedback. Worked perfectly @marko_ribar

0 Likes