Jump to content

help LISP to change all (arrows) PLINE-start segment width


Recommended Posts

Posted

Hi Team!

 

Anybody can help LISP to change all (arrows) PLINE-start segment width in total drawing.

 

Plz find sample drawing jpg

 

Thanks

 

amr

PLINE-start segment width.jpg

Posted

Step through entity list (entget) and look at the dxf 40 codes.

Posted
Step through entity list (entget) and look at the dxf 40 codes.

 

I need (oneside) PLINE-start segment width only;not global width

from attachment instated of PLINE-start segment width 0.700 into some other one value

 

Thanks once again!

 

amr

PLINE-start segment width only.dwg

Posted
I need (oneside) PLINE-start segment width only;not global width

from attachment instated of PLINE-start segment width 0.700 into some other one value

 

Thanks once again!

 

amr

I know, dxf codes 40 and 41 handle individual segment widths. 43 is the global width.

Posted
Step through entity list (entget) and look at the dxf 40 codes.

 

 

Sorry,I can’t understand that; Step through entity list (entget) and look at the dxf 40 codes

 

amr

Posted

Hi

You can start with things like this'

(setq ent1 (car(entsel"\nSelect a POLYLINE:"))
     ent2 (entget ent1)
     poly (cdr(assoc 0 ent2))
     )
     (setq entNew (getint"\nSpecify New width of Polyline first Segment:")
  sgOld (assoc 40 ent2)
  sg1 (cons 40 entNew)
                ( ....................

Thanks

 

Tharwat

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...